mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 17:07:38 +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>
51 lines
729 B
Text
51 lines
729 B
Text
menu "mpc8xx CPU"
|
|
depends on 8xx
|
|
|
|
config SYS_CPU
|
|
default "mpc8xx"
|
|
|
|
choice
|
|
prompt "Target select"
|
|
optional
|
|
|
|
config TARGET_TQM823L
|
|
bool "Support TQM823L"
|
|
|
|
config TARGET_TQM823M
|
|
bool "Support TQM823M"
|
|
|
|
config TARGET_TQM850L
|
|
bool "Support TQM850L"
|
|
|
|
config TARGET_TQM850M
|
|
bool "Support TQM850M"
|
|
|
|
config TARGET_TQM855L
|
|
bool "Support TQM855L"
|
|
|
|
config TARGET_TQM855M
|
|
bool "Support TQM855M"
|
|
|
|
config TARGET_TQM860L
|
|
bool "Support TQM860L"
|
|
|
|
config TARGET_TQM860M
|
|
bool "Support TQM860M"
|
|
|
|
config TARGET_TQM862L
|
|
bool "Support TQM862L"
|
|
|
|
config TARGET_TQM862M
|
|
bool "Support TQM862M"
|
|
|
|
config TARGET_TQM866M
|
|
bool "Support TQM866M"
|
|
|
|
config TARGET_TQM885D
|
|
bool "Support TQM885D"
|
|
|
|
endchoice
|
|
|
|
source "board/tqc/tqm8xx/Kconfig"
|
|
|
|
endmenu
|