summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2016-03-19 19:05:05 +0900
committerTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2016-03-20 18:27:06 +0900
commit9b1f14f01a59df4a6532ce4bf9a7450890d8992c (patch)
tree577d01bb8464109f88c11059633f8e7b39f6048d
parent0a0da35e1a693fc909d1628f5e81cb3b2693c057 (diff)
downloaddefinitions-9b1f14f01a59df4a6532ce4bf9a7450890d8992c.tar.gz
mesa.morph: Make the conditional configure apply to all arm arches
Before we were only specifically casing armv7lhf, use the same configuration for arm* instead, this causes the mesa build to pass on armv5l Change-Id: I9dda3c771270254e1c2c44857b6275af2cad3de2
-rw-r--r--strata/mesa-common/mesa.morph2
1 files changed, 1 insertions, 1 deletions
diff --git a/strata/mesa-common/mesa.morph b/strata/mesa-common/mesa.morph
index ebcf0a78..41a962b4 100644
--- a/strata/mesa-common/mesa.morph
+++ b/strata/mesa-common/mesa.morph
@@ -5,7 +5,7 @@ configure-commands:
- |
cpu=$(echo $TARGET | cut -d '-' -f 1)
case "$cpu" in
- armv7lhf)
+ arm*)
DRIDRIVERS=no
GALLIUMDRIVERS=nouveau,freedreno,svga,swrast,vc4
;;