summaryrefslogtreecommitdiff
path: root/scripts/build/chroot_dpkg_tmpfs
diff options
context:
space:
mode:
authorChris Lamb <lamby@debian.org>2010-07-31 21:15:31 -0400
committerDaniel Baumann <daniel@debian.org>2011-03-09 19:17:16 +0100
commitff9b1446b4eef136bb54cbc8c12006e575b7ed80 (patch)
tree1fa9b8a79dae6f97a79ace824a9f5f01b7c58dd1 /scripts/build/chroot_dpkg_tmpfs
parenta0fcfedb0b2cc1b6cb6308d220c7c3b90e075f7e (diff)
downloadlive-build-ff9b1446b4eef136bb54cbc8c12006e575b7ed80.zip
live-build-ff9b1446b4eef136bb54cbc8c12006e575b7ed80.tar.gz
Run chroot stage with /var/lib/dpkg mounted as a tmpfs
Idea from Thomas Lange and FAI. Speedup in my testcase (standard image) is 3m00 => 2m50, probably much better improvements for the desktop image clients.
Diffstat (limited to 'scripts/build/chroot_dpkg_tmpfs')
-rwxr-xr-xscripts/build/chroot_dpkg_tmpfs74
1 files changed, 74 insertions, 0 deletions
diff --git a/scripts/build/chroot_dpkg_tmpfs b/scripts/build/chroot_dpkg_tmpfs
new file mode 100755
index 0000000..8d7e264
--- /dev/null
+++ b/scripts/build/chroot_dpkg_tmpfs
@@ -0,0 +1,74 @@
+#!/bin/sh
+
+# lh_chroot_dpkg_tmpfs(1) - manage tmpfs for /var/lib/dpkg
+# Copyright (C) 2006-2010 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
+
+# Including common functions
+. "${LH_BASE:-/usr/share/live-helper}"/scripts/build.sh
+
+# Setting static variables
+DESCRIPTION="$(Echo 'manage /var/lib/dpkg')"
+HELP=""
+USAGE="${PROGRAM} {install|remove} [--force]"
+
+Arguments "${@}"
+
+# Reading configuration files
+Read_conffiles config/all config/common config/bootstrap config/chroot config/binary config/source
+Set_defaults
+
+# Requiring stage file
+Require_stagefile .stage/config .stage/bootstrap
+
+case "${1}" in
+ install)
+ Echo_message "Configuring tmpfs for /var/lib/dpkg"
+
+ # Checking stage file
+ Check_stagefile .stage/chroot_dpkg_tmpfs
+
+ # Checking lock file
+ Check_lockfile .lock
+
+ # Creating lock file
+ Create_lockfile .lock
+
+ mv chroot/var/lib/dpkg chroot/var/lib/dpkg.tmp
+ mkdir chroot/var/lib/dpkg
+ mount -t tmpfs tmpfs chroot/var/lib/dpkg
+ mv chroot/var/lib/dpkg.tmp/* chroot/var/lib/dpkg
+ rm -rf chroot/var/lib/dpkg.tmp
+
+ # Creating stage file
+ Create_stagefile .stage/chroot_dpkg_tmpfs
+ ;;
+
+ remove)
+ Echo_message "Deconfiguring tmpfs for /var/lib/dpkg"
+
+ # Checking lock file
+ Check_lockfile .lock
+
+ # Creating lock file
+ Create_lockfile .lock
+
+ mkdir -p chroot/var/lib/dpkg.tmp
+ mv chroot/var/lib/dpkg/* chroot/var/lib/dpkg.tmp
+ umount chroot/var/lib/dpkg
+ rm -rf chroot/var/lib/dpkg
+ mv chroot/var/lib/dpkg.tmp chroot/var/lib/dpkg
+
+ # Removing stage file
+ rm -f .stage/chroot_dpkg_tmpfs
+ ;;
+
+ *)
+ Usage
+ ;;
+esac