From: Paul Eggleton Date: Fri, 31 Jul 2015 09:31:34 +0000 (+0100) Subject: devtool: use tinfoil shutdown method X-Git-Tag: 2015-10~1039 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=c1f58caad4ff45efd213bf1412304a72903abe7e;p=openembedded-core.git devtool: use tinfoil shutdown method Tinfoil now has its own shutdown method, use it instead of calling into cooker - not only is it the right thing to do from an API perspective, it also ensures proper lock handling. Signed-off-by: Paul Eggleton Signed-off-by: Richard Purdie --- diff --git a/scripts/devtool b/scripts/devtool index 557a83013a..5d37d3b4a4 100755 --- a/scripts/devtool +++ b/scripts/devtool @@ -244,8 +244,7 @@ def main(): tinfoil.config_data.getVar('BBPATH', True).split(':')): pluginpath = os.path.join(path, 'lib', 'devtool') scriptutils.load_plugins(logger, plugins, pluginpath) - tinfoil.cooker.shutdown(force=True) - tinfoil.cooker.unlockBitbake() + tinfoil.shutdown() subparsers = parser.add_subparsers(dest="subparser_name", title='subcommands', metavar='')