mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
a26cd04920
By making the board selections optional, every defconfig will include the board selection when running savedefconfig so if a new board is added to the top of the list of choices the former top's defconfig will still be correct. Signed-off-by: Joe Hershberger <joe.hershberger@ni.com> Cc: Masahiro Yamada <yamada.masahiro@socionext.com> Acked-by: Stephen Warren <swarren@wwwdotorg.org> Cc: Tom Rini <trini@konsulko.com>
29 lines
451 B
Text
29 lines
451 B
Text
if OMAP54XX
|
|
|
|
choice
|
|
prompt "OMAP5 board select"
|
|
optional
|
|
|
|
config TARGET_CM_T54
|
|
bool "CompuLab CM-T54"
|
|
|
|
config TARGET_OMAP5_UEVM
|
|
bool "TI OMAP5 uEVM board"
|
|
|
|
config TARGET_DRA7XX_EVM
|
|
bool "TI DRA7XX"
|
|
|
|
config TARGET_BEAGLE_X15
|
|
bool "BeagleBoard X15"
|
|
|
|
endchoice
|
|
|
|
config SYS_SOC
|
|
default "omap5"
|
|
|
|
source "board/compulab/cm_t54/Kconfig"
|
|
source "board/ti/omap5_uevm/Kconfig"
|
|
source "board/ti/dra7xx/Kconfig"
|
|
source "board/ti/beagle_x15/Kconfig"
|
|
|
|
endif
|