summaryrefslogtreecommitdiffstats
path: root/MdeModulePkg
diff options
context:
space:
mode:
authorLi, Walon <walon.li@hpe.com>2021-02-19 17:39:32 +0800
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>2021-02-25 15:57:50 +0000
commit7f34681c488aee2563eaa2afcc6a2c8aa7c5b912 (patch)
tree42f85e122d4ac9be304d733f7c2c106465490051 /MdeModulePkg
parent35f87da8a2debd443ac842db0a3794b17914a8f4 (diff)
downloadedk2-7f34681c488aee2563eaa2afcc6a2c8aa7c5b912.tar.gz
edk2-7f34681c488aee2563eaa2afcc6a2c8aa7c5b912.tar.bz2
edk2-7f34681c488aee2563eaa2afcc6a2c8aa7c5b912.zip
MdeModulePkg/UefiBootManagerLib: Put BootMenu at the end of BootOrder
REF:https://bugzilla.tianocore.org/show_bug.cgi?id=3135 When Boot Menu does not exist in the BootOrder, BmRegisterBootManagerMenu will create one into list. However, it should be put at the "end" of BootOrder instead of "start" of BootOrder. Replace 0 by -1 to adjust order of load options. Signed-off-by: Walon Li <walon.li@hpe.com> Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>
Diffstat (limited to 'MdeModulePkg')
-rw-r--r--MdeModulePkg/Library/UefiBootManagerLib/BmBoot.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/MdeModulePkg/Library/UefiBootManagerLib/BmBoot.c b/MdeModulePkg/Library/UefiBootManagerLib/BmBoot.c
index aff620ad52..6cc34d29c0 100644
--- a/MdeModulePkg/Library/UefiBootManagerLib/BmBoot.c
+++ b/MdeModulePkg/Library/UefiBootManagerLib/BmBoot.c
@@ -3,7 +3,7 @@
Copyright (c) 2019, NVIDIA CORPORATION. All rights reserved.
Copyright (c) 2011 - 2020, Intel Corporation. All rights reserved.<BR>
-(C) Copyright 2015-2016 Hewlett Packard Enterprise Development LP<BR>
+(C) Copyright 2015-2021 Hewlett Packard Enterprise Development LP<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
@@ -2505,7 +2505,7 @@ BmRegisterBootManagerMenu (
EfiBootManagerFreeLoadOptions (BootOptions, BootOptionCount);
);
- return EfiBootManagerAddLoadOptionVariable (BootOption, 0);
+ return EfiBootManagerAddLoadOptionVariable (BootOption, (UINTN) -1);
}
/**