summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAnton Kling <anton@kling.gg>2023-10-25 22:45:35 +0200
committerAnton Kling <anton@kling.gg>2023-10-30 21:49:48 +0100
commitcf60045bdb969f6fe44fe7dc9bf7cec593a0b05c (patch)
tree91dfc406e6a534208164359deac74b74324628dc /Makefile
parent0503ff5d7c1630d19ca494621b4fd34a53ddc41e (diff)
Build system: Remove the network cards from as where only for testing
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 7eecee0..49bbb94 100644
--- a/Makefile
+++ b/Makefile
@@ -20,10 +20,10 @@ debug:
gdb -x .gdbinit
nk:
- qemu-system-i386 -netdev tap,ifname=tap0,id=network0,script=no,downscript=no -device rtl8139,netdev=network0 -d int -no-reboot -no-shutdown -serial file:./serial.log -hda ext2.img -m 1G -cdrom myos.iso -s
+ qemu-system-i386 -d int -no-reboot -no-shutdown -serial file:./serial.log -hda ext2.img -m 1G -cdrom myos.iso -s
run:
- qemu-system-i386 -enable-kvm -netdev tap,ifname=tap0,id=network0,script=no,downscript=no -device rtl8139,netdev=network0 -d int -no-reboot -no-shutdown -chardev stdio,id=char0,logfile=serial.log,signal=off -serial chardev:char0 -hda ext2.img -m 1G -cdrom myos.iso -s
+ qemu-system-i386 -enable-kvm -d int -no-reboot -no-shutdown -chardev stdio,id=char0,logfile=serial.log,signal=off -serial chardev:char0 -hda ext2.img -m 1G -cdrom myos.iso -s
myos.iso: myos.bin
cp myos.bin isodir/boot