#!/bin/sh ## live-build(7) - System Build Scripts ## Copyright (C) 2006-2012 Daniel Baumann ## ## This program 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. ## This is a fork of lb_chroot for layered live system. ## We don't want leaking host configuratino in each layer, and so, ## we clean and setup the chroot each time. ## In addition, we create the squashfs for each layer, but top one (live) ## which still can be configured after lb chroot call. set -e # Including common functions ( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Automatically populating config tree if [ -x auto/config ] && [ ! -e .build/config ] then Echo_message "Automatically populating config tree." lb config fi # Setting static variables DESCRIPTION="$(Echo 'customize the Debian system')" HELP="" USAGE="${PROGRAM} [--force]" Arguments "${@}" # Reading configuration files Read_conffiles config/all config/common config/bootstrap config/chroot config/binary config/source Set_defaults # Setup cleanup function Setup_cleanup . config/functions # Create the snap list specific to this layer lb_chroot_snap_lists() { local pass=$1 local prevpass=$2 # This assumes that the prefix is unique for a given project local snap_for_pass=$(ls config/package-lists/*.snaplist.chroot_${pass}.full 2>/dev/null || true) local snap_for_prevpass=$(ls config/package-lists/*.snaplist.chroot_${prevpass}.full 2>/dev/null || true) if [ -z "${snap_for_pass}" ]; then return fi if [ -z "${snap_for_prevpass}" ]; then cp ${snap_for_pass} ${snap_for_pass%.full} return fi # Generate a list of snaps added to a layer. diff -NU0 ${snap_for_prevpass} ${snap_for_pass}|grep -Ev '^(---|\+\+\+|@@)'|cut -c2- > ${snap_for_pass%.full} } lb_chroot_install_snaps() { # Prepare the snap environment and install snaps into a chroot # # $1: Name of the pass local snaplist_file=$(ls config/package-lists/*.snaplist.chroot_${1} 2>/dev/null || true) if [ -z "${snaplist_file}" ]; then return fi snap_prepare chroot while read snap; do snap_preseed chroot "${snap}" done < $snaplist_file } PASSES="${PASSES:-install live}" CURPASS=1 PREVPASS="" LASTPASS=$(echo $PASSES|wc -w) LOWER_LAYERS="" for _PASS in $PASSES do export PASS=${_PASS} if [ $CURPASS -gt 1 ]; then mkdir chroot.${_PASS} mount_overlay $LOWER_LAYERS "chroot.${_PASS}/" chroot/ fi # Configuring chroot lb chroot_cache restore ${*} lb chroot_devpts install ${*} lb chroot_proc install ${*} lb chroot_selinuxfs install ${*} lb chroot_sysfs install ${*} lb chroot_debianchroot install ${*} lb chroot_dpkg install ${*} lb chroot_tmpfs install ${*} lb chroot_sysv-rc install ${*} lb chroot_upstart install ${*} lb chroot_hosts install ${*} lb chroot_resolv install ${*} lb chroot_hostname install ${*} lb chroot_apt install ${*} lb chroot_archives chroot install ${*} # Customizing chroot lb chroot_linux-image ${*} lb chroot_preseed ${*} lb chroot_early_hooks ${*} lb chroot_package-lists ${_PASS} ${*} lb chroot_install-packages ${_PASS} ${*} # Snap management lb_chroot_snap_lists ${_PASS} ${PREVPASS} lb_chroot_install_snaps ${_PASS} ${*} # Kernel should be in first layer if [ $CURPASS -eq 1 ]; then Chroot chroot "dpkg -l linux-headers-3* linux-headers-4*" 2>/dev/null \ | awk '/^i/ {print $2}' > chroot.headers for i in $(cat chroot.headers); do Chroot chroot "apt-mark auto $i" done fi Chroot chroot "apt-get --purge -y autoremove" # Add live packages to top layer if [ $CURPASS -eq $LASTPASS ]; then lb chroot_live-packages ${*} fi lb chroot_includes ${*} lb chroot_hooks ${*} lb chroot_hacks ${*} lb chroot_interactive ${*} Chroot chroot "dpkg-query -W" > chroot.packages.${_PASS} # Deconfiguring chroot lb chroot_archives chroot remove ${*} lb chroot_apt remove ${*} lb chroot_hostname remove ${*} lb chroot_resolv remove ${*} lb chroot_hosts remove ${*} lb chroot_sysv-rc remove ${*} lb chroot_upstart remove ${*} lb chroot_tmpfs remove ${*} lb chroot_dpkg remove ${*} lb chroot_debianchroot remove ${*} lb chroot_sysfs remove ${*} lb chroot_selinuxfs remove ${*} lb chroot_proc remove ${*} lb chroot_devpts remove ${*} lb chroot_cache save ${*} if [ $CURPASS -eq 1 ]; then mv chroot chroot.${_PASS} mkdir chroot elif [ $CURPASS -ne $LASTPASS ]; then # we will unmount chroot/ at teardown for upper layer umount chroot fi LOWER_LAYERS="chroot.${_PASS}:$LOWER_LAYERS" LOWER_LAYERS="${LOWER_LAYERS%:}" PREVPASS=${_PASS} CURPASS=$(( CURPASS + 1 )) done # Remove unused chroot binary corresponding to bottom layer (once everything is unmount) TEARDOWNPATH="config/teardown_chroot_layered" cat > $TEARDOWNPATH << EOF #!/bin/sh set -e umount chroot rm -rf chroot/ EOF chmod +x $TEARDOWNPATH