From ab9d26c4847a062cadaae5fb8caac0ead5f958db Mon Sep 17 00:00:00 2001 From: Manuel Leonhardt Date: Mon, 1 Mar 2021 20:24:20 +0100 Subject: tinfoil: Honor quiet when parsing recipes When using parse_recipes, honor quiet so that scripts and custom plugins for recipetool are able to mute progress bars from bitbake that would otherwise print to STDOUT. Signed-off-by: Manuel Leonhardt Signed-off-by: Richard Purdie --- lib/bb/tinfoil.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/bb') diff --git a/lib/bb/tinfoil.py b/lib/bb/tinfoil.py index 763c32981..796a98f05 100644 --- a/lib/bb/tinfoil.py +++ b/lib/bb/tinfoil.py @@ -440,7 +440,7 @@ class Tinfoil: to initialise Tinfoil and use it with config_only=True first and then conditionally call this function to parse recipes later. """ - config_params = TinfoilConfigParameters(config_only=False) + config_params = TinfoilConfigParameters(config_only=False, quiet=self.quiet) self.run_actions(config_params) self.recipes_parsed = True -- cgit 1.2.3-korg