mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-09 03:21:51 +00:00
efi_loader: export efi_convert_pointer()
We need ConvertPointer() to adjust pointers when implementing runtime services within U-Boot. After ExitBootServices() gd is not available anymore. So we should not use EFI_ENTRY() and EFI_EXIT(). Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
parent
5f7dcf079d
commit
a44d2a2399
2 changed files with 6 additions and 5 deletions
|
@ -397,6 +397,9 @@ efi_status_t efi_root_node_register(void);
|
|||
efi_status_t efi_initialize_system_table(void);
|
||||
/* efi_runtime_detach() - detach unimplemented runtime functions */
|
||||
void efi_runtime_detach(void);
|
||||
/* efi_convert_pointer() - convert pointer to virtual address */
|
||||
efi_status_t EFIAPI efi_convert_pointer(efi_uintn_t debug_disposition,
|
||||
void **address);
|
||||
/* Called by bootefi to make console interface available */
|
||||
efi_status_t efi_console_register(void);
|
||||
/* Called by bootefi to make all disk storage accessible as EFI objects */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue