diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2014-01-18 11:31:05 -0800 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2014-01-18 11:31:05 -0800 |
commit | fb5fe6e457623bf7b24106bd149054f4505dbc17 (patch) | |
tree | 5c6bc98dfc3c29336e6193ccf3644f1a732dea8f | |
parent | Change to https for google's jsapi. (diff) | |
download | packages-3-fb5fe6e457623bf7b24106bd149054f4505dbc17.tar.gz packages-3-fb5fe6e457623bf7b24106bd149054f4505dbc17.tar.bz2 packages-3-fb5fe6e457623bf7b24106bd149054f4505dbc17.zip |
Handle more arches.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
-rw-r--r-- | etc/const_data.py | 4 | ||||
-rw-r--r-- | web/templates/faq.html | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/etc/const_data.py b/etc/const_data.py index f3213da..9c7132d 100644 --- a/etc/const_data.py +++ b/etc/const_data.py @@ -8,10 +8,10 @@ class ConstData(object): # This should match /usr/portage/profiles/arch.list arches['fbsd'] = frozenset([(arch+'-fbsd') for arch in ['amd64','sparc','x86']]) arches['prefix'] = frozenset([ 'ppc-aix', 'x86-freebsd', 'x64-freebsd', 'ia64-hpux', 'hppa-hpux', 'x86-interix', 'mips-irix', 'amd64-linux', 'arm-linux', 'ia64-linux', 'x86-linux', 'ppc-macos', 'x86-macos', 'x64-macos', 'm68k-mint', 'x86-netbsd', 'ppc-openbsd', 'x86-openbsd', 'x64-openbsd', 'sparc-solaris', 'sparc64-solaris', 'x64-solaris', 'x86-solaris', 'x86-winnt', 'x86-cygwin']) - arches['linux'] = frozenset(['alpha', 'amd64', 'arm', 'hppa', 'ia64', 'm68k', 'mips', 'ppc', 'ppc64', 's390', 'sh', 'sparc', 'x86']) + arches['linux'] = frozenset(['alpha', 'amd64', 'arm', 'arm64', 'hppa', 'ia64', 'm68k', 'mips', 'ppc', 'ppc64', 's390', 'sh', 'sparc', 'x86']) arches['all'] = arches['linux'].union(arches['fbsd']).union(arches['prefix']) - arches['exotic'] = frozenset(['mips','m68k','s390','sh']) + arches['exotic'] = frozenset(['arm64', 'mips', 'm68k', 's390', 'sh']) arches['common'] = arches['linux'].difference(arches['exotic']) # vim:ts=4 et ft=python: diff --git a/web/templates/faq.html b/web/templates/faq.html index 7293f83..a088da2 100644 --- a/web/templates/faq.html +++ b/web/templates/faq.html @@ -157,7 +157,7 @@ Due to page width constraints, we have broken down the arch display as follows:<br /> Common: alpha, amd64, arm, hppa, ia64, ppc, ppc64, sparc, x86<br /> - Exotic: mips, m68k, s390, sh, (all of prefix), (all of fbsd)<br /> + Exotic: arm64, mips, m68k, s390, sh, (all of prefix), (all of fbsd)<br /> All: Both sets of arches<br /> If you want to switch between these lists easily, look for the little C-E-A to the right of the 'Arches' legend. |