diff mbox series

devtool: actually pass down whether we are in fixed setup

Message ID 20250113164641.810415-1-chris.laplante@agilent.com
State New
Headers show
Series devtool: actually pass down whether we are in fixed setup | expand

Commit Message

chris.laplante@agilent.com Jan. 13, 2025, 4:46 p.m. UTC
From: Chris Laplante <chris.laplante@agilent.com>

This should fix https://valkyrie.yoctoproject.org/#/builders/80/builds/725/steps/13/logs/stdio

Signed-off-by: Chris Laplante <chris.laplante@agilent.com>
---
 scripts/devtool | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/scripts/devtool b/scripts/devtool
index ebd3e4c11b..39cebec0d8 100755
--- a/scripts/devtool
+++ b/scripts/devtool
@@ -299,7 +299,7 @@  def main():
     # Search BBPATH first to allow layers to override plugins in scripts_path
     pluginpaths = [os.path.join(path, 'lib', 'devtool') for path in global_args.bbpath.split(':') + [scripts_path]]
 
-    context = Context(fixed_setup=False, config=config, pluginpaths=pluginpaths)
+    context = Context(fixed_setup=is_fixed_setup, config=config, pluginpaths=pluginpaths)
 
     plugins = []
     for pluginpath in pluginpaths: