From 767e4a603b7837cd409ed15366be6b5c867cc09d Mon Sep 17 00:00:00 2001 From: Kroese Date: Sun, 2 Jun 2024 23:01:40 +0200 Subject: [PATCH] feat: Print QEMU version on boot --- src/entry.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/entry.sh b/src/entry.sh index 36aa17e..c964635 100644 --- a/src/entry.sh +++ b/src/entry.sh @@ -23,7 +23,7 @@ cd /run trap - ERR -version=$(qemu-system-aarch64 --version | head -n 1 | cut -d '(' -f 1 | awk '{ print $NF }') +version=$(qemu-system-x86_64 --version | head -n 1 | cut -d '(' -f 1 | awk '{ print $NF }') info "Booting ${APP}${BOOT_DESC} using QEMU v$version..." { qemu-system-x86_64 ${ARGS:+ $ARGS} >"$QEMU_OUT" 2>"$QEMU_LOG"; rc=$?; } || :