diff options
author | Ben Luck <ben+qa@advancedtelematic.com> | 2018-09-04 14:21:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-04 14:21:15 +0200 |
commit | 15305e9bf798a3fbeba46150df730d3aaf6ce058 (patch) | |
tree | 1f73f0bfa53884803729f53cbaaed9096956086c /scripts/qemucommand.py | |
parent | f00e6ac0a91eeb54b1e6039552eb038853bdcc1e (diff) | |
parent | 33ec42b4020ff53b46043531a6772c7258b6b34f (diff) | |
download | meta-updater-15305e9bf798a3fbeba46150df730d3aaf6ce058.tar.gz |
Merge pull request #377 from advancedtelematic/bugfix/lshw-aktualizr-etc-rocko
Bugfix/lshw aktualizr etc rocko
@patrickvacek
Looks good to me :)
Diffstat (limited to 'scripts/qemucommand.py')
-rw-r--r-- | scripts/qemucommand.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/qemucommand.py b/scripts/qemucommand.py index 4918314..86362f7 100644 --- a/scripts/qemucommand.py +++ b/scripts/qemucommand.py | |||
@@ -115,7 +115,7 @@ class QemuCommand(object): | |||
115 | else: | 115 | else: |
116 | cmdline.append('-nographic') | 116 | cmdline.append('-nographic') |
117 | if self.kvm: | 117 | if self.kvm: |
118 | cmdline.append('-enable-kvm') | 118 | cmdline += ['-enable-kvm', '-cpu', 'host'] |
119 | else: | 119 | else: |
120 | cmdline += ['-cpu', 'Haswell'] | 120 | cmdline += ['-cpu', 'Haswell'] |
121 | if self.overlay: | 121 | if self.overlay: |