diff options
author | Mike Rushton <mike.rushton@canonical.com> | 2015-07-09 17:24:43 -0400 |
---|---|---|
committer | Mike Rushton <mike.rushton@canonical.com> | 2015-07-09 17:24:43 -0400 |
commit | a012cdbfa17fecbfd3a70af82ec0f0b7224a86c1 (patch) | |
tree | b4cb40f2a4196efc31d9018768e19aaa40e32f0a | |
parent | fc608fc1769b3ee4b54d8ed9f9683770c8a7f7ea (diff) |
providers:checkbox: add ppc64el profile
Fixes: https://bugs.launchpad.net/plainbox-provider-checkbox/+bug/1473172
-rwxr-xr-x | bin/virtualization | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/bin/virtualization b/bin/virtualization index dbd8c9d..f1d043c 100755 --- a/bin/virtualization +++ b/bin/virtualization @@ -105,6 +105,15 @@ QEMU_ARCH_CONFIG = { '-machine', 'accel=kvm:tcg', ], }, + 'ppc64el': { + 'cloudimg_type': CLOUD_IMAGE_TYPE_DISK, + 'cloudimg_arch': 'ppc64el', + 'qemu_bin': 'qemu-system-ppc64', + 'qemu_disk_type': QEMU_DISK_TYPE_VIRTIO, + 'qemu_extra_args': [ + '-machine', 'prep', + ], + }, } class QemuRunner(object): |