mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-13 11:42:38 +03:00
22 lines
923 B
Bash
Executable File
22 lines
923 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 #$@
|
|
elif [ "$1" = "qtap" ]; then
|
|
# ./run qtap: qemu with tap
|
|
sudo qemu-system-i386 -s -m 32 -object filter-dump,id=hue,netdev=br0,file=e1000.pcap -netdev tap,ifname=tap0,id=br0 -device e1000,netdev=br0 -drive format=raw,file=.floppy-image,if=floppy -drive format=raw,file=_fs_contents
|
|
else
|
|
# ./run: qemu with user networking
|
|
qemu-system-i386 -s -m 32 \
|
|
-object filter-dump,id=hue,netdev=breh,file=e1000.pcap \
|
|
-netdev user,id=breh,hostfwd=tcp:127.0.0.1:8888-192.168.5.2:8888 \
|
|
-device e1000,netdev=breh \
|
|
-drive format=raw,file=.floppy-image,if=floppy \
|
|
-drive format=raw,file=_fs_contents
|
|
fi
|
|
|