diff options
author | Tom Zanussi <tom.zanussi@linux.intel.com> | 2013-10-22 09:23:56 -0500 |
---|---|---|
committer | Robert Yang <liezhi.yang@windriver.com> | 2013-12-10 21:12:18 -0500 |
commit | f338d696b7f865bdb10020f806c69c78e8ed6625 (patch) | |
tree | 3a09a1a91f2b7bc65d9b5a9a2dbe2ff107969fce /scripts/lib/mic/creator.py | |
parent | ecdc5422bd3e3efbf46c3d12d0a95d9f736a6d27 (diff) | |
download | openembedded-core-f338d696b7f865bdb10020f806c69c78e8ed6625.tar.gz openembedded-core-f338d696b7f865bdb10020f806c69c78e8ed6625.tar.bz2 openembedded-core-f338d696b7f865bdb10020f806c69c78e8ed6625.zip |
wic: Remove dependency on rt_util module
rt_util contains bootstrap_mic(), which imports rpm and other things
we don't need because we don't do bootstrap i.e. runtime (set in
wic.conf) is always set to 'native', which means use what's on the
local host.
bootstrap mode is for downloading and installing rpms that wic needs,
which we may want to implement later; for now, we just want to use
what's local.
(From OE-Core master rev: 3103f0cb908eced7b751128c2bba898d12017c80)
Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Diffstat (limited to 'scripts/lib/mic/creator.py')
-rw-r--r-- | scripts/lib/mic/creator.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/mic/creator.py b/scripts/lib/mic/creator.py index f3d0de19fc..b36bbf064a 100644 --- a/scripts/lib/mic/creator.py +++ b/scripts/lib/mic/creator.py @@ -18,7 +18,7 @@ import os, sys, re from optparse import SUPPRESS_HELP -from mic import msger, rt_util +from mic import msger from mic.utils import cmdln, errors, rpmmisc from mic.conf import configmgr from mic.plugin import pluginmgr |