live-build/scripts/build/lb_binary_chroot

124 lines
2.8 KiB
Plaintext
Raw Normal View History

2007-09-23 08:04:48 +00:00
#!/bin/sh
## live-build(7) - System Build Scripts
## Copyright (C) 2006-2011 Daniel Baumann <daniel@debian.org>
##
## live-build 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.
2007-09-23 08:04:48 +00:00
set -e
2007-09-23 08:05:11 +00:00
# Including common functions
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
2007-09-23 08:04:48 +00:00
2007-09-23 08:05:11 +00:00
# Setting static variables
DESCRIPTION="$(Echo 'copy chroot into chroot')"
2007-09-23 08:04:48 +00:00
HELP=""
USAGE="${PROGRAM} [--force]"
Arguments "${@}"
# Reading configuration files
Read_conffiles config/all config/common config/bootstrap config/chroot config/binary 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/config .stage/bootstrap
2007-09-23 08:04:48 +00:00
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 [ "${LB_USE_FAKEROOT}" != "true" ]
then
${LB_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 [ "${LB_USE_FAKEROOT}" != "true" ]
then
${LB_ROOT_COMMAND} umount chroot/sys
else
rm -rf chroot/sys
mkdir -p chroot/sys
fi
fi
# Copying /dev if using fakeroot
if [ "${LB_USE_FAKEROOT}" = "true" ]
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
if [ "${LB_BUILD_WITH_CHROOT}" = "false" ]
2007-09-23 08:05:17 +00:00
then
exit 0
fi
if [ "${LB_CACHE}" = "true" ] && Find_files cache/stages_rootfs/filesystem*
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
${LB_ROOT_COMMAND} rm -rf chroot/chroot
${LB_ROOT_COMMAND} rm -rf chroot.tmp
2007-09-23 08:04:48 +00:00
# Copying new chroot
if [ -d cache/stages_bootstrap ] && [ "${LB_CHROOT_FILESYSTEM}" != "plain" ]
then
${LB_ROOT_COMMAND} mv chroot chroot.tmp
${LB_ROOT_COMMAND} cp -a cache/stages_bootstrap chroot
${LB_ROOT_COMMAND} touch chroot/chroot.cache
else
${LB_ROOT_COMMAND} cp -a chroot chroot.tmp
fi
2007-09-23 08:04:51 +00:00
${LB_ROOT_COMMAND} mv chroot.tmp chroot/chroot
# Handling chroot excludes
if [ -f config/binary_rootfs/excludes ] && [ "${LB_CHROOT_FILESYSTEM}" != "squashfs" ]
then
case "${LB_BUILD_WITH_CHROOT}" in
true)
cp config/binary_rootfs/excludes chroot/chroot/excludes
chroot chroot/chroot /usr/bin/env -i xargs --arg-file=/excludes -I FILE bash -c 'rm -rf FILE'
rm -f chroot/chroot/excludes
;;
false)
cp config/binary_rootfs/excludes chroot/excludes
chroot chroot /usr/bin/env -i xargs --arg-file=/excludes -I FILE bash -c 'rm -rf FILE'
rm -f chroot/excludes
;;
esac
fi
if [ -n "${LB_ROOT_COMMAND}" ]
2007-09-23 08:04:51 +00:00
then
${LB_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