aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Lutomirski <luto@kernel.org>2015-12-03 18:43:11 -0800
committerAndy Lutomirski <luto@kernel.org>2015-12-03 19:34:49 -0800
commitc48d8fed23a76069cad2689e614a6659f4fd21e3 (patch)
tree7665f1a9e8a5daca8625ff72e9f153e3fc1828ee
parent699d3acb7d1aa7b75487d597166b8375c4ef3923 (diff)
downloadvirtme-c48d8fed23a76069cad2689e614a6659f4fd21e3.tar.gz
architectures: For x86, use ARCH=x86
We can, and there's no need to treat x86 as special. Signed-off-by: Andy Lutomirski <luto@kernel.org>
-rw-r--r--virtme/architectures.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/virtme/architectures.py b/virtme/architectures.py
index 4131441..b6b9315 100644
--- a/virtme/architectures.py
+++ b/virtme/architectures.py
@@ -58,6 +58,11 @@ class Arch_unknown(Arch):
return Arch.qemuargs(is_native)
class Arch_x86(Arch):
+ def __init__(self, name):
+ Arch.__init__(self, name)
+
+ self.linuxname = 'x86'
+
@staticmethod
def qemuargs(is_native):
ret = Arch.qemuargs(is_native)