]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/commitdiff
make.sh: Default to armv5tel on armv7* build hosts
authorMichael Tremer <michael.tremer@ipfire.org>
Mon, 13 Nov 2017 21:56:27 +0000 (21:56 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Mon, 13 Nov 2017 21:56:27 +0000 (21:56 +0000)
We won't offer a native port to ARMv7 in the near future
and to default to an architecture that is working on these
machines, we select armv5tel as default

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
tools/make-functions

index b7e957e1856bc65c4ef4c91dff11686b7a76bf77..439298b3fd03171cfb32245db6c6f669c9c1b993 100644 (file)
@@ -176,11 +176,7 @@ configure_build_guess() {
                        echo "aarch64"
                        ;;
 
-               armv7*)
-                       echo "armv7hl"
-                       ;;
-
-               armv6*|armv5*)
+               armv7*|armv6*|armv5*)
                        echo "armv5tel"
                        ;;