summaryrefslogtreecommitdiff
path: root/target/config/Config.in.cpu
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2015-03-23 03:13:16 -0500
committerWaldemar Brodkorb <wbx@openadk.org>2015-03-23 03:13:16 -0500
commit6cebe0b4795fd2d4f3b00b026286fe05c8366e67 (patch)
tree3181a4049f4be685b6d357620d68ff1937a888a0 /target/config/Config.in.cpu
parentefcca41dedb193f95ec581320d08a3e56b47d0ca (diff)
allow to select CPU flavour for toolchain building via env
Add a more generic way to define CPU flavours for Toolchain building. Add Cortex-A8 definition. Move Thumb symbol around.
Diffstat (limited to 'target/config/Config.in.cpu')
-rw-r--r--target/config/Config.in.cpu6
1 files changed, 6 insertions, 0 deletions
diff --git a/target/config/Config.in.cpu b/target/config/Config.in.cpu
index 15d1cc6e6..10909a12e 100644
--- a/target/config/Config.in.cpu
+++ b/target/config/Config.in.cpu
@@ -83,6 +83,11 @@ config ADK_CPU_CORTEX_A7
select ADK_TARGET_WITH_MMU
select ADK_TARGET_CPU_WITH_FPU_VFPV4
+config ADK_CPU_CORTEX_A8
+ bool
+ select ADK_TARGET_WITH_NPTL
+ select ADK_TARGET_WITH_MMU
+
config ADK_CPU_CORTEX_A9
bool
select ADK_TARGET_WITH_NPTL
@@ -302,6 +307,7 @@ config ADK_TARGET_GCC_CPU
default "arm926ej-s" if ADK_CPU_ARM926EJ_S
default "armv8-a" if ADK_CPU_ARMV8
default "cortex-a7" if ADK_CPU_CORTEX_A7
+ default "cortex-a8" if ADK_CPU_CORTEX_A8
default "cortex-a9" if ADK_CPU_CORTEX_A9
default "cortex-a53" if ADK_CPU_CORTEX_A53
default "cortex-a57" if ADK_CPU_CORTEX_A57