mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 10:39:08 +00:00
efi: hii: add guid package support
Allow for handling GUID package in HII database protocol. Signed-off-by: AKASHI Takahiro <takahiro.akashi@linaro.org> Signed-off-by: Alexander Graf <agraf@suse.de>
This commit is contained in:
parent
c9bfb22296
commit
9ab0bdd9fe
2 changed files with 51 additions and 6 deletions
|
@ -744,6 +744,15 @@ struct efi_hii_package_header {
|
|||
#define EFI_HII_PACKAGE_TYPE_SYSTEM_BEGIN 0xE0
|
||||
#define EFI_HII_PACKAGE_TYPE_SYSTEM_END 0xFF
|
||||
|
||||
/*
|
||||
* HII GUID package
|
||||
*/
|
||||
struct efi_hii_guid_package {
|
||||
struct efi_hii_package_header header;
|
||||
efi_guid_t guid;
|
||||
char data[];
|
||||
} __packed;
|
||||
|
||||
/*
|
||||
* HII string package
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue