summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kanavin <alex@linutronix.de>2025-10-12 19:47:23 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-10-14 11:24:57 +0100
commitd81884b3a94403cdd53aeb10562021ebca8afebf (patch)
treec0ba40cc66fdf94351b09499c1c9592e59a462a4
parentcd4fe0aadac89190c793a764ee11c96ee5eb67df (diff)
downloadpoky-d81884b3a94403cdd53aeb10562021ebca8afebf.tar.gz
bitbake: bitbake-setup: correct 'setting' to 'settings' in a couple of help texts
(Bitbake rev: c5e04ce986b680f39f6c7851e4236c4afa4ac3f4) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rwxr-xr-xbitbake/bin/bitbake-setup4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/bin/bitbake-setup b/bitbake/bin/bitbake-setup
index 71b5b8de9f..f24d39481b 100755
--- a/bitbake/bin/bitbake-setup
+++ b/bitbake/bin/bitbake-setup
@@ -787,7 +787,7 @@ def main():
787 parser_settings.add_argument('key', nargs='?', help="Name of the setting") 787 parser_settings.add_argument('key', nargs='?', help="Name of the setting")
788 parser_settings.add_argument('value', nargs='?', help="Value of the setting") 788 parser_settings.add_argument('value', nargs='?', help="Value of the setting")
789 parser_settings.add_argument('--global', action='store_true', help="Modify the setting in a global settings file, rather than one specific to a top directory") 789 parser_settings.add_argument('--global', action='store_true', help="Modify the setting in a global settings file, rather than one specific to a top directory")
790 parser_settings.add_argument('--unset', nargs=2, help="Unset a setting, e.g. 'bitbake-setup setting --unset default registry' would revert to the registry setting in a global settings file") 790 parser_settings.add_argument('--unset', nargs=2, help="Unset a setting, e.g. 'bitbake-setup settings --unset default registry' would revert to the registry setting in a global settings file")
791 parser_settings.add_argument('-l' ,'--list', action='store_true', help="List all settings with their values") 791 parser_settings.add_argument('-l' ,'--list', action='store_true', help="List all settings with their values")
792 parser_settings.set_defaults(func=settings_func) 792 parser_settings.set_defaults(func=settings_func)
793 793
@@ -834,7 +834,7 @@ def main():
834 settings_func(top_dir, all_settings, args) 834 settings_func(top_dir, all_settings, args)
835 return 835 return
836 836
837 print('Bitbake-setup is using {} as top directory ("bitbake-setup setting --help" shows how to change it).\n'.format(top_dir, global_settings_path(args))) 837 print('Bitbake-setup is using {} as top directory ("bitbake-setup settings --help" shows how to change it).\n'.format(top_dir, global_settings_path(args)))
838 838
839 d = init_bb_cache(top_dir, all_settings, args) 839 d = init_bb_cache(top_dir, all_settings, args)
840 args.func(top_dir, all_settings, args, d) 840 args.func(top_dir, all_settings, args, d)