Signed-off-by: Gui Chen <gui.chen@intel.com>
def bind_mount(chrootmounts):
for b in chrootmounts:
- msger.info("bind_mount: %s -> %s" % (b.src, b.dest))
+ msger.verbose("bind_mount: %s -> %s" % (b.src, b.dest))
b.mount()
def setup_resolv(chrootdir):
def bind_unmount(chrootmounts):
chrootmounts.reverse()
for b in chrootmounts:
- msger.info("bind_unmount: %s -> %s" % (b.src, b.dest))
+ msger.verbose("bind_unmount: %s -> %s" % (b.src, b.dest))
b.unmount()
def cleanup_resolv(chrootdir):
# run mic in bootstrap
globalmounts = None
bindmounts = get_bindmounts(cropts)
+ msger.info("Start mic in bootstrap: %s\n" % rootdir)
try:
proxy.set_proxy_environ()
globalmounts = setup_chrootenv(rootdir, bindmounts)