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