diff options
author | Andrej Rosano <andrej@inversepath.com> | 2015-04-08 18:56:29 +0200 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2015-04-09 09:13:54 +0200 |
commit | 424ee3d1571ebea9d6373c7c8cf408ffa655ff52 (patch) | |
tree | 067974d615567ba0449558a87469cd10341a58fd /arch/arm/cpu | |
parent | f97d112eb6c18e6947e054ee6b39afea724a7e9a (diff) | |
download | u-boot-imx-424ee3d1571ebea9d6373c7c8cf408ffa655ff52.zip u-boot-imx-424ee3d1571ebea9d6373c7c8cf408ffa655ff52.tar.gz u-boot-imx-424ee3d1571ebea9d6373c7c8cf408ffa655ff52.tar.bz2 |
ARM: mx5: move to a standard arch/board approach
Move the MX5 based boards to arch/arm/cpu/armv7/mx5, following the
commit: 89ebc82137bebb11a8191f8b9cbf08f2533ae8bc
Signed-off-by: Andrej Rosano <andrej@inversepath.com>
Cc: Stefano Babic <sbabic@denx.de>
Cc: Vagrant Cascadian <vagrant@debian.org>
Tested-by: Chris Kuethe <chris.kuethe@gmail.com>
Diffstat (limited to 'arch/arm/cpu')
-rw-r--r-- | arch/arm/cpu/armv7/mx5/Kconfig | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/arch/arm/cpu/armv7/mx5/Kconfig b/arch/arm/cpu/armv7/mx5/Kconfig new file mode 100644 index 0000000..960a718 --- /dev/null +++ b/arch/arm/cpu/armv7/mx5/Kconfig @@ -0,0 +1,16 @@ +if ARCH_MX5 + +config MX5 + bool + default y + +config MX51 + bool + +config MX53 + bool + +config SYS_SOC + default "mx5" + +endif |