summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--morphlib/__init__.py2
-rw-r--r--morphlib/util.py3
2 files changed, 3 insertions, 2 deletions
diff --git a/morphlib/__init__.py b/morphlib/__init__.py
index 0c928fd3..eae35dd6 100644
--- a/morphlib/__init__.py
+++ b/morphlib/__init__.py
@@ -39,7 +39,7 @@ __version__ = gitversion.version
# List of architectures that Morph supports
valid_archs = ['armv7l', 'armv7lhf', 'armv7b', 'testarch',
- 'x86_32', 'x86_64', 'ppc64']
+ 'x86_32', 'x86_64', 'ppc64', 'mips64']
class Error(cliapp.AppException):
diff --git a/morphlib/util.py b/morphlib/util.py
index 0c551296..53385547 100644
--- a/morphlib/util.py
+++ b/morphlib/util.py
@@ -439,7 +439,8 @@ def get_host_architecture(): # pragma: no cover
'i686': 'x86_32',
'armv7l': 'armv7l',
'armv7b': 'armv7b',
- 'ppc64': 'ppc64'
+ 'ppc64': 'ppc64',
+ 'mips64': 'mips64'
}
if machine not in table: