live-build/helpers/lh_binary_chroot

123 lines
2.5 KiB
Plaintext
Raw Normal View History

2007-09-23 08:04:48 +00:00
#!/bin/sh
# lh_binary_chroot(1) - copy chroot into chroot
2008-03-06 14:43:00 -01:00
# Copyright (C) 2006-2008 Daniel Baumann <daniel@debian.org>
2007-09-23 08:04:48 +00:00
#
# 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
2008-04-07 09:58:50 +00:00
Read_conffile config/all
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:05:18 +00:00
Read_conffile "${LH_CONFIG}"
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
if [ "${LH_USE_FAKEROOT}" != "enabled" ]
then
${LH_ROOT_COMMAND} umount chroot/proc
else
rm -rf chroot/proc
mkdir -p chroot/proc
fi
2007-09-23 08:04:50 +00:00
fi
if [ -d chroot/sys/kernel ]
then
if [ "${LH_USE_FAKEROOT}" != "enabled" ]
then
${LH_ROOT_COMMAND} umount chroot/sys
else
rm -rf chroot/sys
mkdir -p chroot/sys
fi
fi
# Copying /dev if using fakeroot
if [ "${LH_USE_FAKEROOT}" = "enabled" ]
then
rm -rf chroot/dev
find /dev | cpio -dmpu chroot
2007-09-23 08:04:50 +00:00
fi
2007-09-23 08:04:48 +00:00
2007-09-23 08:05:17 +00:00
if [ "${LH_CHROOT_BUILD}" = "disabled" ]
then
exit 0
fi
if [ "${LH_CACHE}" = "enabled" ] && ls cache/stages_rootfs/filesystem* > /dev/null 2>&1
2007-09-23 08:05:15 +00:00
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 [ -f config/binary_rootfs/exclude ]
then
# Read exclude file and expand wildcards.
2007-11-11 11:57:11 -01:00
for EXCLUDE in $(cat config/binary_rootfs/exclude)
do
if [ -e chroot/chroot/"${EXCLUDE}" ]
then
# Run "rm" inside the chroot so it cannot possibly remove host files.
Chroot "rm -r chroot/${EXCLUDE}"
else
Echo_warning "Excluded path does not exist: ${EXCLUDE}"
fi
done
fi
2007-09-23 08:04:51 +00:00
if [ -n "${LH_ROOT_COMMAND}" ]
then
${LH_ROOT_COMMAND} chown -R $(whoami):$(whoami) chroot
2007-09-23 08:04:51 +00:00
fi
2007-09-23 08:04:48 +00:00
# Creating stage file
Create_stagefile .stage/binary_chroot