Skip to content

Commit

Permalink
feat: Print QEMU version on boot (#752)
Browse files Browse the repository at this point in the history
  • Loading branch information
kroese committed Jun 2, 2024
1 parent 19b4248 commit 5ad3234
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/entry.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,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 using QEMU v$version..."

if [[ "$CONSOLE" == [Yy]* ]]; then
Expand Down

0 comments on commit 5ad3234

Please sign in to comment.