[oe-commits] [openembedded-core] 04/09: oeqa/targetcontrol.py: fix qemuparams not work in runqemu with launch_cmd

git at git.openembedded.org git at git.openembedded.org
Mon May 13 19:52:50 UTC 2019


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 369505765e2d97b4b0def4c2fd09acf8effc243d
Author: Hongxu Jia <hongxu.jia at windriver.com>
AuthorDate: Mon May 13 11:12:46 2019 -0400

    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 at windriver.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/lib/oeqa/targetcontrol.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/lib/oeqa/targetcontrol.py b/meta/lib/oeqa/targetcontrol.py
index c742d47..15e617c 100644
--- a/meta/lib/oeqa/targetcontrol.py
+++ b/meta/lib/oeqa/targetcontrol.py
@@ -161,7 +161,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)
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list