diff options
author | Manuel Leonhardt <mleonhardt@arri.de> | 2021-03-01 20:24:20 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-03-11 14:04:45 +0000 |
commit | e6ec2b4dcc21b89f9c0e80d50c3e0405fb3ecda2 (patch) | |
tree | e0136c3b6797439f817b38cb0cf123c44df1d610 /bitbake | |
parent | 5386b3db50d99965f15013c8831999f63dce8fbe (diff) | |
download | poky-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.py | 2 |
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 | ||