Skip to content

Commit 03de5b2

Browse files
authored
feat: Print system info to log
1 parent 6f4b5d0 commit 03de5b2

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/entry.sh

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,9 @@ cd /run
2121

2222
trap - ERR
2323

24-
info "Booting $APP using $VERS..."
24+
info "Booting ${APP}${BOOT_DESC} on ${CPU} using QEMU v${VERS} with kernel $(uname -r)..."
2525
[[ "$DEBUG" == [Yy1]* ]] && echo "Arguments: $ARGS" && echo
2626

27-
if [[ "$CONSOLE" == [Yy]* ]]; then
28-
exec qemu-system-x86_64 ${ARGS:+ $ARGS}
29-
fi
30-
3127
{ qemu-system-aarch64 ${ARGS:+ $ARGS} >"$QEMU_OUT" 2>"$QEMU_LOG"; rc=$?; } || :
3228
(( rc != 0 )) && error "$(<"$QEMU_LOG")" && exit 15
3329

0 commit comments

Comments
 (0)