diff options
author | Simon Glass <sjg@chromium.org> | 2023-03-10 12:47:19 -0800 |
---|---|---|
committer | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2023-03-13 13:53:01 +0100 |
commit | 1f0cf89227fddf3e4a2653945157f49cecafc1d4 (patch) | |
tree | cd05026e8a8a8c2393da913b93b7af599bbd9865 /scripts | |
parent | 38191594df6bf3f68081626b9069b6e35b691085 (diff) | |
download | u-boot-1f0cf89227fddf3e4a2653945157f49cecafc1d4.zip u-boot-1f0cf89227fddf3e4a2653945157f49cecafc1d4.tar.gz u-boot-1f0cf89227fddf3e4a2653945157f49cecafc1d4.tar.bz2 |
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 <sjg@chromium.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/build-efi.sh | 2 |
1 files changed, 2 insertions, 0 deletions
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 |