diff options
author | Patrick Vacek <patrickvacek@gmail.com> | 2018-09-03 17:10:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-03 17:10:25 +0200 |
commit | b98113c72e647ac8631e5c642cfab95a9477c5dd (patch) | |
tree | b9895d64923f9f3b4b89acc6a3dc47207e5defbd /scripts/qemucommand.py | |
parent | e0d01df248653ea3b449d532c33404027f364489 (diff) | |
parent | a4e52e2f01cc1e942e2ed0f04676adc4128af1f9 (diff) | |
download | meta-updater-b98113c72e647ac8631e5c642cfab95a9477c5dd.tar.gz |
Merge pull request #378 from advancedtelematic/bugfix/lshw-libp11-openssl-etc-sumo
Bugfix/lshw libp11 openssl etc sumo
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: |