mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 03:47:35 +00:00
Allow running in QEMU with "./run q"
The kernel doesn't run in QEMU right now and I don't know why.
This commit is contained in:
parent
8ff394f83f
commit
286e27ef40
1 changed files with 5 additions and 2 deletions
|
@ -1,5 +1,8 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
bochs -q -f .bochsrc
|
if [ "$1" = "q" ]; then
|
||||||
|
qemu-system-i386 -drive format=raw,file=.floppy-image,if=floppy -drive format=raw,file=_fs_contents #$@
|
||||||
|
else
|
||||||
|
bochs -q -f .bochsrc
|
||||||
|
fi
|
||||||
|
|
||||||
#qemu-system-i386 -drive format=raw,file=.floppy-image,if=floppy -drive format=raw,file=_fs_contents $@
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue