Ben Stoltz | 3e9aa32 | 2015-08-04 12:33:47 -0600 | [diff] [blame] | 1 | if VENDOR_EFI |
| 2 | |
| 3 | choice |
| 4 | prompt "Mainboard model" |
| 5 | optional |
| 6 | |
Bin Meng | 3ebd892 | 2018-06-12 08:36:24 -0700 | [diff] [blame] | 7 | config TARGET_EFI_APP |
| 8 | bool "efi application" |
Ben Stoltz | 3e9aa32 | 2015-08-04 12:33:47 -0600 | [diff] [blame] | 9 | help |
| 10 | This target is used for running U-Boot on top of EFI. In |
| 11 | this case EFI does the early initialisation, and U-Boot |
| 12 | takes over once the RAM, video and CPU are fully running. |
| 13 | U-Boot is loaded as an application from EFI. |
| 14 | |
Bin Meng | 32151d4 | 2018-06-12 08:36:18 -0700 | [diff] [blame] | 15 | config TARGET_EFI_PAYLOAD |
| 16 | bool "efi payload" |
| 17 | help |
| 18 | This target is used for running U-Boot on top of EFI. In |
| 19 | this case EFI does the early initialisation, and U-Boot |
| 20 | takes over once the RAM, video and CPU are fully running. |
| 21 | U-Boot is loaded as a payload from EFI. |
| 22 | |
Ben Stoltz | 3e9aa32 | 2015-08-04 12:33:47 -0600 | [diff] [blame] | 23 | endchoice |
| 24 | |
Bin Meng | 3ebd892 | 2018-06-12 08:36:24 -0700 | [diff] [blame] | 25 | source "board/efi/efi-x86_app/Kconfig" |
Bin Meng | 32151d4 | 2018-06-12 08:36:18 -0700 | [diff] [blame] | 26 | source "board/efi/efi-x86_payload/Kconfig" |
Ben Stoltz | 3e9aa32 | 2015-08-04 12:33:47 -0600 | [diff] [blame] | 27 | |
| 28 | endif |