summaryrefslogtreecommitdiff
path: root/core/kconfig/arch
diff options
context:
space:
mode:
authorAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2014-04-06 01:52:30 +0200
committerAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2014-04-06 01:52:30 +0200
commit17597aaec92058f0145811ebccfb7b45c719949a (patch)
tree7fc9f014c894d6bb8d741604ad78820890d85904 /core/kconfig/arch
parentfb35cbd3b89bb95de7b51aa86e47f459c30c0fb2 (diff)
downloadembtoolkit-17597aaec92058f0145811ebccfb7b45c719949a.tar.gz
embtoolkit-17597aaec92058f0145811ebccfb7b45c719949a.tar.bz2
embtoolkit-17597aaec92058f0145811ebccfb7b45c719949a.tar.xz
ARM: add cortex-a7 as it is supported by gcc-4.8 and clang
Signed-off-by: Abdoulaye Walsimou Gaye <awg@embtoolkit.org>
Diffstat (limited to 'core/kconfig/arch')
-rw-r--r--core/kconfig/arch/arm/arm.kconfig5
1 files changed, 4 insertions, 1 deletions
diff --git a/core/kconfig/arch/arm/arm.kconfig b/core/kconfig/arch/arm/arm.kconfig
index 38e3ca7..4999ab7 100644
--- a/core/kconfig/arch/arm/arm.kconfig
+++ b/core/kconfig/arch/arm/arm.kconfig
@@ -1,6 +1,6 @@
################################################################################
# Embtoolkit
-# Copyright(C) 2009-2013 Abdoulaye Walsimou GAYE.
+# Copyright(C) 2009-2014 Abdoulaye Walsimou GAYE.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -217,6 +217,8 @@ choice
config EMBTK_ARCH_ARM_FAMILY_CORTEX_CORTEX-A5
bool "cortex-a5"
+ config EMBTK_ARCH_ARM_FAMILY_CORTEX_CORTEX-A7
+ bool "cortex-a7"
config EMBTK_ARCH_ARM_FAMILY_CORTEX_CORTEX-A8
bool "cortex-a8"
config EMBTK_ARCH_ARM_FAMILY_CORTEX_CORTEX-A9
@@ -265,6 +267,7 @@ config EMBTK_ARM_MCU_STRING
default "arm1176jzf-s" if EMBTK_ARCH_ARM_FAMILY_ARM11_ARM1176JZF-S
default "mpcore" if EMBTK_ARCH_ARM_FAMILY_ARM11_MPCORE
default "cortex-a5" if EMBTK_ARCH_ARM_FAMILY_CORTEX_CORTEX-A5
+ default "cortex-a7" if EMBTK_ARCH_ARM_FAMILY_CORTEX_CORTEX-A7
default "cortex-a8" if EMBTK_ARCH_ARM_FAMILY_CORTEX_CORTEX-A8
default "cortex-a9" if EMBTK_ARCH_ARM_FAMILY_CORTEX_CORTEX-A9
default "cortex-a12" if EMBTK_ARCH_ARM_FAMILY_CORTEX_CORTEX-A12