diff options
Diffstat (limited to 'scripts/lib/image')
-rw-r--r-- | scripts/lib/image/engine.py | 12 | ||||
-rw-r--r-- | scripts/lib/image/help.py | 8 |
2 files changed, 10 insertions, 10 deletions
diff --git a/scripts/lib/image/engine.py b/scripts/lib/image/engine.py index b850bb9bfe..f1df8b4db8 100644 --- a/scripts/lib/image/engine.py +++ b/scripts/lib/image/engine.py | |||
@@ -37,12 +37,12 @@ import subprocess | |||
37 | import shutil | 37 | import shutil |
38 | 38 | ||
39 | import os, sys, errno | 39 | import os, sys, errno |
40 | from mic import msger, creator | 40 | from wic import msger, creator |
41 | from mic.utils import cmdln, misc, errors | 41 | from wic.utils import cmdln, misc, errors |
42 | from mic.conf import configmgr | 42 | from wic.conf import configmgr |
43 | from mic.plugin import pluginmgr | 43 | from wic.plugin import pluginmgr |
44 | from mic.__version__ import VERSION | 44 | from wic.__version__ import VERSION |
45 | from mic.utils.oe.misc import * | 45 | from wic.utils.oe.misc import * |
46 | 46 | ||
47 | 47 | ||
48 | def verify_build_env(): | 48 | def verify_build_env(): |
diff --git a/scripts/lib/image/help.py b/scripts/lib/image/help.py index 6503aaa18d..080795e577 100644 --- a/scripts/lib/image/help.py +++ b/scripts/lib/image/help.py | |||
@@ -144,7 +144,7 @@ DESCRIPTION | |||
144 | the corresponding artifacts are typically found in a normal | 144 | the corresponding artifacts are typically found in a normal |
145 | OpenEmbedded build. | 145 | OpenEmbedded build. |
146 | 146 | ||
147 | Alternatively, users can use the -e option to have 'mic' determine | 147 | Alternatively, users can use the -e option to have 'wic' determine |
148 | those locations for a given image. If the -e option is used, the | 148 | those locations for a given image. If the -e option is used, the |
149 | user needs to have set the appropriate MACHINE variable in | 149 | user needs to have set the appropriate MACHINE variable in |
150 | local.conf, and have sourced the build environment. | 150 | local.conf, and have sourced the build environment. |
@@ -349,12 +349,12 @@ DESCRIPTION | |||
349 | implementation that populates a corresponding partition. | 349 | implementation that populates a corresponding partition. |
350 | 350 | ||
351 | A source plugin is created as a subclass of SourcePlugin (see | 351 | A source plugin is created as a subclass of SourcePlugin (see |
352 | scripts/lib/mic/pluginbase.py) and the plugin file containing it | 352 | scripts/lib/wic/pluginbase.py) and the plugin file containing it |
353 | is added to scripts/lib/mic/plugins/source/ to make the plugin | 353 | is added to scripts/lib/wic/plugins/source/ to make the plugin |
354 | implementation available to the wic implementation. | 354 | implementation available to the wic implementation. |
355 | 355 | ||
356 | Source plugins can also be implemented and added by external | 356 | Source plugins can also be implemented and added by external |
357 | layers - any plugins found in a scripts/lib/mic/plugins/source/ | 357 | layers - any plugins found in a scripts/lib/wic/plugins/source/ |
358 | directory in an external layer will also be made available. | 358 | directory in an external layer will also be made available. |
359 | 359 | ||
360 | When the wic implementation needs to invoke a partition-specific | 360 | When the wic implementation needs to invoke a partition-specific |