From 7f280b5d6a98ba165521ab564690924b34d44050 Mon Sep 17 00:00:00 2001 From: Daniel Barlow Date: Sun, 2 Oct 2022 10:05:28 +0100 Subject: [PATCH] add QEMU_OPTIONS env var for run-qemu --- scripts/run-qemu.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/run-qemu.sh b/scripts/run-qemu.sh index c94c7bc..1816ce9 100755 --- a/scripts/run-qemu.sh +++ b/scripts/run-qemu.sh @@ -12,7 +12,7 @@ else fi INIT=${INIT-/bin/init} - +echo $QEMU_OPTIONS qemu-system-mips \ -M malta -m 256 \ -echr 16 \ @@ -22,4 +22,4 @@ qemu-system-mips \ -device virtio-net-pci,disable-legacy=on,disable-modern=off,netdev=access,mac=ba:ad:1d:ea:21:02 \ -netdev socket,id=lan,mcast=230.0.0.1:1235 \ -device virtio-net-pci,disable-legacy=on,disable-modern=off,netdev=lan,mac=ba:ad:1d:ea:21:01 \ - -kernel $1 -display none $flags + -kernel $1 -display none $flags ${QEMU_OPTIONS}