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:
27
UefiPayloadPkg/Include/Guid/BootManagerMenu.h
Normal file
27
UefiPayloadPkg/Include/Guid/BootManagerMenu.h
Normal file
@@ -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
|
Reference in New Issue
Block a user