diff options
author | Simon Glass <sjg@chromium.org> | 2015-07-31 15:31:36 (GMT) |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-08-05 14:42:41 (GMT) |
commit | 867a6ac86dd823de409752e9ca5dc8f4d4880f26 (patch) | |
tree | d9b3bbaeae3cc0ade351850c0110fc6b92d5c808 /lib/Kconfig | |
parent | 8f3b9694b217b7083fcbc44d7a28c16185c0c579 (diff) | |
download | u-boot-867a6ac86dd823de409752e9ca5dc8f4d4880f26.tar.xz |
efi: Add start-up library code
When running as an EFI application, U-Boot must request memory from EFI,
and provide access to the boot services U-Boot needs.
Add library code to perform these tasks. This includes efi_main() which is
the entry point from EFI. U-Boot is built as a shared library.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'lib/Kconfig')
-rw-r--r-- | lib/Kconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Kconfig b/lib/Kconfig index 972ac17..884218a 100644 --- a/lib/Kconfig +++ b/lib/Kconfig @@ -98,4 +98,6 @@ config ERRNO_STR - if errno is null or positive number - a pointer to "Success" message - if errno is negative - a pointer to errno related message +source lib/efi/Kconfig + endmenu |