diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2014-08-31 07:11:05 +0900 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-08-30 21:21:59 -0400 |
commit | c338f09e965a300ddd78af73e86c4af4c9464ce4 (patch) | |
tree | 6ec93179963f86e6509d487097663ea0a5e95373 /arch/arm/cpu | |
parent | 6c5431ac81c762be8e5eefefdc41c0c8bda5dede (diff) | |
download | u-boot-imx-c338f09e965a300ddd78af73e86c4af4c9464ce4.zip u-boot-imx-c338f09e965a300ddd78af73e86c4af4c9464ce4.tar.gz u-boot-imx-c338f09e965a300ddd78af73e86c4af4c9464ce4.tar.bz2 |
keystone: kconfig: move board select menu and common settings
Becuase the board select menu in arch/arm/Kconfig is too big,
move the Keystone board select menu to keystone/Kconfig.
Move also common settings (CONFIG_SYS_CPU="armv7" and
CONFIG_SYS_SOC="keystone").
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Reviewed-by: Tom Rini <trini@ti.com>
Cc: Vitaly Andrianov <vitalya@ti.com>
Diffstat (limited to 'arch/arm/cpu')
-rw-r--r-- | arch/arm/cpu/armv7/keystone/Kconfig | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/arch/arm/cpu/armv7/keystone/Kconfig b/arch/arm/cpu/armv7/keystone/Kconfig new file mode 100644 index 0000000..24d0cbe --- /dev/null +++ b/arch/arm/cpu/armv7/keystone/Kconfig @@ -0,0 +1,24 @@ +if ARCH_KEYSTONE + +choice + prompt "TI Keystone board select" + +config TARGET_K2HK_EVM + bool "TI Keystone 2 Kepler/Hawking EVM" + +config TARGET_K2E_EVM + bool "TI Keystone 2 Edison EVM" + +endchoice + +config SYS_CPU + string + default "armv7" + +config SYS_SOC + string + default "keystone" + +source "board/ti/ks2_evm/Kconfig" + +endif |