]> git.ipfire.org Git - ipfire.org.git/blobdiff - src/backend/fireinfo.py
fireinfo: Filter out more architectures
[ipfire.org.git] / src / backend / fireinfo.py
index d7f78456b9119f97523979168e3f510947069ac2..33def9024ae51261390cd242e70bf4dd532a7e55 100644 (file)
@@ -1421,7 +1421,7 @@ class ProfileParser(Object):
                # Remove the arch bit
                if release:
                        r = [e for e in release.split() if e]
-                       for s in ("(x86_64)", "(i586)", "(armv5tel)"):
+                       for s in ("(x86_64)", "(aarch64)", "(i586)", "(armv6l)", "(armv5tel)", "(riscv64)"):
                                try:
                                        r.remove(s)
                                        break