diff options
author | Luigi Leonardi <leonardi@redhat.com> | 2025-03-04 12:24:47 +0100 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2025-03-13 12:48:58 +0000 |
commit | 4e19daa8520f498cb729b1de8d79b58a52fb223b (patch) | |
tree | 11f020104b6351a98b6bd619baf25667a4ecf208 | |
parent | 6bfd52247734c00d78b92d4636545b400e8bfa4a (diff) | |
download | edk2-4e19daa8520f498cb729b1de8d79b58a52fb223b.zip edk2-4e19daa8520f498cb729b1de8d79b58a52fb223b.tar.gz edk2-4e19daa8520f498cb729b1de8d79b58a52fb223b.tar.bz2 |
ArmVirtPkg: use BootManagerMenuApp as BootManagerMenu
This is part of the effort to enable/disable firmware configuration
(UiApp) from the QEMU CLI.
Because the UiApp can be disabled at runtime and it's currently the
default BootManagerMenu, change the default from UiApp to
BootManagerMenuApp.
Signed-off-by: Luigi Leonardi <leonardi@redhat.com>
-rw-r--r-- | ArmVirtPkg/ArmVirtQemu.dsc | 4 | ||||
-rw-r--r-- | ArmVirtPkg/ArmVirtQemuKernel.dsc | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/ArmVirtPkg/ArmVirtQemu.dsc b/ArmVirtPkg/ArmVirtQemu.dsc index 003f53f..29aa2dc 100644 --- a/ArmVirtPkg/ArmVirtQemu.dsc +++ b/ArmVirtPkg/ArmVirtQemu.dsc @@ -202,7 +202,9 @@ gUefiOvmfPkgTokenSpaceGuid.PcdDeviceTreeInitialBaseAddress|0x40000000
gEfiMdeModulePkgTokenSpaceGuid.PcdResetOnMemoryTypeInformationChange|FALSE
- gEfiMdeModulePkgTokenSpaceGuid.PcdBootManagerMenuFile|{ 0x21, 0xaa, 0x2c, 0x46, 0x14, 0x76, 0x03, 0x45, 0x83, 0x6e, 0x8a, 0xb6, 0xf4, 0x66, 0x23, 0x31 }
+
+ # Point to the MdeModulePkg/Application/BootManagerMenuApp/BootManagerMenuApp.inf
+ gEfiMdeModulePkgTokenSpaceGuid.PcdBootManagerMenuFile|{ 0xdc, 0x5b, 0xc2, 0xee, 0xf2, 0x67, 0x95, 0x4d, 0xb1, 0xd5, 0xf8, 0x1b, 0x20, 0x39, 0xd1, 0x1d }
#
# The maximum physical I/O addressability of the processor, set with
diff --git a/ArmVirtPkg/ArmVirtQemuKernel.dsc b/ArmVirtPkg/ArmVirtQemuKernel.dsc index 9d3a810..0dee41c 100644 --- a/ArmVirtPkg/ArmVirtQemuKernel.dsc +++ b/ArmVirtPkg/ArmVirtQemuKernel.dsc @@ -167,6 +167,9 @@ gEfiMdeModulePkgTokenSpaceGuid.PcdResetOnMemoryTypeInformationChange|FALSE
gEfiMdeModulePkgTokenSpaceGuid.PcdBootManagerMenuFile|{ 0x21, 0xaa, 0x2c, 0x46, 0x14, 0x76, 0x03, 0x45, 0x83, 0x6e, 0x8a, 0xb6, 0xf4, 0x66, 0x23, 0x31 }
+ # Point to the MdeModulePkg/Application/BootManagerMenuApp/BootManagerMenuApp.inf
+ gEfiMdeModulePkgTokenSpaceGuid.PcdBootManagerMenuFile|{ 0xdc, 0x5b, 0xc2, 0xee, 0xf2, 0x67, 0x95, 0x4d, 0xb1, 0xd5, 0xf8, 0x1b, 0x20, 0x39, 0xd1, 0x1d }
+
#
# The maximum physical I/O addressability of the processor, set with
# BuildCpuHob().
|