blob: 291bd2ca154ac08906a5cc9db9332384dca5e1c6 [file] [log] [blame]
Ben Stoltz3e9aa322015-08-04 12:33:47 -06001if VENDOR_EFI
2
3choice
4 prompt "Mainboard model"
5 optional
6
Bin Meng3ebd8922018-06-12 08:36:24 -07007config TARGET_EFI_APP
8 bool "efi application"
Ben Stoltz3e9aa322015-08-04 12:33:47 -06009 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 Meng32151d42018-06-12 08:36:18 -070015config 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 Stoltz3e9aa322015-08-04 12:33:47 -060023endchoice
24
Bin Meng3ebd8922018-06-12 08:36:24 -070025source "board/efi/efi-x86_app/Kconfig"
Bin Meng32151d42018-06-12 08:36:18 -070026source "board/efi/efi-x86_payload/Kconfig"
Ben Stoltz3e9aa322015-08-04 12:33:47 -060027
28endif