blob: dc9b70f65db621c9028bc75f13e116bc5e242bd0 [file] [log] [blame]
Bin Meng03b341b2015-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"
11
12config TARGET_COREBOOT
13 bool "coreboot"
14 help
15 This target is used for running U-Boot on top of coreboot. In
16 this case coreboot does the early inititalisation, and U-Boot
17 takes over once the RAM, video and CPU are fully running.
18 U-Boot is loaded as a fallback payload from coreboot, in
19 coreboot terminology. This method was used for the Chromebook
20 Pixel when launched.
21
22endchoice
23
24source "board/coreboot/coreboot/Kconfig"
25
26endif