diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2014-08-31 07:11:03 +0900 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-08-30 21:21:59 -0400 |
commit | d08215a5f13a11745d4adae3dab76c5e8fadbe0a (patch) | |
tree | 70c59bdfc9579eaa38e2e50fbe15e9414729b57f /arch/arm/Kconfig | |
parent | 3cfbcb58d38a0fa996a2566868af149e0515311e (diff) | |
download | u-boot-imx-d08215a5f13a11745d4adae3dab76c5e8fadbe0a.zip u-boot-imx-d08215a5f13a11745d4adae3dab76c5e8fadbe0a.tar.gz u-boot-imx-d08215a5f13a11745d4adae3dab76c5e8fadbe0a.tar.bz2 |
omap4: kconfig: move board select menu and common settings
Becuase the board select menu in arch/arm/Kconfig is too big,
move the OMAP4 board select menu to omap4/Kconfig.
Move also common settings (CONFIG_SYS_CPU="armv7" and
CONFIG_SYS_SOC="omap4").
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Reviewed-by: Tom Rini <trini@ti.com>
Cc: Lokesh Vutla <lokeshvutla@ti.com>
Diffstat (limited to 'arch/arm/Kconfig')
-rw-r--r-- | arch/arm/Kconfig | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 3f38b04..639b8cc 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -415,14 +415,8 @@ config TARGET_HUMMINGBOARD config OMAP34XX bool "OMAP34XX SoC" -config TARGET_DUOVERO - bool "Support duovero" - -config TARGET_OMAP4_PANDA - bool "Support omap4_panda" - -config TARGET_OMAP4_SDP4430 - bool "Support omap4_sdp4430" +config OMAP44XX + bool "OMAP44XX SoC" config TARGET_CM_T54 bool "Support cm_t54" @@ -531,6 +525,8 @@ source "arch/arm/cpu/arm926ejs/kirkwood/Kconfig" source "arch/arm/cpu/armv7/omap3/Kconfig" +source "arch/arm/cpu/armv7/omap4/Kconfig" + source "arch/arm/cpu/armv7/rmobile/Kconfig" source "arch/arm/cpu/armv7/tegra-common/Kconfig" @@ -615,7 +611,6 @@ source "board/freescale/mx6sxsabresd/Kconfig" source "board/freescale/vf610twr/Kconfig" source "board/gateworks/gw_ventana/Kconfig" source "board/genesi/mx51_efikamx/Kconfig" -source "board/gumstix/duovero/Kconfig" source "board/gumstix/pepper/Kconfig" source "board/h2200/Kconfig" source "board/hale/tt01/Kconfig" @@ -669,8 +664,6 @@ source "board/ti/am43xx/Kconfig" source "board/ti/dra7xx/Kconfig" source "board/ti/ks2_evm/Kconfig" source "board/ti/omap5_uevm/Kconfig" -source "board/ti/panda/Kconfig" -source "board/ti/sdp4430/Kconfig" source "board/ti/ti814x/Kconfig" source "board/ti/ti816x/Kconfig" source "board/ti/tnetv107xevm/Kconfig" |