diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-10-01 22:06:57 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-10-04 11:16:44 +0100 |
commit | acc435d4bcd6b1b72f0508d0c35f6503948dfbdb (patch) | |
tree | b8c43efa5dd3c01e35dc40b41c2d4c58e56076b1 /meta | |
parent | 59704806b354e655d69ce2231f63b370f0529396 (diff) | |
download | poky-acc435d4bcd6b1b72f0508d0c35f6503948dfbdb.tar.gz |
lib/configfragments: Operate on local.conf, not auto.conf
(From OE-Core rev: 653646c8582bf4b2a91c1346982b8fbb39983fa2)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/lib/bbconfigbuild/configfragments.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/bbconfigbuild/configfragments.py b/meta/lib/bbconfigbuild/configfragments.py index fce3301bac..452e418c38 100644 --- a/meta/lib/bbconfigbuild/configfragments.py +++ b/meta/lib/bbconfigbuild/configfragments.py | |||
@@ -179,7 +179,7 @@ class ConfigFragmentsPlugin(LayerPlugin): | |||
179 | print("All fragments removed from {}.".format(args.confpath)) | 179 | print("All fragments removed from {}.".format(args.confpath)) |
180 | 180 | ||
181 | def register_commands(self, sp): | 181 | def register_commands(self, sp): |
182 | default_confpath = os.path.join(os.environ["BBPATH"], "conf/auto.conf") | 182 | default_confpath = os.path.join(os.environ["BBPATH"], "conf/local.conf") |
183 | 183 | ||
184 | parser_list_fragments = self.add_command(sp, 'list-fragments', self.do_list_fragments, parserecipes=False) | 184 | parser_list_fragments = self.add_command(sp, 'list-fragments', self.do_list_fragments, parserecipes=False) |
185 | parser_list_fragments.add_argument("--confpath", default=default_confpath, help='Configuration file which contains a list of enabled fragments (default is {}).'.format(default_confpath)) | 185 | parser_list_fragments.add_argument("--confpath", default=default_confpath, help='Configuration file which contains a list of enabled fragments (default is {}).'.format(default_confpath)) |