From 581efc6c5066eb7d2f2ae21bac94260f263cd07f Mon Sep 17 00:00:00 2001 From: Nathan Chancellor Date: Wed, 7 Dec 2022 15:25:23 -0700 Subject: [PATCH] boot-qemu.py: Update unsupported EFI boot message There is a typo in the original message (missing "un" on "supported"). Take the opportunity to make the message a little more consise. Signed-off-by: Nathan Chancellor --- boot-qemu.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boot-qemu.py b/boot-qemu.py index e9a083e..046ee65 100755 --- a/boot-qemu.py +++ b/boot-qemu.py @@ -390,7 +390,7 @@ def get_efi_args(guest_arch): if guest_arch not in efi_img_locations: utils.yellow( - f"Found '--efi' with supported architecture ('{guest_arch}'), continuing as if it was not passed..." + f"EFI boot requested for unsupported architecture ('{guest_arch}'), ignoring..." ) return []