Kconfig 377 B

12345678910111213141516171819
  1. if VENDOR_EFI
  2. choice
  3. prompt "Mainboard model"
  4. optional
  5. config TARGET_EFI
  6. bool "efi"
  7. help
  8. This target is used for running U-Boot on top of EFI. In
  9. this case EFI does the early initialisation, and U-Boot
  10. takes over once the RAM, video and CPU are fully running.
  11. U-Boot is loaded as an application from EFI.
  12. endchoice
  13. source "board/efi/efi-x86/Kconfig"
  14. endif