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