UBUNTU: [Packaging] annotations: allow to query using CONFIG_<option> or <option>

Allow to use CONFIG_FOO or just FOO when querying config options in
annotations.

This can help to speed up config update/reviews simply by doing
copy/paste from the console during an updateconfigs when checking values
from master or other kernels doing queries with annotations.

Signed-off-by: Andrea Righi <andrea.righi@canonical.com>
This commit is contained in:
Andrea Righi
2022-12-01 11:03:05 +01:00
committed by Paolo Pisati
parent 6392fce604
commit 0150aad67d
+5 -2
View File
@@ -62,8 +62,11 @@ def arg_fail(message):
def do_query(args):
a = Annotation(args.file)
res = a.search_config(config=args.config, arch=args.arch, flavour=args.flavour)
print(json.dumps(res, indent=4))
for config in (args.config, 'CONFIG_' + args.config if args.config else None):
res = a.search_config(config=config, arch=args.arch, flavour=args.flavour)
if res:
break
print(json.dumps({config or '*': res}, indent=4))
def do_note(args):
if args.config is None: