[oe-commits] [openembedded-core] 05/10: runtime/context: qemu do not need ip and server ip inputs from external

git at git.openembedded.org git at git.openembedded.org
Tue Nov 13 23:03:23 UTC 2018


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 283bccadd38c83bb0c2c6a1c59a97dfc90b83416
Author: Yeoh Ee Peng <ee.peng.yeoh at intel.com>
AuthorDate: Tue Nov 13 17:32:54 2018 +0800

    runtime/context: qemu do not need ip and server ip inputs from external
    
    Qemu do not use the ip and server ip inputs from external. It will
    assign ip and server ip after initialize qemu.
    
    Signed-off-by: Yeoh Ee Peng <ee.peng.yeoh at intel.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/lib/oeqa/runtime/context.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/lib/oeqa/runtime/context.py b/meta/lib/oeqa/runtime/context.py
index a7f3823..fcb8de4 100644
--- a/meta/lib/oeqa/runtime/context.py
+++ b/meta/lib/oeqa/runtime/context.py
@@ -101,7 +101,7 @@ class OERuntimeTestContextExecutor(OETestContextExecutor):
         if target_type == 'simpleremote':
             target = OESSHTarget(logger, target_ip, server_ip, **kwargs)
         elif target_type == 'qemu':
-            target = OEQemuTarget(logger, target_ip, server_ip, **kwargs)
+            target = OEQemuTarget(logger, None, None, **kwargs)
         else:
             # XXX: This code uses the old naming convention for controllers and
             # targets, the idea it is to leave just targets as the controller

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


More information about the Openembedded-commits mailing list