Kconfig 601 B

12345678910111213141516171819202122232425
  1. # SPDX-License-Identifier: GPL-2.0+
  2. #
  3. # Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
  4. if VENDOR_COREBOOT
  5. choice
  6. prompt "Mainboard model"
  7. optional
  8. config TARGET_COREBOOT
  9. bool "coreboot"
  10. help
  11. This target is used for running U-Boot on top of coreboot. In
  12. this case coreboot does the early inititalisation, and U-Boot
  13. takes over once the RAM, video and CPU are fully running.
  14. U-Boot is loaded as a fallback payload from coreboot, in
  15. coreboot terminology. This method was used for the Chromebook
  16. Pixel when launched.
  17. endchoice
  18. source "board/coreboot/coreboot/Kconfig"
  19. endif