From 1debf76ef674dd128ebfd4be037f8b1645760e8e Mon Sep 17 00:00:00 2001 From: jimmylu890303 Date: Tue, 9 Jul 2024 17:04:45 +0800 Subject: [PATCH] Compile virtio-net.c into virtio-net.o during build process Added compilation rule to include virtio-net.c and generate virtio-net.o object file in the Makefile. This change ensures that the virtio-net functionality is compiled and linked correctly into the project. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index cb6c1ac..5e01ff9 100644 --- a/Makefile +++ b/Makefile @@ -29,7 +29,7 @@ OBJS := \ pci.o \ virtio-pci.o \ virtq.o \ - virtio-blk.o \ + virtio-blk.o virtio-net.o\ diskimg.o \ main.o