diff options
author | Florian Fainelli <florian@openwrt.org> | 2014-11-24 06:33:13 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2014-11-24 06:33:13 +0000 |
commit | 688e48076b9d63fc68c03312418fc2516bdf8e33 (patch) | |
tree | 53de5a2d9c6ccd0c09aa57b2d3f29fd1bc05b599 /target | |
parent | 379d97d851dc8a95d44a8e2acd42ad4b42fb6ab5 (diff) | |
download | upstream-688e48076b9d63fc68c03312418fc2516bdf8e33.tar.gz upstream-688e48076b9d63fc68c03312418fc2516bdf8e33.tar.bz2 upstream-688e48076b9d63fc68c03312418fc2516bdf8e33.zip |
aarch64: add initial support
Add initial support for the AArch64 architecture
Signed-off-by: Florian Fainelli <florian@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@43353 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rw-r--r-- | target/Config.in | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/target/Config.in b/target/Config.in index 14dec6db4a..7380773d88 100644 --- a/target/Config.in +++ b/target/Config.in @@ -91,6 +91,15 @@ config ARCH_64BIT # Architecture selection +config aarch64 + select ARCH_64BIT + bool + +config aarch64_be + select ARCH_64BIT + select BIG_ENDIAN + bool + config arm bool @@ -175,6 +184,8 @@ config x86_64 config ARCH string + default "aarch64" if aarch64 + default "aarch64_be" if aarch64_be default "arm" if arm default "armeb" if armeb default "avr32" if avr32 |