diff mbox series

[yocto-autobuilder-helper] scripts/getproperties: Allow mixin-wrynose-linux-firmware to be missing

Message ID 20260901-contrib-mathieu-mixin-fix-master-v1-1-e78f631a3d84@bootlin.com
State New
Headers show
Series [yocto-autobuilder-helper] scripts/getproperties: Allow mixin-wrynose-linux-firmware to be missing | expand

Commit Message

Mathieu Dubois-Briand Sept. 1, 2026, 9:35 a.m. UTC
Repository is added in layerinfo.json, as it is needed for the wrynose
branch. It will not be used on other branches, as it is not in
NEEDREPOS, but also needs to be ignored here.

Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
---
 scripts/getproperties.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


---
base-commit: ff7149fe675bff1f57f4f46c0efc5dd5029ce001
change-id: 20260901-contrib-mathieu-mixin-fix-master-48865615e4f7

Best regards,
diff mbox series

Patch

diff --git a/scripts/getproperties.py b/scripts/getproperties.py
index 39930c55d8ac..90339e84ec85 100755
--- a/scripts/getproperties.py
+++ b/scripts/getproperties.py
@@ -56,7 +56,7 @@  for repo in sorted(repos.keys()):
     if not os.path.exists(layerpath):
         # layer may not be used by the build and hence not moved into final position
         layerpath = builddir + '/repos/' + repo
-    if not os.path.exists(layerpath) and repo in ['meta-security']:
+    if not os.path.exists(layerpath) and repo in ['meta-security', 'mixin-wrynose-linux-firmware']:
         # Repos is specified on the controller but not used in the helper config
         continue
     getrevs(jsonprops, layerpath, repo)