From 0e1323515a8a8e754c9c071313cd7264949913d5 Mon Sep 17 00:00:00 2001 From: Kroese Date: Sun, 2 Jun 2024 21:54:02 +0200 Subject: [PATCH] feat: Print QEMU version on boot --- src/entry.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/entry.sh b/src/entry.sh index e6964c4..3d0fbc1 100644 --- a/src/entry.sh +++ b/src/entry.sh @@ -5,7 +5,7 @@ set -Eeuo pipefail : "${USB:="qemu-xhci,id=xhci -device usb-kbd,bus=xhci.0"}" APP="OSX" -SUPPORT="https://github.com/seitenca/osx/" +SUPPORT="https://github.com/dockur/osx/" cd /run @@ -20,6 +20,7 @@ cd /run trap - ERR -info "Booting ${APP}${BOOT_DESC}..." +version=$(qemu-system-aarch64 --version | head -n 1 | cut -d '(' -f 1 | awk '{ print $NF }') +info "Booting ${APP}${BOOT_DESC} using QEMU v$version..." exec qemu-system-x86_64 ${ARGS:+ $ARGS}