feat: Display console arguments (#594)

This commit is contained in:
Kroese 2024-01-23 19:32:15 +01:00 committed by GitHub
parent 9cbb51cc86
commit 2a62d4e938
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -19,12 +19,12 @@ cd /run
trap - ERR
info "Booting $APP using $VERS..."
[[ "$DEBUG" == [Yy1]* ]] && echo "Arguments: $ARGS" && echo
if [[ "$CONSOLE" == [Yy]* ]]; then
exec qemu-system-x86_64 ${ARGS:+ $ARGS}
fi
[[ "$DEBUG" == [Yy1]* ]] && echo "Arguments: $ARGS" && echo
{ qemu-system-x86_64 ${ARGS:+ $ARGS} >"$QEMU_OUT" 2>"$QEMU_LOG"; rc=$?; } || :
(( rc != 0 )) && error "$(<"$QEMU_LOG")" && exit 15