From: "Ni, Ruiyu" <ruiyu.ni@intel.com>
To: "Gao, Liming" <liming.gao@intel.com>,
"edk2-devel@lists.01.org" <edk2-devel@lists.01.org>
Cc: "Dong, Eric" <eric.dong@intel.com>
Subject: Re: [Patch] MdeModulePkg UefiBootManagerLib: Ignore BootManagerMenuApp from LoadFile
Date: Thu, 1 Sep 2016 02:02:26 +0000 [thread overview]
Message-ID: <734D49CCEBEEF84792F5B80ED585239D58D45B2A@SHSMSX103.ccr.corp.intel.com> (raw)
In-Reply-To: <1472631553-26232-1-git-send-email-liming.gao@intel.com>
Liming,
Please use the term "BootManagerMenu" instead of "BootMenuApp", to avoid confusion when reading from future developers.
// Ignore BootMenuApp. its boot option will be created by BmRegisterBootManagerMenu().
-->
// Ignore BootManagerMenu, which will be auto-created by EfiBootManagerGetBootManagerMenu().
BmIsBootMenuAppFilePath
-->
BmIsBootManagerMenuFilePath
With the above two changes,
Reviewed-by: Ruiyu Ni <ruiyu.ni@intel.com>
> -----Original Message-----
> From: Gao, Liming
> Sent: Wednesday, August 31, 2016 4:19 PM
> To: edk2-devel@lists.01.org
> Cc: Ni, Ruiyu <ruiyu.ni@intel.com>; Dong, Eric <eric.dong@intel.com>
> Subject: [Patch] MdeModulePkg UefiBootManagerLib: Ignore
> BootManagerMenuApp from LoadFile
>
> BootManagerMenuApp boot option is handled by
> EfiBootManagerGetBootManagerMenu.
> Don't need to handle it again when parse LoadFile protocol.
>
> Cc: Ruiyu Ni <ruiyu.ni@intel.com>
> Cc: Eric Dong <eric.dong@intel.com>
> Contributed-under: TianoCore Contribution Agreement 1.0
> Signed-off-by: Liming Gao <liming.gao@intel.com>
> ---
> MdeModulePkg/Library/UefiBootManagerLib/BmBoot.c | 17 +++++++-------
> ---
> 1 file changed, 7 insertions(+), 10 deletions(-)
>
> diff --git a/MdeModulePkg/Library/UefiBootManagerLib/BmBoot.c
> b/MdeModulePkg/Library/UefiBootManagerLib/BmBoot.c
> index ecd0ae3..f8a3988 100644
> --- a/MdeModulePkg/Library/UefiBootManagerLib/BmBoot.c
> +++ b/MdeModulePkg/Library/UefiBootManagerLib/BmBoot.c
> @@ -1940,7 +1940,6 @@ BmEnumerateBootOptions (
> UINTN Removable;
> UINTN Index;
> CHAR16 *Description;
> - UINT32 BootAttributes;
>
> ASSERT (BootOptionCount != NULL);
>
> @@ -2070,6 +2069,12 @@ BmEnumerateBootOptions (
> &Handles
> );
> for (Index = 0; Index < HandleCount; Index++) {
> + //
> + // Ignore BootMenuApp. its boot option will be created by
> BmRegisterBootManagerMenu().
> + //
> + if (BmIsBootMenuAppFilePath (DevicePathFromHandle (Handles[Index])))
> {
> + continue;
> + }
>
> Description = BmGetBootDescription (Handles[Index]);
> BootOptions = ReallocatePool (
> @@ -2079,19 +2084,11 @@ BmEnumerateBootOptions (
> );
> ASSERT (BootOptions != NULL);
>
> - //
> - // If LoadFile includes BootMenuApp, its boot attribue will be set to APP
> and HIDDEN.
> - //
> - BootAttributes = LOAD_OPTION_ACTIVE;
> - if (BmIsBootMenuAppFilePath (DevicePathFromHandle (Handles[Index])))
> {
> - BootAttributes = LOAD_OPTION_CATEGORY_APP |
> LOAD_OPTION_ACTIVE | LOAD_OPTION_HIDDEN;
> - }
> -
> Status = EfiBootManagerInitializeLoadOption (
> &BootOptions[(*BootOptionCount)++],
> LoadOptionNumberUnassigned,
> LoadOptionTypeBoot,
> - BootAttributes,
> + LOAD_OPTION_ACTIVE,
> Description,
> DevicePathFromHandle (Handles[Index]),
> NULL,
> --
> 2.8.0.windows.1
next prev parent reply other threads:[~2016-09-01 2:02 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-08-31 8:19 [Patch] MdeModulePkg UefiBootManagerLib: Ignore BootManagerMenuApp from LoadFile Liming Gao
2016-09-01 2:02 ` Ni, Ruiyu [this message]
2016-09-01 2:12 ` Gao, Liming
2016-09-01 2:18 ` Wang, Sunny (HPS SW)
2016-09-01 2:20 ` Gao, Liming
2016-09-01 2:22 ` Wang, Sunny (HPS SW)
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=734D49CCEBEEF84792F5B80ED585239D58D45B2A@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