diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2015-02-20 17:04:11 +0900 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2015-02-21 08:23:52 -0500 |
commit | 39a723452f430a7ef89b0ffa934b2d4312890076 (patch) | |
tree | 96e7b662299ad54d5297321a4e9f940d3821323b /arch/arm/mach-keystone/Kconfig | |
parent | 63637a484614490685b68a70bdf93b435c063363 (diff) | |
download | u-boot-imx-39a723452f430a7ef89b0ffa934b2d4312890076.zip u-boot-imx-39a723452f430a7ef89b0ffa934b2d4312890076.tar.gz u-boot-imx-39a723452f430a7ef89b0ffa934b2d4312890076.tar.bz2 |
ARM: keystone: move SoC sources to mach-keystone
Move
arch/arm/cpu/armv7/keystone/* -> arch/arm/mach-keystone/*
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Cc: Tom Rini <trini@ti.com>
Diffstat (limited to 'arch/arm/mach-keystone/Kconfig')
-rw-r--r-- | arch/arm/mach-keystone/Kconfig | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/arch/arm/mach-keystone/Kconfig b/arch/arm/mach-keystone/Kconfig new file mode 100644 index 0000000..134ae87 --- /dev/null +++ b/arch/arm/mach-keystone/Kconfig @@ -0,0 +1,22 @@ +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" + +config TARGET_K2L_EVM + bool "TI Keystone 2 Lamar EVM" + +endchoice + +config SYS_SOC + default "keystone" + +source "board/ti/ks2_evm/Kconfig" + +endif |