Kconfig (1a2728ae4faf12874173de156b8a7e66cfbbeae5) Kconfig (32151d40172870e7772b1a393935001979a01aea)
1if VENDOR_EFI
2
3choice
4 prompt "Mainboard model"
5 optional
6
7config TARGET_EFI
8 bool "efi"
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
1if VENDOR_EFI
2
3choice
4 prompt "Mainboard model"
5 optional
6
7config TARGET_EFI
8 bool "efi"
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
15config 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
15endchoice
16
17source "board/efi/efi-x86/Kconfig"
23endchoice
24
25source "board/efi/efi-x86/Kconfig"
26source "board/efi/efi-x86_payload/Kconfig"
18
19endif
27
28endif