From: Paul Eggleton Date: Tue, 13 Dec 2016 07:09:34 +0000 (+1300) Subject: oe-selftest: make tinfoil quiet when using to start QEMU X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=93d675304d9c6d0e5ec68a886daa572e4b6c1474;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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 Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- diff --git a/meta/lib/oeqa/utils/commands.py b/meta/lib/oeqa/utils/commands.py index e00c8797aa5..56c47350b14 100644 --- a/meta/lib/oeqa/utils/commands.py +++ b/meta/lib/oeqa/utils/commands.py @@ -216,7 +216,7 @@ def runqemu(pn, ssh=True): import bb.build tinfoil = bb.tinfoil.Tinfoil() - tinfoil.prepare(False) + tinfoil.prepare(config_only=False, quiet=True) try: tinfoil.logger.setLevel(logging.WARNING) import oeqa.targetcontrol