[oe-commits] [openembedded-core] 02/38: runqemu: check qbconfload before running bitbake

git at git.openembedded.org git at git.openembedded.org
Thu Jul 27 08:31:35 UTC 2017


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 89e97033a8a27a695567c321ed0ebf17f23f8d9b
Author: Robert Yang <liezhi.yang at windriver.com>
AuthorDate: Thu Jul 13 00:28:46 2017 -0700

    runqemu: check qbconfload before running bitbake
    
    If qbconfload (.qemuboot.conf is found) is present, we can get
    DEPLOY_DIR_IMAGE from it rather than "bitbake -e".
    
    Signed-off-by: Robert Yang <liezhi.yang at windriver.com>
---
 scripts/runqemu | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/runqemu b/scripts/runqemu
index 7188bd7..781814a 100755
--- a/scripts/runqemu
+++ b/scripts/runqemu
@@ -466,7 +466,7 @@ class BaseConfig(object):
 
             self.check_arg_machine(unknown_arg)
 
-        if not self.get('DEPLOY_DIR_IMAGE'):
+        if not (self.get('DEPLOY_DIR_IMAGE') or self.qbconfload):
             self.load_bitbake_env()
             s = re.search('^DEPLOY_DIR_IMAGE="(.*)"', self.bitbake_e, re.M)
             if s:

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


More information about the Openembedded-commits mailing list