diff options
author | duntan <dun.tan@intel.com> | 2021-06-21 15:29:40 +0800 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2021-06-24 09:16:22 +0000 |
commit | 8efd912baf94c8b6f63910e9a56180b6959cf8e9 (patch) | |
tree | fe59f7b8e28a483acc6f3ae6b03579b53c0ebb51 /UefiPayloadPkg/Include | |
parent | caa139fe170c2db734514bf9bb2cd0cc86511484 (diff) | |
download | edk2-8efd912baf94c8b6f63910e9a56180b6959cf8e9.tar.gz edk2-8efd912baf94c8b6f63910e9a56180b6959cf8e9.tar.bz2 edk2-8efd912baf94c8b6f63910e9a56180b6959cf8e9.zip |
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>
Diffstat (limited to 'UefiPayloadPkg/Include')
-rw-r--r-- | UefiPayloadPkg/Include/Guid/BootManagerMenu.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/UefiPayloadPkg/Include/Guid/BootManagerMenu.h b/UefiPayloadPkg/Include/Guid/BootManagerMenu.h new file mode 100644 index 0000000000..d17cdf3084 --- /dev/null +++ b/UefiPayloadPkg/Include/Guid/BootManagerMenu.h @@ -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
|