From 4d02ad69500f6aac9263097a5af5a45b9021b038 Mon Sep 17 00:00:00 2001 From: Kye Shi Date: Wed, 9 Dec 2020 16:03:36 -0800 Subject: [PATCH] gummiboot: WaitForKeyEx hanging workaround (see systemd/systemd#3735) --- srcpkgs/gummiboot/patches/fix-waitforkey.patch | 14 ++++++++++++++ srcpkgs/gummiboot/template | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 srcpkgs/gummiboot/patches/fix-waitforkey.patch diff --git a/srcpkgs/gummiboot/patches/fix-waitforkey.patch b/srcpkgs/gummiboot/patches/fix-waitforkey.patch new file mode 100644 index 00000000000..8b604ef9a68 --- /dev/null +++ b/srcpkgs/gummiboot/patches/fix-waitforkey.patch @@ -0,0 +1,14 @@ +--- src/efi/console.c 2015-03-11 16:50:35.000000000 -0700 ++++ src/efi/console.c 2020-12-09 15:41:19.837704801 -0800 +@@ -96,10 +96,7 @@ + + /* wait until key is pressed */ + if (wait) { +- if (TextInputEx) +- uefi_call_wrapper(BS->WaitForEvent, 3, 1, &TextInputEx->WaitForKeyEx, &index); +- else +- uefi_call_wrapper(BS->WaitForEvent, 3, 1, &ST->ConIn->WaitForKey, &index); ++ uefi_call_wrapper(BS->WaitForEvent, 3, 1, &ST->ConIn->WaitForKey, &index); + } + + if (TextInputEx) { diff --git a/srcpkgs/gummiboot/template b/srcpkgs/gummiboot/template index 052776fe7ff..68e6f5be926 100644 --- a/srcpkgs/gummiboot/template +++ b/srcpkgs/gummiboot/template @@ -1,7 +1,7 @@ # Template file for 'gummiboot' pkgname=gummiboot version=48.1 -revision=6 +revision=7 archs="i686* x86_64* aarch64*" build_style=gnu-configure conf_files="/etc/default/gummiboot"