mirror of
https://git.yoctoproject.org/poky
synced 2026-02-06 00:38:45 +01:00
When the recipe provided by (-r, --recipe) is not found
tinfoil raises an exception that is not catched for
readability, example:
Traceback (most recent call last):
File "/.../poky/bitbake/bin/bitbake-getvar", line 45, in <module>
d = tinfoil.parse_recipe(args.recipe)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/.../poky/bitbake/lib/bb/tinfoil.py", line 633, in parse_recipe
fn = self.get_recipe_file(pn)
^^^^^^^^^^^^^^^^^^^^^^^^
File "/.../poky/bitbake/lib/bb/tinfoil.py", line 550, in get_recipe_file
raise bb.providers.NoProvider('Unable to find any recipe file matching "%s"' % pn)
bb.providers.NoProvider: Unable to find any recipe file matching "aaa"
(Bitbake rev: 06aa6c292813a28c84736193b550fb2d18884d43)
Signed-off-by: Talel BELHAJSALEM <bhstalel@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
67 lines
2.6 KiB
Python
Executable File
67 lines
2.6 KiB
Python
Executable File
#! /usr/bin/env python3
|
|
#
|
|
# Copyright (C) 2021 Richard Purdie
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
|
|
import argparse
|
|
import io
|
|
import os
|
|
import sys
|
|
import warnings
|
|
warnings.simplefilter("default")
|
|
|
|
bindir = os.path.dirname(__file__)
|
|
topdir = os.path.dirname(bindir)
|
|
sys.path[0:0] = [os.path.join(topdir, 'lib')]
|
|
|
|
import bb.providers
|
|
import bb.tinfoil
|
|
|
|
if __name__ == "__main__":
|
|
parser = argparse.ArgumentParser(description="Bitbake Query Variable")
|
|
parser.add_argument("variable", help="variable name to query")
|
|
parser.add_argument("-r", "--recipe", help="Recipe name to query", default=None, required=False)
|
|
parser.add_argument('-u', '--unexpand', help='Do not expand the value (with --value)', action="store_true")
|
|
parser.add_argument('-f', '--flag', help='Specify a variable flag to query (with --value)', default=None)
|
|
parser.add_argument('--value', help='Only report the value, no history and no variable name', action="store_true")
|
|
parser.add_argument('-q', '--quiet', help='Silence bitbake server logging', action="store_true")
|
|
parser.add_argument('--ignore-undefined', help='Suppress any errors related to undefined variables', action="store_true")
|
|
args = parser.parse_args()
|
|
|
|
if not args.value:
|
|
if args.unexpand:
|
|
sys.exit("--unexpand only makes sense with --value")
|
|
|
|
if args.flag:
|
|
sys.exit("--flag only makes sense with --value")
|
|
|
|
quiet = args.quiet or args.value
|
|
with bb.tinfoil.Tinfoil(tracking=True, setup_logging=not quiet) as tinfoil:
|
|
if args.recipe:
|
|
tinfoil.prepare(quiet=3 if quiet else 2)
|
|
try:
|
|
d = tinfoil.parse_recipe(args.recipe)
|
|
except bb.providers.NoProvider as e:
|
|
sys.exit(str(e))
|
|
else:
|
|
tinfoil.prepare(quiet=2, config_only=True)
|
|
# Expand keys and run anonymous functions to get identical result to
|
|
# "bitbake -e"
|
|
d = tinfoil.finalizeData()
|
|
|
|
value = None
|
|
if args.flag:
|
|
value = d.getVarFlag(args.variable, args.flag, expand=not args.unexpand)
|
|
if value is None and not args.ignore_undefined:
|
|
sys.exit(f"The flag '{args.flag}' is not defined for variable '{args.variable}'")
|
|
else:
|
|
value = d.getVar(args.variable, expand=not args.unexpand)
|
|
if value is None and not args.ignore_undefined:
|
|
sys.exit(f"The variable '{args.variable}' is not defined")
|
|
if args.value:
|
|
print(str(value if value is not None else ""))
|
|
else:
|
|
bb.data.emit_var(args.variable, d=d, all=True)
|