diff options
author | Hongxu Jia <hongxu.jia@windriver.com> | 2019-05-13 11:12:46 -0400 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2019-05-17 21:31:14 -0700 |
commit | 7d4450d373a297f246b8c3708fd7d2cafadd3ae9 (patch) | |
tree | d099b4f934d9b04685993ce6771b45e5c7ef16fc /meta/lib/oeqa/targetcontrol.py | |
parent | cf4d3230ac439118a2ad3c381bac38e11b3e14e8 (diff) | |
download | openembedded-core-7d4450d373a297f246b8c3708fd7d2cafadd3ae9.tar.gz openembedded-core-7d4450d373a297f246b8c3708fd7d2cafadd3ae9.tar.bz2 openembedded-core-7d4450d373a297f246b8c3708fd7d2cafadd3ae9.zip |
oeqa/targetcontrol.py: fix qemuparams not work in runqemu with launch_cmd
As runqemu with launch_cmd means directly run the command, don't need set
rootfs or env vars.
Since commit [a847dd7202 runqemu: Let qemuparams override default settings]
applied in oe-core, if launch_cmd contains "qemuparams='***'", it does not
work, which is overridden by latter qemuparams="-serial tcp:127.0.0.1" in
QemuRunner.launch();
So we set qemuparams as a parameter in runqemu, the fix makes it work
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta/lib/oeqa/targetcontrol.py')
-rw-r--r-- | meta/lib/oeqa/targetcontrol.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/targetcontrol.py b/meta/lib/oeqa/targetcontrol.py index 1868ad3206..b98b183504 100644 --- a/meta/lib/oeqa/targetcontrol.py +++ b/meta/lib/oeqa/targetcontrol.py @@ -159,7 +159,7 @@ class QemuTarget(BaseTarget): def start(self, params=None, ssh=True, extra_bootparams='', runqemuparams='', launch_cmd='', discard_writes=True): if launch_cmd: - start = self.runner.launch(get_ip=ssh, launch_cmd=launch_cmd) + start = self.runner.launch(get_ip=ssh, launch_cmd=launch_cmd, qemuparams=params) else: start = self.runner.start(params, get_ip=ssh, extra_bootparams=extra_bootparams, runqemuparams=runqemuparams, discard_writes=discard_writes) |