diff options
author | Tom Zanussi <tom.zanussi@linux.intel.com> | 2013-10-22 09:23:56 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-10-23 07:14:10 +0100 |
commit | ce2dabd393587a69ac9b5b01159186619041b6bc (patch) | |
tree | 2f2533a606f3b3a020db339c40e9dd85030d8ad9 /scripts/lib/mic/creator.py | |
parent | a7b1ff87d26aad7d784852a604826953177f6b4e (diff) | |
download | poky-ce2dabd393587a69ac9b5b01159186619041b6bc.tar.gz |
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 rev: 3103f0cb908eced7b751128c2bba898d12017c80)
Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
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 @@ | |||
18 | import os, sys, re | 18 | import os, sys, re |
19 | from optparse import SUPPRESS_HELP | 19 | from optparse import SUPPRESS_HELP |
20 | 20 | ||
21 | from mic import msger, rt_util | 21 | from mic import msger |
22 | from mic.utils import cmdln, errors, rpmmisc | 22 | from mic.utils import cmdln, errors, rpmmisc |
23 | from mic.conf import configmgr | 23 | from mic.conf import configmgr |
24 | from mic.plugin import pluginmgr | 24 | from mic.plugin import pluginmgr |