summaryrefslogtreecommitdiffstats
path: root/scripts/lib/devtool/package.py
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2015-10-11 19:12:56 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-12-01 21:32:04 +0000
commit3f46af2b1923cbfd3af0b8ce3c360eb34f316dfc (patch)
treec16745171141cd56d7425fa1bc59cb2c030a26ef /scripts/lib/devtool/package.py
parent176211abebb875324d2300ec0362b64231668964 (diff)
downloadpoky-3f46af2b1923cbfd3af0b8ce3c360eb34f316dfc.tar.gz
devtool: drop unused plugin_init() functions
This function is no longer required to be defined for a plugin, so drop it where it's a no-op. (From OE-Core rev: 49716a5e27e704598321bd6c82275b16afc444aa) 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 'scripts/lib/devtool/package.py')
-rw-r--r--scripts/lib/devtool/package.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/scripts/lib/devtool/package.py b/scripts/lib/devtool/package.py
index 53d3dc7a38..a296fce9b1 100644
--- a/scripts/lib/devtool/package.py
+++ b/scripts/lib/devtool/package.py
@@ -24,10 +24,6 @@ from devtool import exec_build_env_command, setup_tinfoil, check_workspace_recip
24 24
25logger = logging.getLogger('devtool') 25logger = logging.getLogger('devtool')
26 26
27def plugin_init(pluginlist):
28 """Plugin initialization"""
29 pass
30
31def package(args, config, basepath, workspace): 27def package(args, config, basepath, workspace):
32 """Entry point for the devtool 'package' subcommand""" 28 """Entry point for the devtool 'package' subcommand"""
33 check_workspace_recipe(workspace, args.recipename) 29 check_workspace_recipe(workspace, args.recipename)