mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-17 22:49:02 +00:00
Let arch/x86/Kconfig prompt board vendor first, then select the board model under that vendor. This way arch/x86/Kconfig only needs concern board vendor and leave the supported target list to board/<vendor>/Kconfig. Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Acked-by: Simon Glass <sjg@chromium.org>
26 lines
595 B
Text
26 lines
595 B
Text
#
|
|
# Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
if VENDOR_COREBOOT
|
|
|
|
choice
|
|
prompt "Mainboard model"
|
|
|
|
config TARGET_COREBOOT
|
|
bool "coreboot"
|
|
help
|
|
This target is used for running U-Boot on top of coreboot. In
|
|
this case coreboot does the early inititalisation, and U-Boot
|
|
takes over once the RAM, video and CPU are fully running.
|
|
U-Boot is loaded as a fallback payload from coreboot, in
|
|
coreboot terminology. This method was used for the Chromebook
|
|
Pixel when launched.
|
|
|
|
endchoice
|
|
|
|
source "board/coreboot/coreboot/Kconfig"
|
|
|
|
endif
|