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)

(From OE-Core rev: f338d696b7f865bdb10020f806c69c78e8ed6625)

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>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Tom Zanussi 2013-10-22 09:23:56 -05:00 committed by Richard Purdie
parent 9e27361d81
commit 3bcd49dddf
7 changed files with 7 additions and 7 deletions

View File

@ -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

View File

@ -30,7 +30,7 @@ import shutil
import re
import tempfile
from mic import chroot, msger, rt_util
from mic import chroot, msger
from mic.utils import misc, fs_related, errors, runner, cmdln
from mic.conf import configmgr
from mic.plugin import pluginmgr

View File

@ -18,7 +18,7 @@
import os
import sys
from mic import chroot, msger, rt_util
from mic import chroot, msger
from mic.utils import cmdln, misc, errors, fs_related
from mic.imager import fs
from mic.conf import configmgr

View File

@ -19,7 +19,7 @@ import os
import shutil
import tempfile
from mic import chroot, msger, rt_util
from mic import chroot, msger
from mic.utils import misc, fs_related, errors
from mic.conf import configmgr
import mic.imager.livecd as livecd

View File

@ -19,7 +19,7 @@ import os
import shutil
import tempfile
from mic import chroot, msger, rt_util
from mic import chroot, msger
from mic.utils import misc, fs_related, errors
from mic.utils.partitionedfs import PartitionedMount
from mic.conf import configmgr

View File

@ -19,7 +19,7 @@ import os
import shutil
import tempfile
from mic import chroot, msger, rt_util
from mic import chroot, msger
from mic.utils import misc, fs_related, errors, cmdln
from mic.conf import configmgr
from mic.plugin import pluginmgr

View File

@ -20,7 +20,7 @@ import shutil
import re
import tempfile
from mic import chroot, msger, rt_util
from mic import chroot, msger
from mic.utils import misc, fs_related, errors, runner, cmdln
from mic.conf import configmgr
from mic.plugin import pluginmgr