diff mbox series

[yocto-autobuilder-helper,master-next,v3,3/3] getproperties: Add property to indicate we use bitbake-setup

Message ID 20251007-contrib-mathieu-build_props-v3-3-0263f52bd682@bootlin.com
State New
Headers show
Series run-config: Export some build properties | expand

Commit Message

Mathieu Dubois-Briand Oct. 7, 2025, 2:37 p.m. UTC
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
---
 scripts/getproperties.py | 2 ++
 1 file changed, 2 insertions(+)
diff mbox series

Patch

diff --git a/scripts/getproperties.py b/scripts/getproperties.py
index ce1bc2fb45a8fce463fd2e19249833075b9d975b..4cd00684a48c23abb5e6602c485f93cbeb4bd30a 100755
--- a/scripts/getproperties.py
+++ b/scripts/getproperties.py
@@ -72,6 +72,8 @@  buildid = hashlib.sha1(buildid.encode("utf-8")).hexdigest()
 
 jsonprops['yp_build_revision'] = buildid
 
+jsonprops['use_bitbake_setup'] = True
+
 ourconfig = utils.loadconfig()
 exported_properties = ['DISTRO', 'MACHINE', 'SDKMACHINE', 'PACKAGE_CLASSES']
 if targetname in ourconfig['overrides']: