aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Feng <fenghua at phytium.com.cn>2013-12-14 11:47:38 +0800
committerVishal Bhoj <vishal.bhoj@linaro.org>2014-01-13 17:52:59 +0530
commitcbf7cbf3f29056b71c8e0402fcdc6e70a714cfd4 (patch)
treeaaccba7c1de162b834db255e9049f6d7e12e5430
parent4209af716e640327b1209b2c923656737f4f8d61 (diff)
arm64: MAKEALL, filter armv8 boards from LIST_arm
Signed-off-by: David Feng <fenghua at phytium.com.cn>
-rwxr-xr-xMAKEALL12
1 files changed, 11 insertions, 1 deletions
diff --git a/MAKEALL b/MAKEALL
index a74f0fcea..562071a03 100755
--- a/MAKEALL
+++ b/MAKEALL
@@ -381,6 +381,12 @@ LIST_ARM11="$(targets_by_cpu arm1136) \
LIST_ARMV7="$(targets_by_cpu armv7)"
#########################################################################
+## ARMV8 Systems
+#########################################################################
+
+LIST_ARMV8="$(targets_by_cpu armv8)"
+
+#########################################################################
## AT91 Systems
#########################################################################
@@ -404,7 +410,11 @@ LIST_spear="$(targets_by_soc spear)"
## ARM groups
#########################################################################
-LIST_arm="$(targets_by_arch arm)"
+LIST_arm="$(targets_by_arch arm | \
+ for ARMV8_TARGET in $LIST_ARMV8; \
+ do sed "/$ARMV8_TARGET/d"; \
+ done) \
+"
#########################################################################
## MIPS Systems (default = big endian)