2007-09-23 08:04:48 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# lh_binary_chroot(1) - copy chroot into chroot
|
|
|
|
# Copyright (C) 2006-2007 Daniel Baumann <daniel@debian.org>
|
|
|
|
#
|
|
|
|
# live-helper comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
|
|
|
|
# This is free software, and you are welcome to redistribute it
|
|
|
|
# under certain conditions; see COPYING for details.
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2007-09-23 08:05:11 +00:00
|
|
|
# Including common functions
|
|
|
|
LH_BASE="${LH_BASE:-/usr/share/live-helper}"
|
|
|
|
|
|
|
|
for FUNCTION in "${LH_BASE}"/functions/*.sh
|
2007-09-23 08:04:48 +00:00
|
|
|
do
|
2007-09-23 08:05:11 +00:00
|
|
|
. "${FUNCTION}"
|
2007-09-23 08:04:48 +00:00
|
|
|
done
|
|
|
|
|
2007-09-23 08:05:11 +00:00
|
|
|
# Setting static variables
|
2007-09-23 08:04:48 +00:00
|
|
|
DESCRIPTION="copy chroot into chroot"
|
|
|
|
HELP=""
|
|
|
|
USAGE="${PROGRAM} [--force]"
|
|
|
|
|
|
|
|
Arguments "${@}"
|
|
|
|
|
|
|
|
# Reading configuration files
|
2007-09-23 08:04:52 +00:00
|
|
|
Read_conffile config/common
|
2007-09-23 08:04:49 +00:00
|
|
|
Read_conffile config/bootstrap
|
|
|
|
Read_conffile config/chroot
|
2007-09-23 08:04:52 +00:00
|
|
|
Read_conffile config/binary
|
|
|
|
Read_conffile config/source
|
2007-09-23 08:04:48 +00:00
|
|
|
Set_defaults
|
|
|
|
|
2007-09-23 08:05:11 +00:00
|
|
|
Echo_message "Begin copying chroot..."
|
2007-09-23 08:04:49 +00:00
|
|
|
|
2007-09-23 08:04:48 +00:00
|
|
|
# Requiring stage file
|
|
|
|
Require_stagefile .stage/bootstrap
|
|
|
|
|
2007-09-23 08:04:50 +00:00
|
|
|
# Checking stage file
|
|
|
|
Check_stagefile .stage/binary_chroot
|
|
|
|
|
2007-09-23 08:04:48 +00:00
|
|
|
# Checking lock file
|
|
|
|
Check_lockfile .lock
|
|
|
|
|
|
|
|
# Creating lock file
|
|
|
|
Create_lockfile .lock
|
|
|
|
|
2007-09-23 08:04:51 +00:00
|
|
|
# Normally, virtual filesystems are not mounted here, but people tend to be lazy
|
2007-09-23 08:04:50 +00:00
|
|
|
if [ -f chroot/proc/version ]
|
|
|
|
then
|
2007-09-23 08:04:51 +00:00
|
|
|
${LH_ROOT_COMMAND} umount chroot/proc
|
2007-09-23 08:04:50 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -d chroot/sys/kernel ]
|
|
|
|
then
|
2007-09-23 08:04:51 +00:00
|
|
|
${LH_ROOT_COMMAND} umount chroot/sys
|
2007-09-23 08:04:50 +00:00
|
|
|
fi
|
2007-09-23 08:04:48 +00:00
|
|
|
|
2007-09-23 08:05:15 +00:00
|
|
|
if [ "${LIVE_CHROOT_BUILD}" = "disabled" ]
|
|
|
|
then
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2007-09-23 08:05:16 +00:00
|
|
|
Echo_message "This may take a while."
|
|
|
|
|
2007-09-23 08:04:48 +00:00
|
|
|
# Removing old chroot
|
2007-09-23 08:04:51 +00:00
|
|
|
${LH_ROOT_COMMAND} rm -rf chroot/chroot
|
|
|
|
${LH_ROOT_COMMAND} rm -rf chroot.tmp
|
2007-09-23 08:04:48 +00:00
|
|
|
|
|
|
|
# Copying new chroot
|
2007-09-23 08:05:15 +00:00
|
|
|
${LH_ROOT_COMMAND} cp -a chroot chroot.tmp
|
2007-09-23 08:04:51 +00:00
|
|
|
${LH_ROOT_COMMAND} mv chroot.tmp chroot/chroot
|
|
|
|
|
|
|
|
if [ -n "${LH_ROOT_COMMAND}" ]
|
|
|
|
then
|
|
|
|
${LH_ROOT_COMMAND} chown -R `whoami`:`whoami` chroot
|
|
|
|
fi
|
2007-09-23 08:04:48 +00:00
|
|
|
|
|
|
|
# Creating stage file
|
|
|
|
Create_stagefile .stage/binary_chroot
|