diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2015-08-30 19:33:19 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-09-12 22:48:30 +0100 |
commit | 9485888656ea15f111413497943eafcaba023f9c (patch) | |
tree | 8b0366099560bc2ab988cc19d1202c205544c9e6 /scripts/lib/devtool/standard.py | |
parent | 996ec1798e709d38a26d8871132cdc06310c9423 (diff) | |
download | poky-9485888656ea15f111413497943eafcaba023f9c.tar.gz |
devtool: make plugin_init optional
So far all devtool and recipetool plugins were expected
to have plugin_init function. This function is empty in
most of plugins as they don't require initialisation.
Making plugin_init optional would allow not having empty
plugin_init in every plugin.
(From OE-Core rev: b99640c89f067866b264f4ee4030fae4c2f338c0)
Signed-off-by: Ed Bartosh <ed.bartosh@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/standard.py')
-rw-r--r-- | scripts/lib/devtool/standard.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/scripts/lib/devtool/standard.py b/scripts/lib/devtool/standard.py index 4702491fe0..5263af56c8 100644 --- a/scripts/lib/devtool/standard.py +++ b/scripts/lib/devtool/standard.py | |||
@@ -31,11 +31,6 @@ from devtool import parse_recipe | |||
31 | logger = logging.getLogger('devtool') | 31 | logger = logging.getLogger('devtool') |
32 | 32 | ||
33 | 33 | ||
34 | def plugin_init(pluginlist): | ||
35 | """Plugin initialization""" | ||
36 | pass | ||
37 | |||
38 | |||
39 | def add(args, config, basepath, workspace): | 34 | def add(args, config, basepath, workspace): |
40 | """Entry point for the devtool 'add' subcommand""" | 35 | """Entry point for the devtool 'add' subcommand""" |
41 | import bb | 36 | import bb |