From: Arne Fitzenreiter Date: Sat, 3 Jul 2021 15:05:37 +0000 (+0000) Subject: pakfire: switch 32bit arm to armv6l X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b16ac3ba765256e774a2af00e41199633bfd4fd2;p=people%2Fms%2Fipfire-2.x.git pakfire: switch 32bit arm to armv6l Signed-off-by: Arne Fitzenreiter --- diff --git a/src/pakfire/lib/functions.pl b/src/pakfire/lib/functions.pl index f9a19b60d8..f46c9acc13 100644 --- a/src/pakfire/lib/functions.pl +++ b/src/pakfire/lib/functions.pl @@ -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/) {