blob: 05a72d3c55f2eb021cdf5f0c1e7e32c8cd18e24a [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0+
Bin Meng65c4ac02015-04-27 23:22:24 +08002#
3# Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
Bin Meng65c4ac02015-04-27 23:22:24 +08004
5if VENDOR_COREBOOT
6
7choice
8 prompt "Mainboard model"
Joe Hershbergera26cd042015-05-12 14:46:23 -05009 optional
Bin Meng65c4ac02015-04-27 23:22:24 +080010
11config 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
21endchoice
22
23source "board/coreboot/coreboot/Kconfig"
24
25endif