pakfire: switch 32bit arm to armv6l

Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
This commit is contained in:
Arne Fitzenreiter
2021-07-03 15:05:37 +00:00
parent 4b5df4c259
commit b16ac3ba76

View File

@@ -962,9 +962,9 @@ sub get_arch() {
# Append architecture
my ($sysname, $nodename, $release, $version, $machine) = POSIX::uname();
# We only support armv5tel for all 32 bit arches
if ($machine =~ m/armv[567]/) {
return "armv5tel";
# We only support armv6l for 32 bit arm
if ($machine =~ m/armv[67]/) {
return "armv6l";
# We only support i586 for 32 bit x86
} elsif ($machine =~ m/i[0-9]86/) {