]> git.ipfire.org Git - people/mfischer/ipfire-2.x.git/commitdiff
pakfire: switch 32bit arm to armv6l
authorArne Fitzenreiter <arne_f@ipfire.org>
Sat, 3 Jul 2021 15:05:37 +0000 (15:05 +0000)
committerArne Fitzenreiter <arne_f@ipfire.org>
Mon, 5 Jul 2021 05:42:40 +0000 (07:42 +0200)
Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
src/pakfire/lib/functions.pl

index f9a19b60d8206bf0433ab3104262a1acae4893f3..f46c9acc138032301df5cffa0865f34deb6b43c6 100644 (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/) {