From: Simon Glass Date: Fri, 10 Mar 2023 20:47:19 +0000 (-0800) Subject: efi: Adjust script to show pre-relocation output on terminal X-Git-Tag: v2023.07~72^2~35^2~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1f0cf89227fddf3e4a2653945157f49cecafc1d4;p=platform%2Fkernel%2Fu-boot.git efi: Adjust script to show pre-relocation output on terminal When running with video enabled, the pre-relocation output of U-Boot is currently lost. Add a -serial flag to show it on the terminal. Signed-off-by: Simon Glass --- diff --git a/scripts/build-efi.sh b/scripts/build-efi.sh index bc9aeeb..46c2880 100755 --- a/scripts/build-efi.sh +++ b/scripts/build-efi.sh @@ -96,6 +96,8 @@ run_qemu() { fi if [[ -n "${serial}" ]]; then extra="-display none -serial mon:stdio" + else + extra="-serial mon:stdio" fi echo "Running ${qemu}" # Use 512MB since U-Boot EFI likes to have 256MB to play with