mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
9d74f03460
There are many places in the U-Boot source tree which refer to CONFIG_SYS_COREBOOT, CONFIG_CBMEM_CONSOLE and CONFIG_VIDEO_COREBOOT that is currently defined in coreboot.h. Move them to arch/x86/cpu/coreboot/Kconfig so that we can switch to board configuration file to build U-Boot later. Signed-off-by: Bin Meng <bmeng.cn@gmail.com> Acked-by: Simon Glass <sjg@chromium.org>
15 lines
143 B
Text
15 lines
143 B
Text
if TARGET_COREBOOT
|
|
|
|
config SYS_COREBOOT
|
|
bool
|
|
default y
|
|
|
|
config CBMEM_CONSOLE
|
|
bool
|
|
default y
|
|
|
|
config VIDEO_COREBOOT
|
|
bool
|
|
default y
|
|
|
|
endif
|