* [PATCH v2 0/2] bitbake-setup: update: add a --update-bb-conf option
@ 2025-11-17 8:21 Antonin Godard
2025-11-17 8:21 ` [PATCH v2 1/2] " Antonin Godard
2025-11-17 8:21 ` [PATCH v2 2/2] bitbake-selftest: setup: add test for --update-bb-conf=no Antonin Godard
0 siblings, 2 replies; 5+ messages in thread
From: Antonin Godard @ 2025-11-17 8:21 UTC (permalink / raw)
To: bitbake-devel; +Cc: Thomas Petazzoni, docs, Antonin Godard
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
---
Changes in v2:
- As suggested by Alex, Rework the logic to apply upstream configuration
changes first, then print the diff and ask the user whether to apply
or not (default behavior).
- Behavior can still be overridden with --update-bb-conf='yes/no/prompt'
- Link to v1: https://lore.kernel.org/r/20251114-bitbake-setup-conf-updates-v1-0-990583d8251b@bootlin.com
---
Antonin Godard (2):
bitbake-setup: update: add a --update-bb-conf option
bitbake-selftest: setup: add test for --update-bb-conf=no
bin/bitbake-setup | 98 ++++++++++++++--------
.../bitbake-user-manual-environment-setup.rst | 8 ++
lib/bb/tests/setup.py | 40 ++++++++-
3 files changed, 108 insertions(+), 38 deletions(-)
---
base-commit: ae9a70c919f14ca323eb7c03ef9080fd0bd52c29
change-id: 20251114-bitbake-setup-conf-updates-91ae4efa86ae
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH v2 1/2] bitbake-setup: update: add a --update-bb-conf option
2025-11-17 8:21 [PATCH v2 0/2] bitbake-setup: update: add a --update-bb-conf option Antonin Godard
@ 2025-11-17 8:21 ` Antonin Godard
2025-11-17 11:52 ` [docs] " Alexander Kanavin
2025-11-17 8:21 ` [PATCH v2 2/2] bitbake-selftest: setup: add test for --update-bb-conf=no Antonin Godard
1 sibling, 1 reply; 5+ messages in thread
From: Antonin Godard @ 2025-11-17 8:21 UTC (permalink / raw)
To: bitbake-devel; +Cc: Thomas Petazzoni, docs, Antonin Godard
Add a --update-bb-conf option that can be used to choose whether to
update the BitBake configuration files (local.conf, bblayers.conf, etc.)
in the conf/ directory.
The argument can take up to three values:
- ``prompt`` (default): ask the user whether to update.
- ``yes``: update the configuration files.
- ``no``: don't update the configuration files.
A diff is printed when changes in configuration are detected.
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
---
bin/bitbake-setup | 98 ++++++++++++++--------
.../bitbake-user-manual-environment-setup.rst | 8 ++
lib/bb/tests/setup.py | 6 +-
3 files changed, 74 insertions(+), 38 deletions(-)
diff --git a/bin/bitbake-setup b/bin/bitbake-setup
index d0a932a6b2..d9cd632d1a 100755
--- a/bin/bitbake-setup
+++ b/bin/bitbake-setup
@@ -134,7 +134,7 @@ def checkout_layers(layers, layerdir, d):
return layers_fixed_revisions
-def setup_bitbake_build(bitbake_config, layerdir, setupdir, thisdir):
+def setup_bitbake_build(bitbake_config, layerdir, setupdir, thisdir, update_bb_conf):
def _setup_build_conf(layers, filerelative_layers, build_conf_dir):
os.makedirs(build_conf_dir)
layers_s = []
@@ -224,9 +224,13 @@ def setup_bitbake_build(bitbake_config, layerdir, setupdir, thisdir):
raise Exception("Cannot complete setting up a bitbake build directory from OpenEmbedded template '{}' as oe-setup-build was not found in any layers; please use oe-init-build-env manually.".format(template))
bitbake_confdir = os.path.join(bitbake_builddir, 'conf')
- backup_bitbake_confdir = bitbake_confdir + "-backup.{}".format(time.strftime("%Y%m%d%H%M%S"))
+ timestamp = time.strftime("%Y%m%d%H%M%S")
+ backup_bitbake_confdir = os.path.join(bitbake_builddir, 'conf-backup.{}'.format(timestamp))
+ upstream_bitbake_confdir = os.path.join(bitbake_builddir, 'conf-upstream.{}'.format(timestamp))
+
if os.path.exists(bitbake_confdir):
os.rename(bitbake_confdir, backup_bitbake_confdir)
+ print("Existing bitbake configuration directory renamed to {}".format(backup_bitbake_confdir))
if layers:
filerelative_layers = bitbake_config.get("bb-layers-file-relative") or []
@@ -256,33 +260,56 @@ def setup_bitbake_build(bitbake_config, layerdir, setupdir, thisdir):
if fragments:
bb.process.run("{} -c '. {} && bitbake-config-build enable-fragment {}'".format(shell, init_script, " ".join(fragments)))
+ conf_diff = None
if os.path.exists(backup_bitbake_confdir):
- bitbake_config_diff = get_diff(backup_bitbake_confdir, bitbake_confdir)
- if bitbake_config_diff:
- print("Existing bitbake configuration directory renamed to {}".format(backup_bitbake_confdir))
- print("The bitbake configuration has changed:")
- print(bitbake_config_diff)
- else:
- shutil.rmtree(backup_bitbake_confdir)
-
- print("This bitbake configuration provides:\n {}\n".format(bitbake_config["description"]))
-
- readme = """{}\n\nAdditional information is in {} and {}\n
-Source the environment using '. {}' to run builds from the command line.
-The bitbake configuration files (local.conf, bblayers.conf and more) can be found in {}/conf
-""".format(
- bitbake_config["description"],
- os.path.join(bitbake_builddir,'conf/conf-summary.txt'),
- os.path.join(bitbake_builddir,'conf/conf-notes.txt'),
- init_script,
- bitbake_builddir
- )
- readme_file = os.path.join(bitbake_builddir, "README")
- with open(readme_file, 'w') as f:
- f.write(readme)
- print("Usage instructions and additional information are in\n {}\n".format(readme_file))
- print("The bitbake configuration files (local.conf, bblayers.conf and more) can be found in\n {}/conf\n".format(bitbake_builddir))
- print("To run builds, source the environment using\n . {}".format(init_script))
+ try:
+ conf_diff = bb.process.run(f'git diff --no-index "{backup_bitbake_confdir}" "{bitbake_confdir}"')[0]
+ except bb.process.ExecutionError as e:
+ if e.exitcode == 1:
+ conf_diff = e.stdout
+ else:
+ raise e
+
+ _extra_msg_info = " (--update-bb-conf=yes)"
+ if update_bb_conf == "no":
+ print('Ignoring upstream bitbake configuration changes (--update-bb-conf=no)')
+ print(f'Leaving the upstream configuration in {upstream_bitbake_confdir}')
+ os.rename(bitbake_confdir, upstream_bitbake_confdir)
+ os.rename(backup_bitbake_confdir, bitbake_confdir)
+ elif conf_diff:
+ print('Upstream bitbake configuration changes were found:')
+ print(conf_diff)
+ if update_bb_conf == "prompt":
+ y_or_n = input('Apply these changes to the current configuration? (y/N): ')
+ if y_or_n == 'y':
+ update_bb_conf = 'yes'
+ _extra_msg_info = ""
+ print(f'Leaving the previous configuration in {backup_bitbake_confdir}')
+ else:
+ print(f'Leaving the upstream configuration in {upstream_bitbake_confdir}')
+ os.rename(bitbake_confdir, upstream_bitbake_confdir)
+ os.rename(backup_bitbake_confdir, bitbake_confdir)
+
+ if update_bb_conf == "yes":
+ print(f"Applying upstream bitbake configuration changes{_extra_msg_info}")
+ print("This new bitbake configuration provides:\n {}\n".format(bitbake_config["description"]))
+
+ readme = """{}\n\nAdditional information is in {} and {}\n
+ Source the environment using '. {}' to run builds from the command line.
+ The bitbake configuration files (local.conf, bblayers.conf and more) can be found in {}/conf
+ """.format(
+ bitbake_config["description"],
+ os.path.join(bitbake_builddir,'conf/conf-summary.txt'),
+ os.path.join(bitbake_builddir,'conf/conf-notes.txt'),
+ init_script,
+ bitbake_builddir
+ )
+ readme_file = os.path.join(bitbake_builddir, "README")
+ with open(readme_file, 'w') as f:
+ f.write(readme)
+ print("Usage instructions and additional information are in\n {}\n".format(readme_file))
+ print("The bitbake configuration files (local.conf, bblayers.conf and more) can be found in\n {}/conf\n".format(bitbake_builddir))
+ print("To run builds, source the environment using\n . {}".format(init_script))
def get_registry_config(registry_path, id):
for root, dirs, files in os.walk(registry_path):
@@ -291,7 +318,7 @@ def get_registry_config(registry_path, id):
return os.path.join(root, f)
raise Exception("Unable to find {} in available configurations; use 'list' sub-command to see what is available".format(id))
-def update_build(config, confdir, setupdir, layerdir, d):
+def update_build(config, confdir, setupdir, layerdir, d, update_bb_conf="prompt"):
layer_config = copy.deepcopy(config["data"]["sources"])
layer_overrides = config["source-overrides"]["sources"]
for k,v in layer_overrides.items():
@@ -300,7 +327,7 @@ def update_build(config, confdir, setupdir, layerdir, d):
sources_fixed_revisions = checkout_layers(layer_config, layerdir, d)
bitbake_config = config["bitbake-config"]
thisdir = os.path.dirname(config["path"]) if config["type"] == 'local' else None
- setup_bitbake_build(bitbake_config, layerdir, setupdir, thisdir)
+ setup_bitbake_build(bitbake_config, layerdir, setupdir, thisdir, update_bb_conf)
write_sources_fixed_revisions(confdir, sources_fixed_revisions)
def int_input(allowed_values):
@@ -506,7 +533,7 @@ def init_config(top_dir, settings, args):
bb.event.register("bb.build.TaskProgress", handle_task_progress, data=d)
write_upstream_config(confdir, upstream_config)
- update_build(upstream_config, confdir, setupdir, layerdir, d)
+ update_build(upstream_config, confdir, setupdir, layerdir, d, update_bb_conf="yes")
commit_config(confdir)
bb.event.remove("bb.build.TaskProgress", None)
@@ -548,7 +575,7 @@ def are_layers_changed(layers, layerdir, d):
return changed
-def build_status(top_dir, settings, args, d, update=False):
+def build_status(top_dir, settings, args, d, update=False, update_bb_conf="prompt"):
setupdir = args.setup_dir
confdir = os.path.join(setupdir, "config")
@@ -569,20 +596,20 @@ def build_status(top_dir, settings, args, d, update=False):
print('\nConfiguration in {} has changed:\n{}'.format(setupdir, config_diff))
if update:
commit_config(confdir)
- update_build(new_upstream_config, confdir, setupdir, layerdir, d)
+ update_build(new_upstream_config, confdir, setupdir, layerdir, d, update_bb_conf=update_bb_conf)
else:
bb.process.run('git -C {} restore config-upstream.json'.format(confdir))
return
if are_layers_changed(current_upstream_config["data"]["sources"], layerdir, d):
if update:
- update_build(current_upstream_config, confdir, setupdir, layerdir, d)
+ update_build(current_upstream_config, confdir, setupdir, layerdir, d, update_bb_conf=update_bb_conf)
return
print("\nConfiguration in {} has not changed.".format(setupdir))
def build_update(top_dir, settings, args, d):
- build_status(top_dir, settings, args, d, update=True)
+ build_status(top_dir, settings, args, d, update=True, update_bb_conf=args.update_bb_conf)
def do_fetch(fetcher, dir):
# git fetcher simply dumps git output to stdout; in bitbake context that is redirected to temp/log.do_fetch
@@ -836,6 +863,7 @@ def main():
parser_update = subparsers.add_parser('update', help='Update a setup to be in sync with configuration')
add_setup_dir_arg(parser_update)
+ parser_update.add_argument('--update-bb-conf', choices=['prompt', 'yes', 'no'], default='prompt', help='Update bitbake configuration files (bblayers.conf, local.conf) (default: prompt)')
parser_update.set_defaults(func=build_update)
parser_install_buildtools = subparsers.add_parser('install-buildtools', help='Install buildtools which can help fulfil missing or incorrect dependencies on the host machine')
diff --git a/doc/bitbake-user-manual/bitbake-user-manual-environment-setup.rst b/doc/bitbake-user-manual/bitbake-user-manual-environment-setup.rst
index 3193952972..dd8d08877f 100644
--- a/doc/bitbake-user-manual/bitbake-user-manual-environment-setup.rst
+++ b/doc/bitbake-user-manual/bitbake-user-manual-environment-setup.rst
@@ -401,6 +401,14 @@ status of the :term:`Setup` before updating it.
In addition, the command can take the following arguments:
+- ``--update-bb-conf``: whether to update the :term:`BitBake Build`
+ configuration (``local.conf``, ``bblayers.conf``, etc.). This argument can
+ take up to three values:
+
+ - ``prompt`` (default): ask the user whether to update.
+ - ``yes``: update the configuration files.
+ - ``no``: don't update the configuration files.
+
- ``--setup-dir``: path to the :term:`Setup` to update. Not required if the
command is invoked from an initialized BitBake environment that contains
:term:`BBPATH`.
diff --git a/lib/bb/tests/setup.py b/lib/bb/tests/setup.py
index 73ba3b2bc8..18b560b93d 100644
--- a/lib/bb/tests/setup.py
+++ b/lib/bb/tests/setup.py
@@ -311,7 +311,7 @@ print("BBPATH is {{}}".format(os.environ["BBPATH"]))
os.environ['BBPATH'] = os.path.join(setuppath, 'build')
out = self.runbbsetup("status")
self.assertIn("Configuration in {} has not changed".format(setuppath), out[0])
- out = self.runbbsetup("update")
+ out = self.runbbsetup("update --update-bb-conf='yes'")
self.assertIn("Configuration in {} has not changed".format(setuppath), out[0])
# install buildtools
@@ -332,7 +332,7 @@ print("BBPATH is {{}}".format(os.environ["BBPATH"]))
os.environ['BBPATH'] = os.path.join(setuppath, 'build')
out = self.runbbsetup("status")
self.assertIn("Layer repository file://{} checked out into {}/layers/test-repo updated revision master from".format(self.testrepopath, setuppath), out[0])
- out = self.runbbsetup("update")
+ out = self.runbbsetup("update --update-bb-conf='yes'")
if c in ('gadget', 'gizmo'):
self.assertIn("Existing bitbake configuration directory renamed to {}/build/conf-backup.".format(setuppath), out[0])
self.assertIn('-{}+{}'.format(prev_test_file_content, test_file_content), out[0])
@@ -356,7 +356,7 @@ print("BBPATH is {{}}".format(os.environ["BBPATH"]))
out = self.runbbsetup("status")
self.assertIn("Configuration in {} has changed:".format(setuppath), out[0])
self.assertIn('- "rev": "master"\n+ "rev": "another-branch"', out[0])
- out = self.runbbsetup("update")
+ out = self.runbbsetup("update --update-bb-conf='yes'")
if c in ('gadget', 'gizmo'):
self.assertIn("Existing bitbake configuration directory renamed to {}/build/conf-backup.".format(setuppath), out[0])
self.assertIn('-{}+{}'.format(prev_test_file_content, test_file_content), out[0])
--
2.51.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH v2 2/2] bitbake-selftest: setup: add test for --update-bb-conf=no
2025-11-17 8:21 [PATCH v2 0/2] bitbake-setup: update: add a --update-bb-conf option Antonin Godard
2025-11-17 8:21 ` [PATCH v2 1/2] " Antonin Godard
@ 2025-11-17 8:21 ` Antonin Godard
1 sibling, 0 replies; 5+ messages in thread
From: Antonin Godard @ 2025-11-17 8:21 UTC (permalink / raw)
To: bitbake-devel; +Cc: Thomas Petazzoni, docs, Antonin Godard
We want to check that with --update-bb-conf set to 'no' our BitBake
configuration remains unchanged. For this create a list of checksums of
the files in conf/ and compare before/after bitbake-setup update
--update-bb-conf=no.
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
---
lib/bb/tests/setup.py | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
diff --git a/lib/bb/tests/setup.py b/lib/bb/tests/setup.py
index 18b560b93d..1aab5f384a 100644
--- a/lib/bb/tests/setup.py
+++ b/lib/bb/tests/setup.py
@@ -6,6 +6,8 @@
from bb.tests.fetch import FetcherTest
import json
+import hashlib
+import glob
class BitbakeSetupTest(FetcherTest):
def setUp(self):
@@ -361,3 +363,35 @@ print("BBPATH is {{}}".format(os.environ["BBPATH"]))
self.assertIn("Existing bitbake configuration directory renamed to {}/build/conf-backup.".format(setuppath), out[0])
self.assertIn('-{}+{}'.format(prev_test_file_content, test_file_content), out[0])
self.check_setupdir_files(setuppath, test_file_content)
+
+ # do the same as the previous test, but now without updating the bitbake configuration (--update-bb-conf=no)
+ # and check that files have not been modified
+ def _conf_chksum(confdir: str) -> list:
+ sums = []
+ for f in glob.glob(f'{confdir}/*'):
+ if not os.path.islink(f):
+ with open(f, 'rb') as fd:
+ sum = os.path.basename(f) + '_' + hashlib.file_digest(fd, "sha256").hexdigest()
+ sums.append(sum)
+ return sums
+
+ prev_test_file_content = test_file_content
+ test_file_content = 'modified-in-branch-no-bb-conf-update\n'
+ branch = "another-branch-no-bb-conf-update"
+ self.git('checkout -b {}'.format(branch), cwd=self.testrepopath)
+ self.add_file_to_testrepo('test-file', test_file_content)
+ json_1 = self.add_json_config_to_registry('test-config-1.conf.json', branch, branch)
+ for c in ('gadget', 'gizmo',
+ 'gizmo-env-passthrough',
+ 'gizmo-no-fragment',
+ 'gadget-notemplate', 'gizmo-notemplate'):
+ setuppath = os.path.join(self.tempdir, 'bitbake-builds', 'test-config-1-{}'.format(c))
+ os.environ['BBPATH'] = os.path.join(setuppath, 'build')
+ # write something in local.conf and bblayers.conf
+ for f in ["local.conf", "bblayers.conf"]:
+ with open(f"{setuppath}/build/conf/{f}", "w") as fd:
+ fd.write("deadbeef")
+ sums_before = _conf_chksum(f"{setuppath}/build/conf")
+ out = self.runbbsetup("update --update-bb-conf='no'")
+ sums_after = _conf_chksum(f"{setuppath}/build/conf")
+ self.assertEqual(sums_before, sums_after)
--
2.51.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [docs] [PATCH v2 1/2] bitbake-setup: update: add a --update-bb-conf option
2025-11-17 8:21 ` [PATCH v2 1/2] " Antonin Godard
@ 2025-11-17 11:52 ` Alexander Kanavin
2025-11-17 12:25 ` Antonin Godard
0 siblings, 1 reply; 5+ messages in thread
From: Alexander Kanavin @ 2025-11-17 11:52 UTC (permalink / raw)
To: antonin.godard; +Cc: bitbake-devel, Thomas Petazzoni, docs
On Mon, 17 Nov 2025 at 09:21, Antonin Godard via
lists.yoctoproject.org
<antonin.godard=bootlin.com@lists.yoctoproject.org> wrote:
> - bitbake_config_diff = get_diff(backup_bitbake_confdir, bitbake_confdir)
... replaced by:
> + try:
> + conf_diff = bb.process.run(f'git diff --no-index "{backup_bitbake_confdir}" "{bitbake_confdir}"')[0]
> + except bb.process.ExecutionError as e:
> + if e.exitcode == 1:
> + conf_diff = e.stdout
> + else:
> + raise e
Why? I think the function helper should be reused to keep the main
code more succinct.
> + _extra_msg_info = " (--update-bb-conf=yes)"
I'd say it's better to print appropriate messages directly in the
logic branches (even if they differ only slightly), rather than set
and tweak a variable.
> + if update_bb_conf == "no":
> + print('Ignoring upstream bitbake configuration changes (--update-bb-conf=no)')
> + print(f'Leaving the upstream configuration in {upstream_bitbake_confdir}')
> + os.rename(bitbake_confdir, upstream_bitbake_confdir)
> + os.rename(backup_bitbake_confdir, bitbake_confdir)
> + elif conf_diff:
The first check should be if bitbake configuration has changed at all,
and the new config should be removed if so.
See the proposal here:
https://lists.yoctoproject.org/g/docs/message/8056
So the overall logic should be:
if os.path.exists(backup_bitbake_confdir):
... (obtain the diff)
if not conf_diff:
print("New bitbake configuration from upstream is the same as
the old one, no need to update it.")
os.rmtree(new)
os.rename(backup, main)
return
else:
print('Upstream bitbake configuration changes were found:')
print(conf_diff)
if update_bb_conf == 'prompt':
... ask for yes or no
if update_bb_conf == 'no':
... (the block quoted above)
return
... (write readme and print instructions and notice where the old config is)
> def build_update(top_dir, settings, args, d):
> - build_status(top_dir, settings, args, d, update=True)
> + build_status(top_dir, settings, args, d, update=True, update_bb_conf=args.update_bb_conf)
args are already passed in, so no need to pass args.update_bb_conf as
a separate argument. build_status() can just obtain it from args.
Alex
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [docs] [PATCH v2 1/2] bitbake-setup: update: add a --update-bb-conf option
2025-11-17 11:52 ` [docs] " Alexander Kanavin
@ 2025-11-17 12:25 ` Antonin Godard
0 siblings, 0 replies; 5+ messages in thread
From: Antonin Godard @ 2025-11-17 12:25 UTC (permalink / raw)
To: Alexander Kanavin; +Cc: bitbake-devel, Thomas Petazzoni, docs
Hi,
On Mon Nov 17, 2025 at 12:52 PM CET, Alexander Kanavin wrote:
> On Mon, 17 Nov 2025 at 09:21, Antonin Godard via
> lists.yoctoproject.org
> <antonin.godard=bootlin.com@lists.yoctoproject.org> wrote:
>> - bitbake_config_diff = get_diff(backup_bitbake_confdir, bitbake_confdir)
>
> ... replaced by:
>
>> + try:
>> + conf_diff = bb.process.run(f'git diff --no-index "{backup_bitbake_confdir}" "{bitbake_confdir}"')[0]
>> + except bb.process.ExecutionError as e:
>> + if e.exitcode == 1:
>> + conf_diff = e.stdout
>> + else:
>> + raise e
>
> Why? I think the function helper should be reused to keep the main
> code more succinct.
Correct, while writing this I removed the previous statement, then did not
realize get_diff() could be used on two directories - will revert.
>> + _extra_msg_info = " (--update-bb-conf=yes)"
>
> I'd say it's better to print appropriate messages directly in the
> logic branches (even if they differ only slightly), rather than set
> and tweak a variable.
>
>> + if update_bb_conf == "no":
>> + print('Ignoring upstream bitbake configuration changes (--update-bb-conf=no)')
>> + print(f'Leaving the upstream configuration in {upstream_bitbake_confdir}')
>> + os.rename(bitbake_confdir, upstream_bitbake_confdir)
>> + os.rename(backup_bitbake_confdir, bitbake_confdir)
>> + elif conf_diff:
>
> The first check should be if bitbake configuration has changed at all,
> and the new config should be removed if so.
>
> See the proposal here:
> https://lists.yoctoproject.org/g/docs/message/8056
>
> So the overall logic should be:
>
> if os.path.exists(backup_bitbake_confdir):
> ... (obtain the diff)
> if not conf_diff:
> print("New bitbake configuration from upstream is the same as the old one, no need to update it.")
> os.rmtree(new)
> os.rename(backup, main)
> return
> else:
> print('Upstream bitbake configuration changes were found:')
> print(conf_diff)
> if update_bb_conf == 'prompt':
> ... ask for yes or no
>
> if update_bb_conf == 'no':
> ... (the block quoted above)
> return
>
> ... (write readme and print instructions and notice where the old config is)
Much simpler indeed :)
>
>> def build_update(top_dir, settings, args, d):
>> - build_status(top_dir, settings, args, d, update=True)
>> + build_status(top_dir, settings, args, d, update=True, update_bb_conf=args.update_bb_conf)
>
> args are already passed in, so no need to pass args.update_bb_conf as
> a separate argument. build_status() can just obtain it from args.
Agreed, although the status command does not have the --update-bb-conf, but I'll
catch that case.
Thanks!
Antonin
--
Antonin Godard, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2025-11-17 12:25 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-17 8:21 [PATCH v2 0/2] bitbake-setup: update: add a --update-bb-conf option Antonin Godard
2025-11-17 8:21 ` [PATCH v2 1/2] " Antonin Godard
2025-11-17 11:52 ` [docs] " Alexander Kanavin
2025-11-17 12:25 ` Antonin Godard
2025-11-17 8:21 ` [PATCH v2 2/2] bitbake-selftest: setup: add test for --update-bb-conf=no Antonin Godard
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.