mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
461be2f96e
Now the types of CONFIG_SYS_{ARCH, CPU, SOC, VENDOR, BOARD, CONFIG_NAME} are specified in arch/Kconfig. We can delete the ones in arch and board Kconfig files. This commit can be easily reproduced by the following command: find . -name Kconfig -a ! -path ./arch/Kconfig | xargs sed -i -e ' /config[[:space:]]SYS_\(ARCH\|CPU\|SOC\|\VENDOR\|BOARD\|CONFIG_NAME\)/ { N s/\n[[:space:]]*string// } ' Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
29 lines
502 B
Text
29 lines
502 B
Text
menu "mpc86xx CPU"
|
|
depends on MPC86xx
|
|
|
|
config SYS_CPU
|
|
default "mpc86xx"
|
|
|
|
choice
|
|
prompt "Target select"
|
|
|
|
config TARGET_SBC8641D
|
|
bool "Support sbc8641d"
|
|
|
|
config TARGET_MPC8610HPCD
|
|
bool "Support MPC8610HPCD"
|
|
|
|
config TARGET_MPC8641HPCN
|
|
bool "Support MPC8641HPCN"
|
|
|
|
config TARGET_XPEDITE517X
|
|
bool "Support xpedite517x"
|
|
|
|
endchoice
|
|
|
|
source "board/freescale/mpc8610hpcd/Kconfig"
|
|
source "board/freescale/mpc8641hpcn/Kconfig"
|
|
source "board/sbc8641d/Kconfig"
|
|
source "board/xes/xpedite517x/Kconfig"
|
|
|
|
endmenu
|