Kconfig 605 B

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