summaryrefslogtreecommitdiff
path: root/scripts/build/lb_binary_rootfs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2010-09-12 21:01:06 +0200
committerDaniel Baumann <daniel@debian.org>2011-03-09 19:17:22 +0100
commit9f865fce29db8c910f2d6a22c4a2d6d15ecff9f4 (patch)
tree62de20b222aa509d3f3297007f7db1025d43bce3 /scripts/build/lb_binary_rootfs
parent608f11e2cc647aa5f6c0daa95888a89404be4f71 (diff)
downloadlive-build-9f865fce29db8c910f2d6a22c4a2d6d15ecff9f4.zip
live-build-9f865fce29db8c910f2d6a22c4a2d6d15ecff9f4.tar.gz
Prefixing helper scripts to make 'out of source' usage usable (Closes: #572455).
Diffstat (limited to 'scripts/build/lb_binary_rootfs')
-rwxr-xr-xscripts/build/lb_binary_rootfs438
1 files changed, 438 insertions, 0 deletions
diff --git a/scripts/build/lb_binary_rootfs b/scripts/build/lb_binary_rootfs
new file mode 100755
index 0000000..27af099
--- /dev/null
+++ b/scripts/build/lb_binary_rootfs
@@ -0,0 +1,438 @@
+#!/bin/sh
+
+## live-build(7) - System Build Scripts
+## Copyright (C) 2006-2010 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.
+
+
+set -e
+
+# Including common functions
+. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
+
+# Setting static variables
+DESCRIPTION="$(Echo 'build rootfs image')"
+HELP=""
+USAGE="${PROGRAM} [--force]"
+
+Arguments "${@}"
+
+# Reading configuration files
+Read_conffiles config/all config/common config/bootstrap config/chroot config/binary config/source
+Set_defaults
+
+Echo_message "Begin building root filesystem image..."
+
+# Requiring stage file
+Require_stagefile .stage/config .stage/bootstrap .stage/binary_chroot
+
+# Checking stage file
+Check_stagefile .stage/binary_rootfs
+
+# Checking lock file
+Check_lockfile .lock
+
+# Creating lock file
+Create_lockfile .lock
+
+case "${LB_ARCHITECTURE}" in
+ amd64|i386)
+ LINUX="vmlinuz"
+ ;;
+
+ powerpc)
+ LINUX="vmlinux"
+ ;;
+esac
+
+case "${LB_INITRAMFS}" in
+ casper)
+ INITFS="casper"
+ ;;
+
+ live-initramfs|live-boot)
+ INITFS="live"
+ ;;
+esac
+
+# Creating directory
+mkdir -p binary/${INITFS}
+
+for STAGE in ${LB_CACHE_STAGES}
+do
+ if [ "${STAGE}" = "rootfs" ] && [ -d cache/stages_rootfs ]
+ then
+ # Removing old chroot
+ rm -rf binary/"${INITFS}"/filesystem.*
+
+ # Restoring old cache
+ mkdir -p binary/"${INITFS}"
+ ${LB_ROOT_COMMAND} cp -a cache/stages_rootfs/filesystem.* binary/"${INITFS}"
+
+ if [ -n "${LB_ROOT_COMMAND}" ]
+ then
+ ${LB_ROOT_COMMAND} chown -R $(whoami):$(whoami) binary
+ fi
+
+ # Creating stage file
+ Create_stagefile .stage/binary_rootfs
+ exit 0
+ fi
+done
+
+case "${LB_CHROOT_FILESYSTEM}" in
+ ext2|ext3)
+ # Checking depends
+ Check_package chroot/usr/bin/genext2fs genext2fs
+
+ # Restoring cache
+ Restore_cache cache/packages_binary
+
+ # Installing depends
+ Install_package
+
+ # Remove old image
+ if [ -f binary/${INITFS}/filesystem.${LB_CHROOT_FILESYSTEM} ]
+ then
+ rm -f binary/${INITFS}/filesystem.${LB_CHROOT_FILESYSTEM}
+ fi
+
+ DU_DIM="$(du -ks chroot/chroot | cut -f1)"
+ REAL_DIM="$(Calculate_partition_size ${DU_DIM} ${LB_CHROOT_FILESYSTEM})"
+
+ RESERVED_PERCENTAGE="--reserved-percentage"
+
+ case "${LB_BUILD_WITH_CHROOT}" in
+ true)
+ Chroot chroot "genext2fs --size-in-blocks=${REAL_DIM} ${RESERVED_PERCENTAGE}=0 --root=chroot filesystem.${LB_CHROOT_FILESYSTEM}"
+
+ # Move image
+ mv chroot/filesystem.${LB_CHROOT_FILESYSTEM} binary/${INITFS}
+
+ case "${LB_MODE}" in
+ ubuntu)
+ du -B 1 -s chroot/chroot | cut -f1 > binary/${INITFS}/filesystem.size
+ ;;
+ esac
+
+ if [ -e chroot/chroot.cache ]
+ then
+ rm -f .lock
+ mv chroot/chroot chroot.tmp
+
+ lb chroot_linux-image remove ${*}
+ lb chroot_sources 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_dpkg remove ${*}
+ lb chroot_debianchroot remove ${*}
+ lb chroot_sysfs remove ${*}
+ lb chroot_selinuxfs remove ${*}
+ lb chroot_proc remove ${*}
+ lb chroot_devpts remove ${*}
+
+ rm -rf chroot
+ mv chroot.tmp chroot
+
+ 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_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_sources install ${*}
+ lb chroot_linux-image install ${*}
+
+ touch .lock
+ else
+ rm -rf chroot/chroot
+
+ # Removing depends
+ Remove_package
+ fi
+ ;;
+
+ false)
+ genext2fs --size-in-blocks=${REAL_DIM} ${RESERVED_PERCENTAGE}=0 --root=chroot binary/${INITFS}/filesystem.${LB_CHROOT_FILESYSTEM}
+ ;;
+ esac
+
+ # Saving cache
+ Save_cache cache/packages_binary
+ ;;
+
+ jffs2)
+ # Checking depends
+ Check_package chroot/usr/sbin/mkfs.jffs2 mtd-tools
+
+ # Restoring cache
+ Restore_cache cache/packages_binary
+
+ # Installing depends
+ Install_package
+
+ # Remove old jffs2 image
+ if [ -f binary/${INITFS}/filesystem.jffs2 ]
+ then
+ rm -f binary/${INITFS}/filesystem.jffs2
+ fi
+
+ if [ -n "${LB_JFFS2_ERASEBLOCK}" ]
+ then
+ JFFS2_OPTIONS="--eraseblock=${LB_JFFS2_ERASEBLOCK}"
+ fi
+
+ case "${LB_BUILD_WITH_CHROOT}" in
+ true)
+ Chroot chroot "mkfs.jffs2 ${JFFS2_OPTIONS} --root=chroot --output filesystem.jffs2"
+
+ # Move image
+ mv chroot/filesystem.jffs2 binary/${INITFS}
+
+ if [ -e chroot/chroot.cache ]
+ then
+ rm -f .lock
+ mv chroot/chroot chroot.tmp
+
+ lb chroot_linux-image remove ${*}
+ lb chroot_sources 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_dpkg remove ${*}
+ lb chroot_debianchroot remove ${*}
+ lb chroot_sysfs remove ${*}
+ lb chroot_selinuxfs remove ${*}
+ lb chroot_proc remove ${*}
+ lb chroot_devpts remove ${*}
+
+ rm -rf chroot
+ mv chroot.tmp chroot
+
+ 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_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_sources install ${*}
+ lb chroot_linux-image install ${*}
+
+ touch .lock
+ else
+ rm -rf chroot/chroot
+
+ # Removing depends
+ Remove_package
+ fi
+ ;;
+
+ false)
+ mkfs.jffs2 ${JFFS2_OPTIONS} --root=chroot --output binary/${INITFS}/filesystem.jffs2
+ ;;
+ esac
+
+ # Saving cache
+ Save_cache cache/packages_binary
+ ;;
+
+ plain)
+ if [ -d binary/${INITFS}/filesystem.dir ]
+ then
+ rm -rf binary/${INITFS}/filesystem.dir
+ fi
+
+ case "${LB_BUILD_WITH_CHROOT}" in
+ true)
+ mv chroot/chroot binary/${INITFS}/filesystem.dir
+ ;;
+
+ false)
+ cp -a chroot binary/${INITFS}/filesystem.dir
+ ;;
+ esac
+ ;;
+
+ squashfs)
+ # Checking depends
+ Check_package chroot/usr/share/doc/squashfs-tools squashfs-tools
+
+ # Restoring cache
+ Restore_cache cache/packages_binary
+
+ # Installing depends
+ Install_package
+
+ Echo_message "Preparing squashfs image..."
+ Echo_message "This may take a while."
+
+ # Remove old squashfs image
+ if [ -f binary/${INITFS}/filesystem.squashfs ]
+ then
+ rm -f binary/${INITFS}/filesystem.squashfs
+ fi
+
+ # Remove stale squashfs image
+ rm -f chroot/filesystem.squashfs
+
+ MKSQUASHFS_OPTIONS="${MKSQUASHFS_OPTIONS} -no-progress"
+
+ if [ "${_VERBOSE}" = "true" ]
+ then
+ MKSQUASHFS_OPTIONS="${MKSQUASHFS_OPTIONS} -info"
+ fi
+
+ if [ -f config/binary_rootfs/squashfs.sort ]
+ then
+ MKSQUASHFS_OPTIONS="${MKSQUASHFS_OPTIONS} -sort squashfs.sort"
+ cp config/binary_rootfs/squashfs.sort chroot #FIXME
+ fi
+
+ case "${LB_BUILD_WITH_CHROOT}" in
+ true)
+ # Create image
+ Chroot chroot "mksquashfs chroot filesystem.squashfs ${MKSQUASHFS_OPTIONS}"
+
+ case "${LB_MODE}" in
+ ubuntu)
+ du -B 1 -s chroot/chroot | cut -f1 > binary/${INITFS}/filesystem.size
+ ;;
+ esac
+
+ # Move image
+ ${LB_ROOT_COMMAND} mv chroot/filesystem.squashfs binary/${INITFS}
+ ${LB_ROOT_COMMAND} rm -f chroot/squashfs.sort
+
+ if [ -e chroot/chroot.cache ]
+ then
+ rm -f .lock
+ mv chroot/chroot chroot.tmp
+
+ lb chroot_linux-image remove ${*}
+ lb chroot_sources 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_dpkg remove ${*}
+ lb chroot_debianchroot remove ${*}
+ lb chroot_sysfs remove ${*}
+ lb chroot_selinuxfs remove ${*}
+ lb chroot_proc remove ${*}
+ lb chroot_devpts remove ${*}
+
+ rm -rf chroot
+ mv chroot.tmp chroot
+
+ 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_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_sources install ${*}
+ lb chroot_linux-image install ${*}
+
+ touch .lock
+ else
+ rm -rf chroot/chroot
+
+ # Removing depends
+ Remove_package
+ fi
+
+ ${LB_ROOT_COMMAND} chmod 0644 binary/${INITFS}/filesystem.squashfs
+ ;;
+
+ false)
+ mksquashfs chroot binary/${INITFS}/filesystem.squashfs ${MKSQUASHFS_OPTIONS}
+
+ case "${LB_MODE}" in
+ ubuntu)
+ du -B 1 -s chroot | cut -f1 > binary/${INITFS}/filesystem.size
+ ;;
+ esac
+ ;;
+ esac
+
+ if [ -n "${LB_ROOT_COMMAND}" ]
+ then
+ ${LB_ROOT_COMMAND} chown -R $(whoami):$(whoami) binary/${INITFS}
+ fi
+
+ # Saving cache
+ Save_cache cache/packages_binary
+ ;;
+
+ none)
+ if [ -d binary ]
+ then
+ rm -rf binary
+ fi
+
+ case "${LB_BUILD_WITH_CHROOT}" in
+ true)
+ mv chroot/chroot binary
+ ;;
+
+ false)
+ Echo_message "This may take a while."
+ cp -a chroot binary
+ ;;
+ esac
+ ;;
+
+esac
+
+for STAGE in ${LB_CACHE_STAGES}
+do
+ if [ "${STAGE}" = "rootfs" ]
+ then
+ rm -rf cache/stages_rootfs
+
+ mkdir -p cache/stages_rootfs
+
+ if [ "${LB_CHROOT_FILESYSTEM}" != "none" ]
+ then
+ ${LB_ROOT_COMMAND} cp -a binary/"${INITFS}"/filesystem.* cache/stages_rootfs
+ fi
+
+ if [ -n "${LB_ROOT_COMMAND}" ]
+ then
+ ${LB_ROOT_COMMAND} chown -R $(whoami):$(whoami) cache/stages_rootfs
+ fi
+ fi
+done
+
+# Creating stage file
+Create_stagefile .stage/binary_rootfs