diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2014-08-31 07:11:07 +0900 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-08-30 21:22:00 -0400 |
commit | ef2b694c731f93a70aa06e84b52a27f6cc9dbc10 (patch) | |
tree | cd288ddb369f755a4cd011c25a66b83e9cce5f02 | |
parent | 22f2be7a122410862b68e4ceb901d677c1b5fee8 (diff) | |
download | talos-obmc-uboot-ef2b694c731f93a70aa06e84b52a27f6cc9dbc10.tar.gz talos-obmc-uboot-ef2b694c731f93a70aa06e84b52a27f6cc9dbc10.zip |
highbank: kconfig: move common settings
Move Highbank-specific settings to highbank/Kconfig.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Cc: Rob Herring <robh@kernel.org>
-rw-r--r-- | arch/arm/Kconfig | 7 | ||||
-rw-r--r-- | arch/arm/cpu/armv7/highbank/Kconfig (renamed from board/highbank/Kconfig) | 2 | ||||
-rw-r--r-- | configs/highbank_defconfig | 2 |
3 files changed, 6 insertions, 5 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 20b580c681..8f5f423795 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -334,8 +334,8 @@ config TARGET_BCM958622HR config ARCH_EXYNOS bool "Samsung EXYNOS" -config TARGET_HIGHBANK - bool "Support highbank" +config ARCH_HIGHBANK + bool "Calxeda Highbank" config ARCH_KEYSTONE bool "TI Keystone" @@ -512,6 +512,8 @@ source "arch/arm/cpu/arm926ejs/davinci/Kconfig" source "arch/arm/cpu/armv7/exynos/Kconfig" +source "arch/arm/cpu/armv7/highbank/Kconfig" + source "arch/arm/cpu/armv7/keystone/Kconfig" source "arch/arm/cpu/arm926ejs/kirkwood/Kconfig" @@ -609,7 +611,6 @@ source "board/genesi/mx51_efikamx/Kconfig" source "board/gumstix/pepper/Kconfig" source "board/h2200/Kconfig" source "board/hale/tt01/Kconfig" -source "board/highbank/Kconfig" source "board/icpdas/lp8x4x/Kconfig" source "board/imx31_phycore/Kconfig" source "board/isee/igep0033/Kconfig" diff --git a/board/highbank/Kconfig b/arch/arm/cpu/armv7/highbank/Kconfig index 1c324908cc..9527928f6a 100644 --- a/board/highbank/Kconfig +++ b/arch/arm/cpu/armv7/highbank/Kconfig @@ -1,4 +1,4 @@ -if TARGET_HIGHBANK +if ARCH_HIGHBANK config SYS_CPU string diff --git a/configs/highbank_defconfig b/configs/highbank_defconfig index 23fd52d925..88efbdfc10 100644 --- a/configs/highbank_defconfig +++ b/configs/highbank_defconfig @@ -1,2 +1,2 @@ CONFIG_ARM=y -CONFIG_TARGET_HIGHBANK=y +CONFIG_ARCH_HIGHBANK=y |