aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/devtool
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2015-07-31 10:31:34 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-08-01 07:34:03 +0100
commit9a672bd5690a519696a6542fc97f8e4e67c7f8cf (patch)
tree59d6513b7b801178bd487f558f5af0e1a2585bab /scripts/devtool
parent3167580e791297f75941ffb96e13cd4dc045e38b (diff)
downloadopenembedded-core-contrib-9a672bd5690a519696a6542fc97f8e4e67c7f8cf.tar.gz
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. (From OE-Core rev: c1f58caad4ff45efd213bf1412304a72903abe7e) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/devtool')
-rwxr-xr-xscripts/devtool3
1 files changed, 1 insertions, 2 deletions
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='<subcommand>')