2018-10-16 12:01:38 +03:00
|
|
|
#!/bin/sh
|
2020-02-10 09:09:08 +03:00
|
|
|
# shellcheck disable=SC2086 # FIXME: fix these globing warnings
|
|
|
|
|
|
|
|
set -e
|
2018-10-16 12:01:38 +03:00
|
|
|
|
2019-12-24 02:53:22 +03:00
|
|
|
script_path=$(cd -P -- "$(dirname -- "$0")" && pwd -P)
|
|
|
|
cd "$script_path"
|
|
|
|
|
2019-12-22 17:55:52 +03:00
|
|
|
#SERENITY_PACKET_LOGGING_ARG="-object filter-dump,id=hue,netdev=breh,file=e1000.pcap"
|
2019-11-05 20:56:13 +03:00
|
|
|
|
2020-02-10 09:09:08 +03:00
|
|
|
[ -e /dev/kvm ] && [ -r /dev/kvm ] && [ -w /dev/kvm ] && SERENITY_KVM_ARG="-enable-kvm"
|
2019-11-04 15:03:33 +03:00
|
|
|
|
2019-12-24 00:07:29 +03:00
|
|
|
[ -z "$SERENITY_BOCHS_BIN" ] && SERENITY_BOCHS_BIN="bochs"
|
|
|
|
|
2019-05-04 03:51:50 +03:00
|
|
|
[ -z "$SERENITY_QEMU_BIN" ] && SERENITY_QEMU_BIN="qemu-system-i386"
|
|
|
|
|
2019-06-16 15:05:07 +03:00
|
|
|
[ -z "$SERENITY_KERNEL_CMDLINE" ] && SERENITY_KERNEL_CMDLINE="hello"
|
2019-06-02 10:50:18 +03:00
|
|
|
|
2020-01-16 00:13:29 +03:00
|
|
|
[ -z "$SERENITY_RAM_SIZE" ] && SERENITY_RAM_SIZE=256M
|
2019-11-02 01:46:39 +03:00
|
|
|
|
2019-11-02 02:01:45 +03:00
|
|
|
[ -z "$SERENITY_COMMON_QEMU_ARGS" ] && SERENITY_COMMON_QEMU_ARGS="
|
|
|
|
$SERENITY_EXTRA_QEMU_ARGS
|
|
|
|
-s -m $SERENITY_RAM_SIZE
|
2019-12-25 17:18:09 +03:00
|
|
|
-cpu max
|
2020-01-14 17:19:05 +03:00
|
|
|
-d cpu_reset,guest_errors
|
2020-03-06 16:49:35 +03:00
|
|
|
-smp 2
|
2019-11-02 02:01:45 +03:00
|
|
|
-device VGA,vgamem_mb=64
|
|
|
|
-hda _disk_image
|
2020-01-02 16:54:32 +03:00
|
|
|
-device ich9-ahci
|
|
|
|
-debugcon stdio
|
|
|
|
-soundhw pcspk
|
|
|
|
-soundhw sb16
|
|
|
|
"
|
|
|
|
|
|
|
|
[ -z "$SERENITY_COMMON_QEMU_Q35_ARGS" ] && SERENITY_COMMON_QEMU_Q35_ARGS="
|
|
|
|
$SERENITY_EXTRA_QEMU_ARGS
|
|
|
|
-s -m $SERENITY_RAM_SIZE
|
|
|
|
-cpu max
|
|
|
|
-machine q35
|
2020-02-10 09:09:08 +03:00
|
|
|
-d cpu_reset,guest_errors
|
2020-03-06 16:49:35 +03:00
|
|
|
-smp 2
|
2020-01-02 16:54:32 +03:00
|
|
|
-device VGA,vgamem_mb=64
|
|
|
|
-device piix3-ide
|
|
|
|
-drive file=_disk_image,id=disk,if=none
|
|
|
|
-device ide-hd,bus=ide.6,drive=disk,unit=0
|
2019-11-02 02:01:45 +03:00
|
|
|
-debugcon stdio
|
|
|
|
-soundhw pcspk
|
|
|
|
-soundhw sb16
|
|
|
|
"
|
|
|
|
|
2019-05-01 22:45:17 +03:00
|
|
|
export SDL_VIDEO_X11_DGAMOUSE=0
|
2019-03-27 15:02:29 +03:00
|
|
|
|
2019-03-11 14:43:45 +03:00
|
|
|
if [ "$1" = "b" ]; then
|
|
|
|
# ./run b: bochs
|
2019-12-24 00:07:29 +03:00
|
|
|
$SERENITY_BOCHS_BIN -q -f .bochsrc
|
2019-03-11 14:43:45 +03:00
|
|
|
elif [ "$1" = "qn" ]; then
|
|
|
|
# ./run qn: qemu without network
|
2019-11-02 02:01:45 +03:00
|
|
|
$SERENITY_QEMU_BIN \
|
|
|
|
$SERENITY_COMMON_QEMU_ARGS \
|
2019-04-24 22:06:16 +03:00
|
|
|
-device e1000 \
|
2019-06-04 15:16:30 +03:00
|
|
|
-kernel kernel \
|
2019-11-02 02:01:45 +03:00
|
|
|
-append "${SERENITY_KERNEL_CMDLINE}"
|
2019-03-13 05:26:01 +03:00
|
|
|
elif [ "$1" = "qtap" ]; then
|
|
|
|
# ./run qtap: qemu with tap
|
2019-11-02 02:01:45 +03:00
|
|
|
sudo $SERENITY_QEMU_BIN \
|
|
|
|
$SERENITY_COMMON_QEMU_ARGS \
|
2019-11-04 15:03:33 +03:00
|
|
|
$SERENITY_KVM_ARG \
|
2019-11-05 20:56:13 +03:00
|
|
|
$SERENITY_PACKET_LOGGING_ARG \
|
2019-04-24 22:06:16 +03:00
|
|
|
-netdev tap,ifname=tap0,id=br0 \
|
|
|
|
-device e1000,netdev=br0 \
|
2019-06-04 15:16:30 +03:00
|
|
|
-kernel kernel \
|
2019-11-02 02:01:45 +03:00
|
|
|
-append "${SERENITY_KERNEL_CMDLINE}"
|
2019-06-04 15:16:30 +03:00
|
|
|
elif [ "$1" = "qgrub" ]; then
|
|
|
|
# ./run qgrub: qemu with grub
|
2019-11-02 02:01:45 +03:00
|
|
|
$SERENITY_QEMU_BIN \
|
|
|
|
$SERENITY_COMMON_QEMU_ARGS \
|
2019-11-04 15:03:33 +03:00
|
|
|
$SERENITY_KVM_ARG \
|
2019-11-05 20:56:13 +03:00
|
|
|
$SERENITY_PACKET_LOGGING_ARG \
|
2019-09-09 10:19:43 +03:00
|
|
|
-netdev user,id=breh,hostfwd=tcp:127.0.0.1:8888-10.0.2.15:8888,hostfwd=tcp:127.0.0.1:8823-10.0.2.15:23 \
|
2019-11-02 02:01:45 +03:00
|
|
|
-device e1000,netdev=breh
|
2020-01-02 16:54:32 +03:00
|
|
|
elif [ "$1" = "q35_cmd" ]; then
|
|
|
|
SERENITY_KERNEL_CMDLINE=""
|
|
|
|
# FIXME: Someone who knows sh syntax better, please help:
|
2020-02-10 09:09:08 +03:00
|
|
|
for _ in $(seq 2 $#); do
|
2020-01-02 16:54:32 +03:00
|
|
|
shift
|
|
|
|
SERENITY_KERNEL_CMDLINE="$SERENITY_KERNEL_CMDLINE $1"
|
|
|
|
done
|
|
|
|
echo "Starting SerenityOS, Commandline: ${SERENITY_KERNEL_CMDLINE}"
|
|
|
|
# ./run: qemu with SerenityOS with custom commandline
|
|
|
|
$SERENITY_QEMU_BIN \
|
|
|
|
$SERENITY_COMMON_QEMU_Q35_ARGS \
|
2020-01-14 17:19:05 +03:00
|
|
|
$SERENITY_KVM_ARG \
|
|
|
|
-netdev user,id=breh,hostfwd=tcp:127.0.0.1:8888-10.0.2.15:8888,hostfwd=tcp:127.0.0.1:8823-10.0.2.15:23 \
|
|
|
|
-device e1000,netdev=breh \
|
2020-01-02 16:54:32 +03:00
|
|
|
-kernel kernel \
|
|
|
|
-append "${SERENITY_KERNEL_CMDLINE}"
|
2019-11-13 20:29:16 +03:00
|
|
|
elif [ "$1" = "qcmd" ]; then
|
|
|
|
SERENITY_KERNEL_CMDLINE=""
|
2019-11-13 23:57:51 +03:00
|
|
|
# FIXME: Someone who knows sh syntax better, please help:
|
2020-02-10 09:09:08 +03:00
|
|
|
for _ in $(seq 2 $#); do
|
2019-11-13 23:57:51 +03:00
|
|
|
shift
|
|
|
|
SERENITY_KERNEL_CMDLINE="$SERENITY_KERNEL_CMDLINE $1"
|
2019-11-13 20:29:16 +03:00
|
|
|
done
|
|
|
|
echo "Starting SerenityOS, Commandline: ${SERENITY_KERNEL_CMDLINE}"
|
2019-12-29 21:08:02 +03:00
|
|
|
# ./run: qemu with SerenityOS with custom commandline
|
2019-11-02 02:01:45 +03:00
|
|
|
$SERENITY_QEMU_BIN \
|
|
|
|
$SERENITY_COMMON_QEMU_ARGS \
|
2020-01-14 17:19:05 +03:00
|
|
|
$SERENITY_KVM_ARG \
|
|
|
|
-netdev user,id=breh,hostfwd=tcp:127.0.0.1:8888-10.0.2.15:8888,hostfwd=tcp:127.0.0.1:8823-10.0.2.15:23 \
|
|
|
|
-device e1000,netdev=breh \
|
2019-10-29 18:41:40 +03:00
|
|
|
-kernel kernel \
|
2019-11-13 20:29:16 +03:00
|
|
|
-append "${SERENITY_KERNEL_CMDLINE}"
|
2019-03-13 05:26:01 +03:00
|
|
|
else
|
|
|
|
# ./run: qemu with user networking
|
2019-11-02 02:01:45 +03:00
|
|
|
$SERENITY_QEMU_BIN \
|
|
|
|
$SERENITY_COMMON_QEMU_ARGS \
|
2019-11-04 15:03:33 +03:00
|
|
|
$SERENITY_KVM_ARG \
|
2019-11-05 20:56:13 +03:00
|
|
|
$SERENITY_PACKET_LOGGING_ARG \
|
2020-02-09 14:04:58 +03:00
|
|
|
-netdev user,id=breh,hostfwd=tcp:127.0.0.1:8888-10.0.2.15:8888,hostfwd=tcp:127.0.0.1:8823-10.0.2.15:23,hostfwd=tcp:127.0.0.1:8000-10.0.2.15:8000 \
|
2019-03-13 19:17:07 +03:00
|
|
|
-device e1000,netdev=breh \
|
2019-06-04 15:16:30 +03:00
|
|
|
-kernel kernel \
|
2019-11-02 02:01:45 +03:00
|
|
|
-append "${SERENITY_KERNEL_CMDLINE}"
|
2019-11-04 15:03:33 +03:00
|
|
|
fi
|