diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2016-12-13 20:09:34 +1300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-12-14 12:30:49 +0000 |
commit | 93d675304d9c6d0e5ec68a886daa572e4b6c1474 (patch) | |
tree | 9e72c2c57c6d43a94b143ae4d5314b792a739bb4 /meta/lib | |
parent | 557382ab4203173e0425d01effaf61cf25d73895 (diff) | |
download | poky-93d675304d9c6d0e5ec68a886daa572e4b6c1474.tar.gz |
oe-selftest: make tinfoil quiet when using to start QEMU
We don't need to see the parsing/cache loading message in the
oe-selftest output, so use the newly added quiet option to disable it.
(From OE-Core rev: c023bc55ff000d1de891d1a8e2a163e94bf63de6)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oeqa/utils/commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/utils/commands.py b/meta/lib/oeqa/utils/commands.py index e00c8797aa..56c47350b1 100644 --- a/meta/lib/oeqa/utils/commands.py +++ b/meta/lib/oeqa/utils/commands.py | |||
@@ -216,7 +216,7 @@ def runqemu(pn, ssh=True): | |||
216 | import bb.build | 216 | import bb.build |
217 | 217 | ||
218 | tinfoil = bb.tinfoil.Tinfoil() | 218 | tinfoil = bb.tinfoil.Tinfoil() |
219 | tinfoil.prepare(False) | 219 | tinfoil.prepare(config_only=False, quiet=True) |
220 | try: | 220 | try: |
221 | tinfoil.logger.setLevel(logging.WARNING) | 221 | tinfoil.logger.setLevel(logging.WARNING) |
222 | import oeqa.targetcontrol | 222 | import oeqa.targetcontrol |