[oe-commits] [openembedded-core] 08/10: testimage: Add support for slirp

git at git.openembedded.org git at git.openembedded.org
Tue Nov 13 23:03:26 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 ad5ef9ca727da3c03ac4036d49d2feff3937ba27
Author: Yeoh Ee Peng <ee.peng.yeoh at intel.com>
AuthorDate: Tue Nov 13 17:32:57 2018 +0800

    testimage: Add support for slirp
    
    Enable testimage to support qemu slirp. Configure
    "QEMU_USE_SLIRP" variable to enable slirp.
    
    [YOCTO#10713]
    
    Signed-off-by: Yeoh Ee Peng <ee.peng.yeoh at intel.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/testimage.bbclass | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/meta/classes/testimage.bbclass b/meta/classes/testimage.bbclass
index 914c9b3..94f3300 100644
--- a/meta/classes/testimage.bbclass
+++ b/meta/classes/testimage.bbclass
@@ -238,6 +238,10 @@ def testimage_main(d):
     else:
         kvm = False
 
+    slirp = False
+    if d.getVar("QEMU_USE_SLIRP"):
+        slirp = True
+
     # TODO: We use the current implementatin of qemu runner because of
     # time constrains, qemu runner really needs a refactor too.
     target_kwargs = { 'machine'     : machine,
@@ -249,6 +253,7 @@ def testimage_main(d):
                       'boottime'    : boottime,
                       'bootlog'     : bootlog,
                       'kvm'         : kvm,
+                      'slirp'       : slirp,
                     }
 
     # TODO: Currently BBPATH is needed for custom loading of targets.

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


More information about the Openembedded-commits mailing list