From: "Ni, Ruiyu" <ruiyu.ni@intel.com>
To: "Dong, Eric" <eric.dong@intel.com>,
"edk2-devel@lists.01.org" <edk2-devel@lists.01.org>
Subject: Re: [Patch] Nt32Pkg PlatformBootManagerLib: Enable BootManagerMenuApp.
Date: Fri, 26 Aug 2016 04:25:03 +0000 [thread overview]
Message-ID: <734D49CCEBEEF84792F5B80ED585239D1ADC30E2@SHSMSX103.ccr.corp.intel.com> (raw)
In-Reply-To: <1472026910-64440-1-git-send-email-eric.dong@intel.com>
Reviewed-by: Ruiyu Ni <ruiyu.ni@intel.com>
>-----Original Message-----
>From: Dong, Eric
>Sent: Wednesday, August 24, 2016 4:22 PM
>To: edk2-devel@lists.01.org
>Cc: Ni, Ruiyu <ruiyu.ni@intel.com>
>Subject: [Patch] Nt32Pkg PlatformBootManagerLib: Enable BootManagerMenuApp.
>
>Enable BootManagerMenuApp application for Nt32 platform.
>Also enable F7 hotkey to select this boot option.
>
>Contributed-under: TianoCore Contribution Agreement 1.0
>Signed-off-by: Eric Dong <eric.dong@intel.com>
>Cc: Ruiyu Ni <ruiyu.ni@intel.com>
>---
> .../PlatformBootManagerLib/PlatformBootManager.c | 169 ++++++++++++++++++++-
> .../PlatformBootManagerLib/PlatformBootManager.h | 1 +
> .../PlatformBootManagerLib.inf | 1 +
> Nt32Pkg/Nt32Pkg.dsc | 4 +
> Nt32Pkg/Nt32Pkg.fdf | 1 +
> 5 files changed, 173 insertions(+), 3 deletions(-)
>
>diff --git a/Nt32Pkg/Library/PlatformBootManagerLib/PlatformBootManager.c
>b/Nt32Pkg/Library/PlatformBootManagerLib/PlatformBootManager.c
>index 4b23eb1..e75b849 100644
>--- a/Nt32Pkg/Library/PlatformBootManagerLib/PlatformBootManager.c
>+++ b/Nt32Pkg/Library/PlatformBootManagerLib/PlatformBootManager.c
>@@ -15,6 +15,10 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
>
> #include "PlatformBootManager.h"
>
>+EFI_GUID mBootMenuFile = {
>+ 0xEEC25BDC, 0x67F2, 0x4D95, { 0xB1, 0xD5, 0xF8, 0x1B, 0x20, 0x39, 0xD1, 0x1D }
>+};
>+
> /**
> Perform the platform diagnostic, such like test memory. OEM/IBV also
> can customize this function to support specific platform diagnostic.
>@@ -144,6 +148,154 @@ CompareBootOption (
> }
>
> /**
>+ Generate device path include the input file guid info.
>+
>+ @param FileGuid Input file guid for the BootManagerMenuApp.
>+
>+ @retval DevicePath for BootManagerMenuApp.
>+**/
>+EFI_DEVICE_PATH *
>+FvFilePath (
>+ EFI_GUID *FileGuid
>+ )
>+{
>+
>+ EFI_STATUS Status;
>+ EFI_LOADED_IMAGE_PROTOCOL *LoadedImage;
>+ MEDIA_FW_VOL_FILEPATH_DEVICE_PATH FileNode;
>+
>+ EfiInitializeFwVolDevicepathNode (&FileNode, FileGuid);
>+
>+ Status = gBS->HandleProtocol (
>+ gImageHandle,
>+ &gEfiLoadedImageProtocolGuid,
>+ (VOID **) &LoadedImage
>+ );
>+ ASSERT_EFI_ERROR (Status);
>+
>+ return AppendDevicePathNode (
>+ DevicePathFromHandle (LoadedImage->DeviceHandle),
>+ (EFI_DEVICE_PATH_PROTOCOL *) &FileNode
>+ );
>+}
>+
>+/**
>+ Create one boot option for BootManagerMenuApp.
>+
>+ @param FileGuid Input file guid for the BootManagerMenuApp.
>+ @param Description Description of the BootManagerMenuApp boot option.
>+ @param Position Position of the new load option to put in the ****Order variable.
>+ @param IsBootCategory Whether this is a boot category.
>+
>+
>+ @retval OptionNumber Return the option number info.
>+
>+**/
>+UINTN
>+RegisterBootManagerMenuAppBootOption (
>+ EFI_GUID *FileGuid,
>+ CHAR16 *Description,
>+ UINTN Position,
>+ BOOLEAN IsBootCategory
>+ )
>+{
>+ EFI_STATUS Status;
>+ EFI_BOOT_MANAGER_LOAD_OPTION NewOption;
>+ EFI_DEVICE_PATH_PROTOCOL *DevicePath;
>+ UINTN OptionNumber;
>+
>+ DevicePath = FvFilePath (FileGuid);
>+ Status = EfiBootManagerInitializeLoadOption (
>+ &NewOption,
>+ LoadOptionNumberUnassigned,
>+ LoadOptionTypeBoot,
>+ IsBootCategory ? LOAD_OPTION_ACTIVE : LOAD_OPTION_CATEGORY_APP,
>+ Description,
>+ DevicePath,
>+ NULL,
>+ 0
>+ );
>+ ASSERT_EFI_ERROR (Status);
>+ FreePool (DevicePath);
>+
>+ Status = EfiBootManagerAddLoadOptionVariable (&NewOption, Position);
>+ ASSERT_EFI_ERROR (Status);
>+
>+ OptionNumber = NewOption.OptionNumber;
>+
>+ EfiBootManagerFreeLoadOption (&NewOption);
>+
>+ return OptionNumber;
>+}
>+
>+/**
>+ Check if it's a Device Path pointing to BootManagerMenuApp.
>+
>+ @param DevicePath Input device path.
>+
>+ @retval TRUE The device path is BootManagerMenuApp File Device Path.
>+ @retval FALSE The device path is NOT BootManagerMenuApp File Device Path.
>+**/
>+BOOLEAN
>+IsBootManagerMenuAppFilePath (
>+ EFI_DEVICE_PATH_PROTOCOL *DevicePath
>+)
>+{
>+ EFI_HANDLE FvHandle;
>+ VOID *NameGuid;
>+ EFI_STATUS Status;
>+
>+ Status = gBS->LocateDevicePath (&gEfiFirmwareVolume2ProtocolGuid, &DevicePath, &FvHandle);
>+ if (!EFI_ERROR (Status)) {
>+ NameGuid = EfiGetNameGuidFromFwVolDevicePathNode ((CONST MEDIA_FW_VOL_FILEPATH_DEVICE_PATH *)
>DevicePath);
>+ if (NameGuid != NULL) {
>+ return CompareGuid (NameGuid, &mBootMenuFile);
>+ }
>+ }
>+
>+ return FALSE;
>+}
>+
>+/**
>+ Return the boot option number to the BootManagerMenuApp.
>+
>+ If not found it in the current boot option, create a new one.
>+
>+ @retval OptionNumber Return the boot option number to the BootManagerMenuApp.
>+
>+**/
>+UINTN
>+GetBootManagerMenuAppOption (
>+ VOID
>+ )
>+{
>+ UINTN BootOptionCount;
>+ EFI_BOOT_MANAGER_LOAD_OPTION *BootOptions;
>+ UINTN Index;
>+ UINTN OptionNumber;
>+
>+ BootOptions = EfiBootManagerGetLoadOptions (&BootOptionCount, LoadOptionTypeBoot);
>+
>+ for (Index = 0; Index < BootOptionCount; Index++) {
>+ if (IsBootManagerMenuAppFilePath (BootOptions[Index].FilePath)) {
>+ OptionNumber = BootOptions[Index].OptionNumber;
>+ break;
>+ }
>+ }
>+
>+ EfiBootManagerFreeLoadOptions (BootOptions, BootOptionCount);
>+
>+ if (Index >= BootOptionCount) {
>+ //
>+ // If not found the BootManagerMenuApp, create it.
>+ //
>+ OptionNumber = (UINT16) RegisterBootManagerMenuAppBootOption (&mBootMenuFile, L"UEFI
>BootManagerMenuApp", (UINTN) -1, FALSE);
>+ }
>+
>+ return OptionNumber;
>+}
>+
>+/**
> Do the platform specific action after the console is connected.
>
> Such as:
>@@ -163,7 +315,9 @@ PlatformBootManagerAfterConsole (
> EFI_GRAPHICS_OUTPUT_BLT_PIXEL White;
> EFI_INPUT_KEY Enter;
> EFI_INPUT_KEY F2;
>+ EFI_INPUT_KEY F7;
> EFI_BOOT_MANAGER_LOAD_OPTION BootOption;
>+ UINTN OptionNumber;
>
> Black.Blue = Black.Green = Black.Red = Black.Reserved = 0;
> White.Blue = White.Green = White.Red = White.Reserved = 0xFF;
>@@ -186,14 +340,23 @@ PlatformBootManagerAfterConsole (
> EfiBootManagerAddKeyOptionVariable (NULL, (UINT16) BootOption.OptionNumber, 0, &F2, NULL);
>
> //
>+ // 3. Boot Device List menu
>+ //
>+ F7.ScanCode = SCAN_F7;
>+ F7.UnicodeChar = CHAR_NULL;
>+ OptionNumber = GetBootManagerMenuAppOption ();
>+ EfiBootManagerAddKeyOptionVariable (NULL, (UINT16)OptionNumber, 0, &F7, NULL);
>+
>+ //
> // Make Shell as the first boot option
> //
> EfiBootManagerSortLoadOptionVariable (LoadOptionTypeBoot, (SORT_COMPARE) CompareBootOption);
>
> PlatformBootManagerDiagnostics (QUICK, TRUE);
>-
>- PrintXY (10, 10, &White, &Black, L"F2 to enter Boot Manager Menu.
>");
>- PrintXY (10, 30, &White, &Black, L"Enter to boot directly.");
>+
>+ PrintXY (10, 10, &White, &Black, L"F2 to enter Setup. ");
>+ PrintXY (10, 30, &White, &Black, L"F7 to enter Boot Manager Menu.");
>+ PrintXY (10, 50, &White, &Black, L"Enter to boot directly.");
> }
>
> /**
>diff --git a/Nt32Pkg/Library/PlatformBootManagerLib/PlatformBootManager.h
>b/Nt32Pkg/Library/PlatformBootManagerLib/PlatformBootManager.h
>index e2c6681..e014932 100644
>--- a/Nt32Pkg/Library/PlatformBootManagerLib/PlatformBootManager.h
>+++ b/Nt32Pkg/Library/PlatformBootManagerLib/PlatformBootManager.h
>@@ -20,6 +20,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
> #include <Protocol/WinNtThunk.h>
> #include <Protocol/WinNtIo.h>
> #include <Protocol/LoadedImage.h>
>+#include <Protocol/FirmwareVolume2.h>
>
> #include <Library/DebugLib.h>
> #include <Library/BaseMemoryLib.h>
>diff --git a/Nt32Pkg/Library/PlatformBootManagerLib/PlatformBootManagerLib.inf
>b/Nt32Pkg/Library/PlatformBootManagerLib/PlatformBootManagerLib.inf
>index 71e8738..c552f97 100644
>--- a/Nt32Pkg/Library/PlatformBootManagerLib/PlatformBootManagerLib.inf
>+++ b/Nt32Pkg/Library/PlatformBootManagerLib/PlatformBootManagerLib.inf
>@@ -62,6 +62,7 @@
> gEfiGraphicsOutputProtocolGuid ## CONSUMES
> gEfiUgaDrawProtocolGuid ## CONSUMES
> gEfiBootLogoProtocolGuid ## CONSUMES
>+ gEfiFirmwareVolume2ProtocolGuid ## CONSUMES
>
> [Pcd]
> gEfiMdePkgTokenSpaceGuid.PcdPlatformBootTimeOut
>diff --git a/Nt32Pkg/Nt32Pkg.dsc b/Nt32Pkg/Nt32Pkg.dsc
>index e3f9326..408cc51 100644
>--- a/Nt32Pkg/Nt32Pkg.dsc
>+++ b/Nt32Pkg/Nt32Pkg.dsc
>@@ -470,6 +470,10 @@
>
> MdeModulePkg/Universal/PlatformDriOverrideDxe/PlatformDriOverrideDxe.inf
> MdeModulePkg/Universal/LoadFileOnFv2/LoadFileOnFv2.inf
>+ MdeModulePkg/Application/BootManagerMenuApp/BootManagerMenuApp.inf {
>+ <LibraryClasses>
>+ NULL|IntelFrameworkModulePkg/Library/LegacyBootManagerLib/LegacyBootManagerLib.inf
>+ }
>
> ###################################################################################################
> #
>diff --git a/Nt32Pkg/Nt32Pkg.fdf b/Nt32Pkg/Nt32Pkg.fdf
>index 39046ec..bd9eeca 100644
>--- a/Nt32Pkg/Nt32Pkg.fdf
>+++ b/Nt32Pkg/Nt32Pkg.fdf
>@@ -262,6 +262,7 @@ INF NetworkPkg/HttpBootDxe/HttpBootDxe.inf
> INF NetworkPkg/DnsDxe/DnsDxe.inf
> INF NetworkPkg/HttpDxe/HttpDxe.inf
> INF NetworkPkg/HttpUtilitiesDxe/HttpUtilitiesDxe.inf
>+INF MdeModulePkg/Application/BootManagerMenuApp/BootManagerMenuApp.inf
> ################################################################################
> #
> # FILE statements are provided so that a platform integrator can include
>--
>2.6.4.windows.1
prev parent reply other threads:[~2016-08-26 4:25 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-08-24 8:21 [Patch] Nt32Pkg PlatformBootManagerLib: Enable BootManagerMenuApp Eric Dong
2016-08-26 4:25 ` Ni, Ruiyu [this message]
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=734D49CCEBEEF84792F5B80ED585239D1ADC30E2@SHSMSX103.ccr.corp.intel.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