~roadmr/checkbox/1311462-remove-n-requirement

« back to all changes in this revision

Viewing changes to providers/plainbox-provider-checkbox/bin/virtualization

  • Committer: Daniel Manrique
  • Author(s): dann frazier
  • Date: 2014-05-01 15:01:56 UTC
  • mfrom: (2966.2.1 checkbox.working)
  • Revision ID: daniel_manrique-20140501150156-y6sbiljf4i97bnn5
"automatic merge by tarmac [r=zkrynicki][bug=][author=dannf]"

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
QEMU_DISK_TYPE = Enum('QEMU_DISK_TYPE', 'SD VIRTIO VIRTIO_BLK')
61
61
 
62
62
QEMU_ARCH_CONFIG = {
 
63
    'arm64': {
 
64
        'cloudimg_type': CLOUD_IMAGE_TYPE.TAR,
 
65
        'cloudimg_arch': 'arm64',
 
66
        'qemu_bin': 'qemu-system-aarch64',
 
67
        'qemu_disk_type': QEMU_DISK_TYPE.VIRTIO_BLK,
 
68
        'qemu_extra_args': [
 
69
            '-machine', 'virt',
 
70
            '-cpu', 'host',
 
71
            '-enable-kvm',
 
72
            '-serial', 'stdio',
 
73
        ],
 
74
    },
63
75
    'armhf': {
64
76
        'cloudimg_type': CLOUD_IMAGE_TYPE.TAR,
65
77
        'cloudimg_arch': 'armhf',