Skip to content

Commit f447bb3

Browse files
committed
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.
1 parent aea66b8 commit f447bb3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ OBJS := \
2929
pci.o \
3030
virtio-pci.o \
3131
virtq.o \
32-
virtio-blk.o \
32+
virtio-blk.o virtio-net.o\
3333
diskimg.o \
3434
main.o
3535

0 commit comments

Comments
 (0)