summaryrefslogtreecommitdiff
path: root/morphlib/util.py
diff options
context:
space:
mode:
authorJosh Malkinson <josh.malkinson@codethink.co.uk>2015-01-21 15:00:06 +0000
committerSam Thursfield <sam.thursfield@codethink.co.uk>2015-01-21 15:33:58 +0000
commit65a67ef505c31f7b228376d942d3ed2272c73d68 (patch)
tree2359693a0cac5e6d6476fb4a031ee6797460dbce /morphlib/util.py
parent1cafde326cd1858980a5a13aa685b624792a8514 (diff)
downloadmorph-65a67ef505c31f7b228376d942d3ed2272c73d68.tar.gz
Add armv8l64 and armv8b64 to list of valid architectures
Diffstat (limited to 'morphlib/util.py')
-rw-r--r--morphlib/util.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/morphlib/util.py b/morphlib/util.py
index 63e85b6c..ad9d7cd9 100644
--- a/morphlib/util.py
+++ b/morphlib/util.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2011-2014 Codethink Limited
+# Copyright (C) 2011-2015 Codethink Limited
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -467,8 +467,8 @@ def get_host_architecture(): # pragma: no cover
'armv7b': 'armv7b',
'armv8l': 'armv8l',
'armv8b': 'armv8b',
- 'aarch64': 'aarch64',
- 'aarch64b': 'aarch64b',
+ 'aarch64': 'armv8l64',
+ 'aarch64b': 'armv8b64',
'ppc64': 'ppc64'
}