From 5565db5aa1e57145c1671fd33faa4b6bd44ad343 Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Sun, 26 Sep 2021 14:10:37 -0400 Subject: [PATCH] Meta: Pass `-serial stdio` to qemu on aarch64 With this, `Meta/serenity.sh run aarch64` produces some output on the terminal :^) --- Meta/run.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Meta/run.sh b/Meta/run.sh index b2d8900221..bf33a14c30 100755 --- a/Meta/run.sh +++ b/Meta/run.sh @@ -192,7 +192,7 @@ fi if [ -z "$SERENITY_MACHINE" ]; then if [ "$SERENITY_ARCH" = "aarch64" ]; then - SERENITY_MACHINE="-M raspi3" + SERENITY_MACHINE="-M raspi3 -serial stdio" else SERENITY_MACHINE=" -m $SERENITY_RAM_SIZE @@ -211,6 +211,7 @@ if [ -z "$SERENITY_MACHINE" ]; then -device i82801b11-bridge,bus=bridge1,id=bridge2 -device sdhci-pci,bus=bridge2 -device i82801b11-bridge,id=bridge3 -device sdhci-pci,bus=bridge3 -device ich9-ahci,bus=bridge3 + -chardev stdio,id=stdout,mux=on " fi fi @@ -224,7 +225,6 @@ $SERENITY_MACHINE -d guest_errors -usb $SERENITY_SPICE_SERVER_CHARDEV --chardev stdio,id=stdout,mux=on " if [ "$SERENITY_ARCH" != "aarch64" ]; then