diff options
-rw-r--r-- | etc/const_data.py | 4 | ||||
-rw-r--r-- | web/templates/faq.html | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/etc/const_data.py b/etc/const_data.py index 5684418..f3213da 100644 --- a/etc/const_data.py +++ b/etc/const_data.py @@ -7,11 +7,11 @@ class ConstData(object): arches = {} # 'all': None, 'fbsd': None, 'linux': None, 'exotic': None, 'prefix': None, 'common': None } # 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']) + 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['all'] = arches['linux'].union(arches['fbsd']).union(arches['prefix']) - arches['exotic'] = frozenset(['arm','mips','m68k','s390','sh']) + arches['exotic'] = frozenset(['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 60e589c..7293f83 100644 --- a/web/templates/faq.html +++ b/web/templates/faq.html @@ -156,8 +156,8 @@ <dd> Due to page width constraints, we have broken down the arch display as follows:<br /> - Common: alpha, amd64, hppa, ia64, ppc, ppc64, sparc, x86<br /> - Exotic: arm, mips, m68k, s390, sh, x86-fbsd, sparc-fbsd, ppc-macos<br /> + Common: alpha, amd64, arm, hppa, ia64, ppc, ppc64, sparc, x86<br /> + Exotic: 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. |