From: "Laszlo Ersek" <lersek@redhat.com>
To: devel@edk2.groups.io, ard.biesheuvel@arm.com
Cc: jon@solid-run.com
Subject: Re: [edk2-devel] [PATCH 1/5] ArmPkg/PlatformBootManagerLib: register 's' as UEFI Shell hotkey
Date: Wed, 27 May 2020 17:24:15 +0200 [thread overview]
Message-ID: <0145499a-73a1-5e06-7b49-b6bf02091aea@redhat.com> (raw)
In-Reply-To: <20200526161359.4810-2-ard.biesheuvel@arm.com>
On 05/26/20 18:13, Ard Biesheuvel wrote:
> In preparation of hiding the UEFI Shell boot option as an ordinary
> boot option, make sure we can invoke it directly using the 's'
> hotkey. Without ConnectAll() having been called, this results in
> a shell that may have no block devices or other things connected,
> so don't advertise the 's' in the console string that is printed
> at boot - for novice users, we will go through the UiApp which
> connects everything first. For advanced use, having the ability
> to invoke the UEFI shell without any devices connected may be an
> advantage, so let's keep this behavior as is for now.
>
> Signed-off-by: Ard Biesheuvel <ard.biesheuvel@arm.com>
> ---
> ArmPkg/Library/PlatformBootManagerLib/PlatformBm.c | 11 +++++++++--
> 1 file changed, 9 insertions(+), 2 deletions(-)
>
> diff --git a/ArmPkg/Library/PlatformBootManagerLib/PlatformBm.c b/ArmPkg/Library/PlatformBootManagerLib/PlatformBm.c
> index 4aca1382b042..23c925bbdb9c 100644
> --- a/ArmPkg/Library/PlatformBootManagerLib/PlatformBm.c
> +++ b/ArmPkg/Library/PlatformBootManagerLib/PlatformBm.c
> @@ -357,7 +357,8 @@ VOID
> PlatformRegisterFvBootOption (
> CONST EFI_GUID *FileGuid,
> CHAR16 *Description,
> - UINT32 Attributes
> + UINT32 Attributes,
> + EFI_INPUT_KEY *Key
> )
> {
> EFI_STATUS Status;
> @@ -409,6 +410,9 @@ PlatformRegisterFvBootOption (
> if (OptionIndex == -1) {
> Status = EfiBootManagerAddLoadOptionVariable (&NewOption, MAX_UINTN);
> ASSERT_EFI_ERROR (Status);
> + Status = EfiBootManagerAddKeyOptionVariable (NULL,
> + (UINT16)NewOption.OptionNumber, 0, Key, NULL);
> + ASSERT (Status == EFI_SUCCESS || Status == EFI_ALREADY_STARTED);
> }
> EfiBootManagerFreeLoadOption (&NewOption);
> EfiBootManagerFreeLoadOptions (BootOptions, BootOptionCount);
> @@ -721,6 +725,7 @@ PlatformBootManagerAfterConsole (
> UINTN FirmwareVerLength;
> UINTN PosX;
> UINTN PosY;
> + EFI_INPUT_KEY Key;
>
> FirmwareVerLength = StrLen (PcdGetPtr (PcdFirmwareVersionString));
>
> @@ -770,8 +775,10 @@ PlatformBootManagerAfterConsole (
> //
> // Register UEFI Shell
> //
> + Key.ScanCode = SCAN_NULL;
> + Key.UnicodeChar = L's';
> PlatformRegisterFvBootOption (
> - &gUefiShellFileGuid, L"UEFI Shell", LOAD_OPTION_ACTIVE
> + &gUefiShellFileGuid, L"UEFI Shell", LOAD_OPTION_ACTIVE, &Key
> );
> }
>
>
Reviewed-by: Laszlo Ersek <lersek@redhat.com>
next prev parent reply other threads:[~2020-05-27 15:24 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-05-26 16:13 [PATCH 0/5] ArmPkg/PlatformBootManagerLib: play nice without ConnectAll() Ard Biesheuvel
2020-05-26 16:13 ` [PATCH 1/5] ArmPkg/PlatformBootManagerLib: register 's' as UEFI Shell hotkey Ard Biesheuvel
2020-05-27 15:24 ` Laszlo Ersek [this message]
2020-05-26 16:13 ` [PATCH 2/5] ArmPkg/PlatformBootManagerLib: fall back to the UiApp on boot failure Ard Biesheuvel
2020-05-26 21:24 ` [edk2-devel] " Leif Lindholm
2020-05-27 15:34 ` Laszlo Ersek
2020-05-27 17:39 ` Leif Lindholm
2020-05-27 15:25 ` Laszlo Ersek
2020-05-26 16:13 ` [PATCH 3/5] ArmPkg/PlatformBootManagerLib: hide UEFI Shell as a regular boot option Ard Biesheuvel
2020-05-26 21:27 ` [edk2-devel] " Leif Lindholm
2020-05-27 15:40 ` Laszlo Ersek
2020-05-26 16:13 ` [PATCH 4/5] ArmPkg/PlatformBootManagerLib: don't connect all devices on each boot Ard Biesheuvel
2020-05-27 15:49 ` [edk2-devel] " Laszlo Ersek
2020-05-26 16:13 ` [PATCH 5/5] ShellPkg: add BootManager library to add UEFI Shell menu option Ard Biesheuvel
2020-05-27 15:57 ` [edk2-devel] " Laszlo Ersek
2020-05-27 17:22 ` Ard Biesheuvel
2020-05-28 19:55 ` Laszlo Ersek
2020-05-26 22:01 ` [PATCH 0/5] ArmPkg/PlatformBootManagerLib: play nice without ConnectAll() Leif Lindholm
2020-05-27 5:35 ` [edk2-devel] " Ard Biesheuvel
2020-05-27 10:43 ` Leif Lindholm
2020-05-27 10:50 ` Ard Biesheuvel
2020-05-27 13:41 ` Leif Lindholm
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-list from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=0145499a-73a1-5e06-7b49-b6bf02091aea@redhat.com \
--to=devel@edk2.groups.io \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox