]> git.ipfire.org Git - ipfire-2.x.git/blobdiff - src/pakfire/lib/functions.pl
pakfire: switch 32bit arm to armv6l
[ipfire-2.x.git] / 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/) {