diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2017-02-14 20:44:59 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-03-04 23:18:16 +0000 |
commit | 28014087b8091e61c992aa66d4feef55a433e704 (patch) | |
tree | d0b24ba4c84ec76d132a0de6bb6862b0fd1a29ca /scripts/lib/wic/engine.py | |
parent | 1dd8cca63102b1718609c5e2903e1ea468c4c469 (diff) | |
download | poky-28014087b8091e61c992aa66d4feef55a433e704.tar.gz |
wic: remove msger module
Removed custom logger module msger as it's replaced
by wic logger.
(From OE-Core rev: 8fdceeee99c3fc60649414b39933ec295c810e6b)
Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib/wic/engine.py')
-rw-r--r-- | scripts/lib/wic/engine.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/scripts/lib/wic/engine.py b/scripts/lib/wic/engine.py index b64714c686..2ccd5107f3 100644 --- a/scripts/lib/wic/engine.py +++ b/scripts/lib/wic/engine.py | |||
@@ -32,7 +32,6 @@ import logging | |||
32 | import os | 32 | import os |
33 | import sys | 33 | import sys |
34 | 34 | ||
35 | from wic import msger | ||
36 | from wic.plugin import pluginmgr | 35 | from wic.plugin import pluginmgr |
37 | from wic.utils.misc import get_bitbake_var | 36 | from wic.utils.misc import get_bitbake_var |
38 | 37 | ||
@@ -184,9 +183,6 @@ def wic_create(wks_file, rootfs_dir, bootimg_dir, kernel_dir, | |||
184 | logger.error("BUILDDIR not found, exiting. (Did you forget to source oe-init-build-env?)") | 183 | logger.error("BUILDDIR not found, exiting. (Did you forget to source oe-init-build-env?)") |
185 | sys.exit(1) | 184 | sys.exit(1) |
186 | 185 | ||
187 | if options.debug: | ||
188 | msger.set_loglevel('debug') | ||
189 | |||
190 | if not os.path.exists(options.outdir): | 186 | if not os.path.exists(options.outdir): |
191 | os.makedirs(options.outdir) | 187 | os.makedirs(options.outdir) |
192 | 188 | ||