aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOliver Smith <osmith@sysmocom.de>2021-12-17 10:17:25 +0100
committerOliver Smith <osmith@sysmocom.de>2021-12-17 10:20:58 +0100
commita7865832fa8bbdafd784aa099949af9a2140523d (patch)
tree131bf5aaf758eafe871083ddcb21309209f102a9
parentdc29c679098f22bc085803627c7df098a44acba1 (diff)
scripts/kernel-test/run-qemu.sh: update qemu args
Get rid of -nodefconfig, it has been removed in qemu 3.1. We are supposed to use -no-user-config instead, which we already do. Fix for this error we see since migrating to debian-bullseye: qemu-system-x86_64: -nodefconfig: invalid option Related: OS#4969 Related: https://qemu.readthedocs.io/en/stable/about/removed-features.html#nodefconfig-removed-in-3-1 Change-Id: I4a00f90980bf6d141ef8d86786e08d405db6db0b
-rwxr-xr-xscripts/kernel-test/run-qemu.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/kernel-test/run-qemu.sh b/scripts/kernel-test/run-qemu.sh
index 1873af4..9951e94 100755
--- a/scripts/kernel-test/run-qemu.sh
+++ b/scripts/kernel-test/run-qemu.sh
@@ -23,7 +23,7 @@ qemu-system-x86_64 \
$MACHINE_ARG \
-smp 1 \
-m 512M \
- -nodefconfig -no-user-config -nodefaults -display none \
+ -no-user-config -nodefaults -display none \
-gdb unix:/cache/kernel-test/gdb.pipe,server,nowait \
-no-reboot \
-kernel /cache/kernel-test/linux \