summaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2016-05-10 02:16:01 -0300
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2016-05-10 02:19:34 -0300
commit59e4850d2a0427b3598a66d612b1812a37d2e002 (patch)
tree5baa5999356df4ed4e8fa80a5db1af285f018176 /packages
parent24ed07fa64e56f7095083c5cc2d01890c6a80623 (diff)
Add armv7h support
Diffstat (limited to 'packages')
-rw-r--r--packages/views/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/views/__init__.py b/packages/views/__init__.py
index 6195e1f0..84ca37f2 100644
--- a/packages/views/__init__.py
+++ b/packages/views/__init__.py
@@ -109,11 +109,13 @@ def arch_differences(request):
# TODO: we have some hardcoded magic here with respect to the arches.
arch_a = Arch.objects.get(name=request.GET.get('arch_a', 'i686'))
arch_b = Arch.objects.get(name=request.GET.get('arch_b', 'x86_64'))
+ arch_c = Arch.objects.get(name=request.GET.get('arch_c', 'armv7h'))
differences = get_differences_info(arch_a, arch_b)
multilib_diffs = multilib_differences()
context = {
'arch_a': arch_a,
'arch_b': arch_b,
+ 'arch_c': arch_c,
'differences': differences,
'arches': Arch.objects.filter(agnostic=False),
'multilib_differences': multilib_diffs