summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorManuel Leonhardt <mleonhardt@arri.de>2021-03-01 20:24:20 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-03-11 14:04:45 +0000
commite6ec2b4dcc21b89f9c0e80d50c3e0405fb3ecda2 (patch)
treee0136c3b6797439f817b38cb0cf123c44df1d610 /bitbake
parent5386b3db50d99965f15013c8831999f63dce8fbe (diff)
downloadpoky-e6ec2b4dcc21b89f9c0e80d50c3e0405fb3ecda2.tar.gz
bitbake: 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. (Bitbake rev: ab9d26c4847a062cadaae5fb8caac0ead5f958db) Signed-off-by: Manuel Leonhardt <mleonhardt@arri.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/tinfoil.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/tinfoil.py b/bitbake/lib/bb/tinfoil.py
index 763c329810..796a98f053 100644
--- a/bitbake/lib/bb/tinfoil.py
+++ b/bitbake/lib/bb/tinfoil.py
@@ -440,7 +440,7 @@ class Tinfoil:
440 to initialise Tinfoil and use it with config_only=True first and 440 to initialise Tinfoil and use it with config_only=True first and
441 then conditionally call this function to parse recipes later. 441 then conditionally call this function to parse recipes later.
442 """ 442 """
443 config_params = TinfoilConfigParameters(config_only=False) 443 config_params = TinfoilConfigParameters(config_only=False, quiet=self.quiet)
444 self.run_actions(config_params) 444 self.run_actions(config_params)
445 self.recipes_parsed = True 445 self.recipes_parsed = True
446 446