Compare commits

...

2 Commits

Author SHA1 Message Date
Kroese
972240061e
fix: Rename bootmessage (#1140)
Some checks are pending
Build / Test (push) Waiting to run
Build / Build (push) Blocked by required conditions
2025-03-20 00:41:09 +01:00
sequencerr
0c8943f541
fix: Prevent terminal control sequences (#1139) 2025-03-19 23:42:24 +01:00

View File

@ -32,7 +32,8 @@ info "Booting ${APP}${BOOT_DESC} using QEMU v$version..."
terminal terminal
( sleep 30; boot ) & ( sleep 30; boot ) &
tail -fn +0 "$QEMU_LOG" 2>/dev/null & tail -fn +0 "$QEMU_LOG" 2>/dev/null &
cat "$QEMU_TERM" 2> /dev/null | tee "$QEMU_PTY" & cat "$QEMU_TERM" 2> /dev/null | tee "$QEMU_PTY" | \
sed -e 's/\x1B\[[=0-9;]*[a-z]//gi' -e 's/failed to load Boot/skipped Boot/g' &
wait $! || : wait $! || :
sleep 1 & wait $! sleep 1 & wait $!