2015-08-04 18:33:47 +00:00
|
|
|
if VENDOR_EFI
|
|
|
|
|
|
|
|
choice
|
|
|
|
prompt "Mainboard model"
|
|
|
|
optional
|
|
|
|
|
2018-06-12 15:36:24 +00:00
|
|
|
config TARGET_EFI_APP
|
|
|
|
bool "efi application"
|
2015-08-04 18:33:47 +00:00
|
|
|
help
|
|
|
|
This target is used for running U-Boot on top of EFI. In
|
|
|
|
this case EFI does the early initialisation, and U-Boot
|
|
|
|
takes over once the RAM, video and CPU are fully running.
|
|
|
|
U-Boot is loaded as an application from EFI.
|
|
|
|
|
2018-06-12 15:36:18 +00:00
|
|
|
config TARGET_EFI_PAYLOAD
|
|
|
|
bool "efi payload"
|
|
|
|
help
|
|
|
|
This target is used for running U-Boot on top of EFI. In
|
|
|
|
this case EFI does the early initialisation, and U-Boot
|
|
|
|
takes over once the RAM, video and CPU are fully running.
|
|
|
|
U-Boot is loaded as a payload from EFI.
|
|
|
|
|
2015-08-04 18:33:47 +00:00
|
|
|
endchoice
|
|
|
|
|
2018-06-12 15:36:24 +00:00
|
|
|
source "board/efi/efi-x86_app/Kconfig"
|
2018-06-12 15:36:18 +00:00
|
|
|
source "board/efi/efi-x86_payload/Kconfig"
|
2015-08-04 18:33:47 +00:00
|
|
|
|
|
|
|
endif
|