From 7df092497939181042591deac240cd2e7215bf05 Mon Sep 17 00:00:00 2001 From: jimmylu890303 Date: Sun, 21 Jul 2024 20:45:30 +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 | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index cb6c1ac..09d5917 100644 --- a/Makefile +++ b/Makefile @@ -30,6 +30,7 @@ OBJS := \ virtio-pci.o \ virtq.o \ virtio-blk.o \ + virtio-net.o \ diskimg.o \ main.o