diff options
author | dzwdz | 2023-09-09 16:55:10 +0200 |
---|---|---|
committer | dzwdz | 2023-09-09 16:55:10 +0200 |
commit | 73ea9f2e3556dd753b32ac4a2c34581a4126eab1 (patch) | |
tree | eaf1de55ce6bfec249daee99485bb10f3ce473cd /boot | |
parent | 4516acc2814de7e1420109a9469600a5607eb984 (diff) |
kernel: gracefully handle no serial port
Diffstat (limited to 'boot')
-rwxr-xr-x | boot | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -47,6 +47,9 @@ for opt; do QTTY="-serial pipe:out/qemu" POST="cat out/qemu.out" ;; + --no-serial) + QTTY="-serial none" + ;; *) echo "unknown option $opt" exit 1 |