mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-14 07:13:03 +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>
22 lines
284 B
Text
22 lines
284 B
Text
menu "mpc5xx CPU"
|
|
depends on 5xx
|
|
|
|
config SYS_CPU
|
|
default "mpc5xx"
|
|
|
|
choice
|
|
prompt "Target select"
|
|
optional
|
|
|
|
config TARGET_CMI_MPC5XX
|
|
bool "Support cmi_mpc5xx"
|
|
|
|
config TARGET_PATI
|
|
bool "Support PATI"
|
|
|
|
endchoice
|
|
|
|
source "board/cmi/Kconfig"
|
|
source "board/mpl/pati/Kconfig"
|
|
|
|
endmenu
|