diff mbox series

scripts/checklayer: Update to match bitbake changes

Message ID 20221208114927.2332109-1-richard.purdie@linuxfoundation.org
State Accepted, archived
Commit ef7677dc90fac089f8b9f6da301cca022ed7284c
Headers show
Series scripts/checklayer: Update to match bitbake changes | expand

Commit Message

Richard Purdie Dec. 8, 2022, 11:49 a.m. UTC
Bitbake additions for the addpylib API mean we need to update the parsing
function call to be clear we're parsing in configuration context.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
 scripts/lib/checklayer/__init__.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/scripts/lib/checklayer/__init__.py b/scripts/lib/checklayer/__init__.py
index aa946f3036c..78c74ca6ec3 100644
--- a/scripts/lib/checklayer/__init__.py
+++ b/scripts/lib/checklayer/__init__.py
@@ -43,7 +43,7 @@  def _get_layer_collections(layer_path, lconf=None, data=None):
 
     ldata.setVar('LAYERDIR', layer_path)
     try:
-        ldata = bb.parse.handle(lconf, ldata, include=True)
+        ldata = bb.parse.handle(lconf, ldata, include=True, baseconfig=True)
     except:
         raise RuntimeError("Parsing of layer.conf from layer: %s failed" % layer_path)
     ldata.expandVarref('LAYERDIR')