summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/targetcontrol.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/targetcontrol.py')
-rw-r--r--meta/lib/oeqa/targetcontrol.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oeqa/targetcontrol.py b/meta/lib/oeqa/targetcontrol.py
index c3aeb221dd..3255e3a5c6 100644
--- a/meta/lib/oeqa/targetcontrol.py
+++ b/meta/lib/oeqa/targetcontrol.py
@@ -183,11 +183,11 @@ class QemuTarget(BaseTarget):
183 logger.info("Qemu log file: %s" % self.qemulog) 183 logger.info("Qemu log file: %s" % self.qemulog)
184 super(QemuTarget, self).deploy() 184 super(QemuTarget, self).deploy()
185 185
186 def start(self, params=None, ssh=True, extra_bootparams='', runqemuparams='', launch_cmd=''): 186 def start(self, params=None, ssh=True, extra_bootparams='', runqemuparams='', launch_cmd='', discard_writes=True):
187 if launch_cmd: 187 if launch_cmd:
188 start = self.runner.launch(get_ip=ssh, launch_cmd=launch_cmd) 188 start = self.runner.launch(get_ip=ssh, launch_cmd=launch_cmd)
189 else: 189 else:
190 start = self.runner.start(params, get_ip=ssh, extra_bootparams=extra_bootparams, runqemuparams=runqemuparams) 190 start = self.runner.start(params, get_ip=ssh, extra_bootparams=extra_bootparams, runqemuparams=runqemuparams, discard_writes=discard_writes)
191 191
192 if start: 192 if start:
193 if ssh: 193 if ssh: