mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
8435179271
Create a Kconfig entry for DISPLAY_BOARDINFO and make it be the default in certain architectures. Migrate all config files. Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com> Signed-off-by: Tom Rini <trini@konsulko.com>
33 lines
517 B
Text
33 lines
517 B
Text
if TARGET_CANYONLANDS
|
|
|
|
config SYS_BOARD
|
|
default "canyonlands"
|
|
|
|
config SYS_VENDOR
|
|
default "amcc"
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "canyonlands"
|
|
|
|
choice BOARD_TYPE
|
|
prompt "Select which board to build for"
|
|
optional
|
|
|
|
config CANYONLANDS
|
|
bool "Glacier"
|
|
help
|
|
Select this to build for the Canyonlands 460EX board.
|
|
|
|
config GLACIER
|
|
bool "Glacier"
|
|
help
|
|
Select this to build for the Glacier 460GT board.
|
|
|
|
config ARCHES
|
|
bool "Arches"
|
|
help
|
|
Select this to build for the Arches dual 460GT board.
|
|
|
|
endchoice
|
|
|
|
endif
|