aboutsummaryrefslogtreecommitdiff
path: root/run
diff options
context:
space:
mode:
authorMarvin Borner2020-11-09 22:18:55 +0100
committerMarvin Borner2020-11-09 22:18:55 +0100
commitb20fdcfe67ea56c47bfe1e059b504fae73bc52b3 (patch)
tree89ddaad40a3fcd601f2bdbd7cee0e71f66944fd7 /run
parent49da2ac6b70a107c22c784b48e4ae332128f684c (diff)
Removed non-net support and fixed some bugs
Diffstat (limited to 'run')
-rwxr-xr-xrun19
1 files changed, 9 insertions, 10 deletions
diff --git a/run b/run
index f3ed4c2..575420e 100755
--- a/run
+++ b/run
@@ -24,12 +24,8 @@ no_ask="${2}"
# TODO: Support q35 chipset ('-machine q35') - loops in ide_wait
qemu_with_flags() {
- if [ -z "$network" ]; then network="rtl8139"; fi
- if [ "$network" != "false" ] && [ "$mode" = "net" ]; then
- qemu-system-i386 -cpu max -no-reboot -vga std -rtc base=localtime -m 256M -smp 4 -netdev user,id=net0,hostfwd=tcp:127.0.0.1:8000-10.0.2.15:8000 -device $network,netdev=net0 -object filter-dump,id=dump,netdev=net0,file=dump.pcap "$@"
- else
- qemu-system-i386 -cpu max -no-reboot -vga std -rtc base=localtime -m 256M -smp 4 "$@"
- fi
+ network="rtl8139"
+ qemu-system-i386 -cpu max -no-reboot -vga std -rtc base=localtime -m 256M -smp 4 -netdev user,id=net0,hostfwd=tcp:127.0.0.1:8000-10.0.2.15:8000 -device $network,netdev=net0 -object filter-dump,id=dump,netdev=net0,file=dump.pcap "$@"
}
make_cross() {
@@ -113,7 +109,11 @@ make_build() {
rm -rf build/*
printf "\nBuilding...\n"
- $MAKE -j $($NPROC)
+ if [ "$mode" = "debug" ]; then
+ $MAKE -j $($NPROC) debug
+ else
+ $MAKE -j $($NPROC)
+ fi
# Create disk image
dd if=/dev/zero of=build/disk.img bs=1k count=32k status=none
@@ -179,7 +179,7 @@ make_test() {
}
make_debug() {
- qemu_with_flags -drive file=build/disk.img,format=raw,index=1,media=disk -s -S
+ qemu_with_flags -serial stdio -drive file=build/disk.img,format=raw,index=1,media=disk -s -S
}
make_disasm() {
@@ -248,7 +248,7 @@ elif [ "${mode}" = "debug" ]; then
make_build
make_sync &
make_debug
-elif [ "${mode}" = "test" ] || [ "${mode}" = "net" ] || [ "${mode}" = "" ]; then
+elif [ "${mode}" = "test" ] || [ "${mode}" = "" ]; then
make_cross
make_clean
make_build
@@ -267,7 +267,6 @@ else
printf "disasm\t\tDisassembles the main kernel binary\n"
printf "sync\t\tSyncs the 'tags' and 'compile_commands.json' file\n"
printf "disk\t\tPrepares the userspace disk (e.g. fonts)\n"
- printf "net\t\tBuilds and runs Melvix in network mode using QEMU (cross+clean+build)\n"
printf "nothing\t\tWhen no option is set, Melvix gets built and emulated using QEMU (cross+clean+build)\n"
printf "*\t\tAnything else prints this help\n\n"
fi