mirror of https://github.com/acidanthera/audk.git
UefiPayloadPkg: Add new structure for BootManagerMenuFile HOB
Add new structure for BootManagerMenuFile HOB in UefiPayloadPkg Cc: Maurice Ma <maurice.ma@intel.com> Cc: Guo Dong <guo.dong@intel.com> Cc: Benjamin You <benjamin.you@intel.com> Reviewed-by: Guo Dong <guo.dong@intel.com> Signed-off-by: DunTan <dun.tan@intel.com>
This commit is contained in:
parent
caa139fe17
commit
8efd912baf
|
@ -0,0 +1,27 @@
|
|||
/** @file
|
||||
Define the structure for the Boot Manager Menu File.
|
||||
|
||||
Copyright (c) 2021, Intel Corporation. All rights reserved.<BR>
|
||||
SPDX-License-Identifier: BSD-2-Clause-Patent
|
||||
|
||||
**/
|
||||
|
||||
#ifndef UNIVERSAL_PAYLOAD_BOOT_MANAGER_MENU_H_
|
||||
#define UNIVERSAL_PAYLOAD_BOOT_MANAGER_MENU_H_
|
||||
|
||||
#include <Uefi.h>
|
||||
#include <UniversalPayload/UniversalPayload.h>
|
||||
|
||||
#pragma pack (1)
|
||||
|
||||
typedef struct {
|
||||
UNIVERSAL_PAYLOAD_GENERIC_HEADER Header;
|
||||
GUID FileName;
|
||||
} UNIVERSAL_PAYLOAD_BOOT_MANAGER_MENU;
|
||||
|
||||
#pragma pack()
|
||||
|
||||
#define UNIVERSAL_PAYLOAD_BOOT_MANAGER_MENU_REVISION 1
|
||||
|
||||
extern GUID gEdkiiBootManagerMenuFileGuid;
|
||||
#endif
|
|
@ -29,6 +29,9 @@
|
|||
#
|
||||
gBmpImageGuid = { 0x878AC2CC, 0x5343, 0x46F2, { 0xB5, 0x63, 0x51, 0xF8, 0x9D, 0xAF, 0x56, 0xBA } }
|
||||
|
||||
##include/Guid/BootManagerMenu.h
|
||||
gEdkiiBootManagerMenuFileGuid = { 0xdf939333, 0x42fc, 0x4b2a, { 0xa5, 0x9e, 0xbb, 0xae, 0x82, 0x81, 0xfe, 0xef }}
|
||||
|
||||
gUefiSystemTableInfoGuid = {0x16c8a6d0, 0xfe8a, 0x4082, {0xa2, 0x8, 0xcf, 0x89, 0xc4, 0x29, 0x4, 0x33}}
|
||||
gUefiAcpiBoardInfoGuid = {0xad3d31b, 0xb3d8, 0x4506, {0xae, 0x71, 0x2e, 0xf1, 0x10, 0x6, 0xd9, 0xf}}
|
||||
gUefiSerialPortInfoGuid = { 0x6c6872fe, 0x56a9, 0x4403, { 0xbb, 0x98, 0x95, 0x8d, 0x62, 0xde, 0x87, 0xf1 } }
|
||||
|
|
Loading…
Reference in New Issue