Kconfig 716 B

12345678910111213141516171819202122232425262728
  1. if VENDOR_EFI
  2. choice
  3. prompt "Mainboard model"
  4. optional
  5. config TARGET_EFI_APP
  6. bool "efi application"
  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. config TARGET_EFI_PAYLOAD
  13. bool "efi payload"
  14. help
  15. This target is used for running U-Boot on top of EFI. In
  16. this case EFI does the early initialisation, and U-Boot
  17. takes over once the RAM, video and CPU are fully running.
  18. U-Boot is loaded as a payload from EFI.
  19. endchoice
  20. source "board/efi/efi-x86_app/Kconfig"
  21. source "board/efi/efi-x86_payload/Kconfig"
  22. endif