mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-24 02:03:06 -05:00
35098cbde1
It will be easier to deal with incoming packets in a separate task.
14 lines
503 B
Bash
Executable file
14 lines
503 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ "$1" = "b" ]; then
|
|
# ./run b: bochs
|
|
bochs -q -f .bochsrc
|
|
elif [ "$1" = "qn" ]; then
|
|
# ./run qn: qemu without network
|
|
qemu-system-i386 -s -m 32 -device e1000 -drive format=raw,file=.floppy-image,if=floppy -drive format=raw,file=_fs_contents #$@
|
|
else
|
|
echo run with net
|
|
# ./run: qemu with network
|
|
sudo qemu-system-i386 -s -m 32 -netdev tap,id=br0 -device e1000,netdev=br0 -drive format=raw,file=.floppy-image,if=floppy -drive format=raw,file=_fs_contents #$
|
|
fi
|
|
|