make.sh: Default to armv5tel on armv7* build hosts

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>
This commit is contained in:
Michael Tremer
2017-11-13 21:56:27 +00:00
parent 32e6d3e320
commit 5a4fb99e8a

View File

@@ -176,11 +176,7 @@ configure_build_guess() {
echo "aarch64"
;;
armv7*)
echo "armv7hl"
;;
armv6*|armv5*)
armv7*|armv6*|armv5*)
echo "armv5tel"
;;