summaryrefslogtreecommitdiff
path: root/morphlib/__init__.py
diff options
context:
space:
mode:
authorJavier Jardón <javier.jardon@codethink.co.uk>2015-04-22 19:29:56 +0100
committerJavier Jardón <jjardon@gnome.org>2015-04-28 14:09:07 +0100
commit154a760fb884cee14c2604b8bfbe52b0e7c0d4b1 (patch)
tree46e97e44614352f90139db557432a8fcc76b43c7 /morphlib/__init__.py
parentfa5c470ad5dd3a3416217363983eb3795ef53c79 (diff)
downloadmorph-154a760fb884cee14c2604b8bfbe52b0e7c0d4b1.tar.gz
Add armv5l to list of valid architectures
Also add support to allow building compatible architectures on armv7 machines, as per the rationale in the comment in _validate_architecture(). Change-Id: Ie0fe4002523f1f92f576bac8b654d4ea6fad5cf2
Diffstat (limited to 'morphlib/__init__.py')
-rw-r--r--morphlib/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/morphlib/__init__.py b/morphlib/__init__.py
index 0c9284d8..90cc3d80 100644
--- a/morphlib/__init__.py
+++ b/morphlib/__init__.py
@@ -37,7 +37,7 @@ __version__ = gitversion.version
# List of architectures that Morph supports
-valid_archs = ['armv7l', 'armv7lhf', 'armv7b', 'testarch', 'x86_32',
+valid_archs = ['armv5l', 'armv7l', 'armv7lhf', 'armv7b', 'testarch', 'x86_32',
'x86_64', 'ppc64', 'armv8l64', 'armv8b64', 'mips32l',
'mips32b', 'mips64l', 'mips64b']