mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-22 15:47:37 +00:00
libefi: UEFI_BOOT_VAR_GUID duplicates EFI_GLOBAL_VARIABLE
Drop UEFI_BOOT_VAR_GUID and use EFI_GLOBAL_VARIABLE. Reviewed by: imp Differential Revision: https://reviews.freebsd.org/D14696
This commit is contained in:
parent
db08ef4353
commit
255b83725c
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=330970
@ -59,7 +59,5 @@ Revision History
|
||||
*/
|
||||
#define FREEBSD_BOOT_VAR_GUID \
|
||||
{ 0xCFEE69AD, 0xA0DE, 0x47A9, {0x93, 0xA8, 0xF6, 0x31, 0x06, 0xF8, 0xAE, 0x99} }
|
||||
#define UEFI_BOOT_VAR_GUID \
|
||||
{ 0x8be4df61, 0x93ca, 0x11d2, {0xaa, 0x0d, 0x00, 0xe0, 0x98, 0x03, 0x2b, 0x8c} }
|
||||
|
||||
#endif
|
||||
|
@ -33,7 +33,7 @@ __FBSDID("$FreeBSD$");
|
||||
#include <efilib.h>
|
||||
|
||||
static EFI_GUID FreeBSDBootVarGUID = FREEBSD_BOOT_VAR_GUID;
|
||||
static EFI_GUID GlobalBootVarGUID = UEFI_BOOT_VAR_GUID;
|
||||
static EFI_GUID GlobalBootVarGUID = EFI_GLOBAL_VARIABLE;
|
||||
|
||||
EFI_STATUS
|
||||
efi_getenv(EFI_GUID *g, const char *v, void *data, size_t *len)
|
||||
|
Loading…
Reference in New Issue
Block a user