summaryrefslogtreecommitdiffstats
path: root/bitbake/bin/bitbake-setup
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/bin/bitbake-setup')
-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)