aboutsummaryrefslogtreecommitdiff
path: root/run
diff options
context:
space:
mode:
authorMarvin Borner2020-07-26 16:18:54 +0200
committerMarvin Borner2020-07-26 16:18:54 +0200
commit5860f8c0d690d430424a7b619558024691c71f69 (patch)
treebfc9dee83ff15da1a2eda39ad312709d22244226 /run
parentd8410862be2f00bf2ce321bc28b8322f2de944a9 (diff)
Added simple keyboard input.
This is somewhat of a demo. The real gui will be implemented completely different (ig)
Diffstat (limited to 'run')
-rwxr-xr-xrun8
1 files changed, 1 insertions, 7 deletions
diff --git a/run b/run
index ab51f17..687ac46 100755
--- a/run
+++ b/run
@@ -6,16 +6,10 @@ set -e
cd "$(dirname "$0")"
mode="${1}"
-no_ask="${2}"
network="rtl8139"
qemu_with_flags() {
- if [ "${mode}" = "image" ] || [ "${mode}" = "image_debug" ]; then
- # TODO: Find out why kvm install is incredibly slow
- SDL_VIDEO_X11_DGAMOUSE=0 qemu-system-i386 -no-reboot -vga std -smp "$(nproc)" -serial mon:stdio -rtc base=localtime -m 256M -net nic,model=${network},macaddr=42:42:42:42:42:42 -net user "$@"
- else
- SDL_VIDEO_X11_DGAMOUSE=0 qemu-system-i386 -no-reboot -vga std -serial stdio -rtc base=localtime -m 256M -net nic,model=${network},macaddr=42:42:42:42:42:42 -net user "$@"
- fi
+ SDL_VIDEO_X11_DGAMOUSE=0 qemu-system-i386 -no-reboot -vga std -serial stdio -rtc base=localtime -m 256M -net nic,model=${network},macaddr=42:42:42:42:42:42 -net user "$@"
}
make_cross() {