[bitbake-devel] [PATCH] toaster: set pokydirname in local build

Olaf Mandel o.mandel at menlosystems.com
Wed Aug 30 12:24:06 UTC 2017


If no external layers are defined, pokydirname was not set: rectify
this by taking the be.sourcedir as the pokydirname if possible.

Signed-off-by: Olaf Mandel <o.mandel at menlosystems.com>
---
 lib/toaster/bldcontrol/localhostbecontroller.py | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/lib/toaster/bldcontrol/localhostbecontroller.py b/lib/toaster/bldcontrol/localhostbecontroller.py
index 62e62fe1..358cce4d 100644
--- a/lib/toaster/bldcontrol/localhostbecontroller.py
+++ b/lib/toaster/bldcontrol/localhostbecontroller.py
@@ -200,6 +200,10 @@ class LocalhostBEController(BuildEnvironmentController):
 
         logger.debug("localhostbecontroller: current layer list %s " % pformat(layerlist))
 
+        if self.pokydirname is None and os.path.exists(os.path.join(self.be.sourcedir, "oe-init-build-env")):
+            logger.debug("localhostbecontroller: selected poky dir name %s" % self.be.sourcedir)
+            self.pokydirname = self.be.sourcedir
+
         # 5. create custom layer and add custom recipes to it
         for target in targets:
             try:
-- 
2.11.0




More information about the bitbake-devel mailing list