mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-09 03:21:51 +00:00
efi_loader: export initialization state
Export the UEFI sub-system initialization state. This will allow to treat the setting of UEFI variables during and after initialization differently. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
parent
3a92f85f21
commit
15b1bf10d1
2 changed files with 4 additions and 1 deletions
|
@ -56,6 +56,9 @@ static inline void *guidcpy(void *dst, const void *src)
|
||||||
/* Root node */
|
/* Root node */
|
||||||
extern efi_handle_t efi_root;
|
extern efi_handle_t efi_root;
|
||||||
|
|
||||||
|
/* Set to EFI_SUCCESS when initialized */
|
||||||
|
extern efi_status_t efi_obj_list_initialized;
|
||||||
|
|
||||||
/* EFI system partition */
|
/* EFI system partition */
|
||||||
extern struct efi_system_partition {
|
extern struct efi_system_partition {
|
||||||
enum if_type if_type;
|
enum if_type if_type;
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
|
|
||||||
#define OBJ_LIST_NOT_INITIALIZED 1
|
#define OBJ_LIST_NOT_INITIALIZED 1
|
||||||
|
|
||||||
static efi_status_t efi_obj_list_initialized = OBJ_LIST_NOT_INITIALIZED;
|
efi_status_t efi_obj_list_initialized = OBJ_LIST_NOT_INITIALIZED;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Allow unaligned memory access.
|
* Allow unaligned memory access.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue