2007-09-23 08:04:46 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2010-09-02 11:12:37 +00:00
|
|
|
## live-build(7) - System Build Scripts
|
2012-02-04 19:41:41 -01:00
|
|
|
## Copyright (C) 2006-2012 Daniel Baumann <daniel@debian.org>
|
2010-09-02 11:12:37 +00:00
|
|
|
##
|
|
|
|
## 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:46 +00:00
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2007-09-23 08:05:11 +00:00
|
|
|
# Including common functions
|
2010-09-07 13:11:20 +00:00
|
|
|
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
2007-09-23 08:04:46 +00:00
|
|
|
|
2007-09-23 08:05:11 +00:00
|
|
|
# Setting static variables
|
2009-01-15 01:37:42 -01:00
|
|
|
DESCRIPTION="$(Echo 'build rootfs image')"
|
2007-09-23 08:04:48 +00:00
|
|
|
HELP=""
|
|
|
|
USAGE="${PROGRAM} [--force]"
|
|
|
|
|
|
|
|
Arguments "${@}"
|
|
|
|
|
2007-09-23 08:04:46 +00:00
|
|
|
# Reading configuration files
|
2008-10-28 14:26:17 -01:00
|
|
|
Read_conffiles config/all config/common config/bootstrap config/chroot config/binary config/source
|
2007-09-23 08:04:46 +00:00
|
|
|
Set_defaults
|
|
|
|
|
2007-09-23 08:05:11 +00:00
|
|
|
Echo_message "Begin building root filesystem image..."
|
2007-09-23 08:04:49 +00:00
|
|
|
|
2007-09-23 08:04:46 +00:00
|
|
|
# Requiring stage file
|
2008-10-14 19:32:50 +00:00
|
|
|
Require_stagefile .stage/config .stage/bootstrap .stage/binary_chroot
|
2007-09-23 08:04:46 +00:00
|
|
|
|
2007-09-23 08:04:50 +00:00
|
|
|
# Checking stage file
|
|
|
|
Check_stagefile .stage/binary_rootfs
|
|
|
|
|
2007-09-23 08:04:46 +00:00
|
|
|
# Checking lock file
|
2007-09-23 08:04:47 +00:00
|
|
|
Check_lockfile .lock
|
2007-09-23 08:04:46 +00:00
|
|
|
|
|
|
|
# Creating lock file
|
2007-09-23 08:04:47 +00:00
|
|
|
Create_lockfile .lock
|
2007-09-23 08:04:46 +00:00
|
|
|
|
2010-12-05 12:27:08 -01:00
|
|
|
case "${LB_ARCHITECTURES}" in
|
2009-12-09 19:54:41 -01:00
|
|
|
amd64|i386)
|
2007-09-23 08:05:12 +00:00
|
|
|
LINUX="vmlinuz"
|
|
|
|
;;
|
|
|
|
|
|
|
|
powerpc)
|
|
|
|
LINUX="vmlinux"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2010-09-07 13:11:20 +00:00
|
|
|
case "${LB_INITRAMFS}" in
|
2007-09-23 08:04:52 +00:00
|
|
|
casper)
|
|
|
|
INITFS="casper"
|
|
|
|
;;
|
|
|
|
|
2011-01-02 08:32:58 -01:00
|
|
|
live-boot)
|
2007-09-23 08:04:52 +00:00
|
|
|
INITFS="live"
|
|
|
|
;;
|
2011-06-08 08:07:26 +00:00
|
|
|
|
|
|
|
*)
|
|
|
|
INITFS="boot"
|
|
|
|
;;
|
2007-09-23 08:04:52 +00:00
|
|
|
esac
|
|
|
|
|
2007-09-23 08:04:46 +00:00
|
|
|
# Creating directory
|
2007-09-23 08:05:11 +00:00
|
|
|
mkdir -p binary/${INITFS}
|
2007-09-23 08:04:46 +00:00
|
|
|
|
2010-09-07 13:11:20 +00:00
|
|
|
for STAGE in ${LB_CACHE_STAGES}
|
2007-09-23 08:05:12 +00:00
|
|
|
do
|
|
|
|
if [ "${STAGE}" = "rootfs" ] && [ -d cache/stages_rootfs ]
|
|
|
|
then
|
|
|
|
# Removing old chroot
|
|
|
|
rm -rf binary/"${INITFS}"/filesystem.*
|
|
|
|
|
|
|
|
# Restoring old cache
|
|
|
|
mkdir -p binary/"${INITFS}"
|
2010-09-07 13:11:20 +00:00
|
|
|
${LB_ROOT_COMMAND} cp -a cache/stages_rootfs/filesystem.* binary/"${INITFS}"
|
2007-09-23 08:05:12 +00:00
|
|
|
|
2010-09-07 13:11:20 +00:00
|
|
|
if [ -n "${LB_ROOT_COMMAND}" ]
|
2007-09-23 08:05:12 +00:00
|
|
|
then
|
2010-09-07 13:11:20 +00:00
|
|
|
${LB_ROOT_COMMAND} chown -R $(whoami):$(whoami) binary
|
2007-09-23 08:05:12 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Creating stage file
|
|
|
|
Create_stagefile .stage/binary_rootfs
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2010-09-07 13:11:20 +00:00
|
|
|
case "${LB_CHROOT_FILESYSTEM}" in
|
2011-08-25 21:47:30 +00:00
|
|
|
ext2|ext3|ext4)
|
2007-09-23 08:04:51 +00:00
|
|
|
# Checking depends
|
2011-08-25 21:47:30 +00:00
|
|
|
Check_package chroot/sbin/mkfs.${LB_BINARY_FILESYSTEM} e2fsprogs
|
2007-09-23 08:04:48 +00:00
|
|
|
|
2007-09-23 08:05:15 +00:00
|
|
|
# Restoring cache
|
|
|
|
Restore_cache cache/packages_binary
|
|
|
|
|
2007-09-23 08:04:51 +00:00
|
|
|
# Installing depends
|
|
|
|
Install_package
|
2007-09-23 08:04:48 +00:00
|
|
|
|
2008-03-02 09:12:02 -01:00
|
|
|
# Remove old image
|
2010-09-07 13:11:20 +00:00
|
|
|
if [ -f binary/${INITFS}/filesystem.${LB_CHROOT_FILESYSTEM} ]
|
2007-09-23 08:04:46 +00:00
|
|
|
then
|
2010-09-07 13:11:20 +00:00
|
|
|
rm -f binary/${INITFS}/filesystem.${LB_CHROOT_FILESYSTEM}
|
2007-09-23 08:04:46 +00:00
|
|
|
fi
|
|
|
|
|
2011-05-25 10:32:52 +00:00
|
|
|
case "${LB_BUILD_WITH_CHROOT}" in
|
|
|
|
true)
|
2011-06-08 08:02:10 +00:00
|
|
|
DU_DIM="$(du -ms chroot/chroot | cut -f1)"
|
|
|
|
INODES="$(find chroot/chroot | wc -l)"
|
2011-05-25 10:32:52 +00:00
|
|
|
;;
|
|
|
|
|
|
|
|
false)
|
2011-06-08 08:02:10 +00:00
|
|
|
DU_DIM="$(du -ms chroot | cut -f1)"
|
|
|
|
INODES="$(find chroot | wc -l)"
|
2011-05-25 10:32:52 +00:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2010-09-07 13:11:20 +00:00
|
|
|
REAL_DIM="$(Calculate_partition_size ${DU_DIM} ${LB_CHROOT_FILESYSTEM})"
|
2011-06-08 08:02:10 +00:00
|
|
|
REAL_INODES="$(Calculate_partition_size ${INODES} ${LB_CHROOT_FILESYSTEM})"
|
2007-09-23 08:04:46 +00:00
|
|
|
|
2010-09-07 13:11:20 +00:00
|
|
|
case "${LB_BUILD_WITH_CHROOT}" in
|
2009-12-13 19:17:45 -01:00
|
|
|
true)
|
2011-06-08 08:02:10 +00:00
|
|
|
dd if=/dev/zero of=chroot/filesystem.${LB_CHROOT_FILESYSTEM} bs=1024k count=0 seek=${REAL_DIM}
|
2011-09-30 22:23:34 +00:00
|
|
|
|
|
|
|
if ! Chroot chroot "test -s /etc/mtab"
|
|
|
|
then
|
|
|
|
Chroot chroot "ln -s /proc/mounts/mtab /etc/mtab"
|
|
|
|
FAKE_MTAB="true"
|
|
|
|
fi
|
|
|
|
|
2011-06-08 08:02:10 +00:00
|
|
|
Chroot chroot "mkfs.${LB_CHROOT_FILESYSTEM} -F -b 1024 -N ${REAL_INODES} -m 0 filesystem.${LB_CHROOT_FILESYSTEM}"
|
|
|
|
|
|
|
|
mkdir -p filesystem.tmp
|
|
|
|
${LB_ROOT_COMMAND} mount -o loop chroot/filesystem.${LB_CHROOT_FILESYSTEM} filesystem.tmp
|
|
|
|
cp -a chroot/chroot/* filesystem.tmp
|
|
|
|
|
2011-09-30 22:23:34 +00:00
|
|
|
if [ "${FAKE_MTAB}" = "true" ]
|
|
|
|
then
|
|
|
|
Chroot chroot "rm -f /etc/mtab"
|
|
|
|
fi
|
|
|
|
|
2011-06-08 08:02:10 +00:00
|
|
|
${LB_ROOT_COMMAND} umount filesystem.tmp
|
|
|
|
rmdir filesystem.tmp
|
2007-09-23 08:05:15 +00:00
|
|
|
|
|
|
|
# Move image
|
2010-09-07 13:11:20 +00:00
|
|
|
mv chroot/filesystem.${LB_CHROOT_FILESYSTEM} binary/${INITFS}
|
2009-10-16 16:35:28 +00:00
|
|
|
|
2010-09-07 13:11:20 +00:00
|
|
|
case "${LB_MODE}" in
|
2011-07-19 08:51:20 +00:00
|
|
|
ubuntu|kubuntu)
|
2010-07-02 12:29:52 +00:00
|
|
|
du -B 1 -s chroot/chroot | cut -f1 > binary/${INITFS}/filesystem.size
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2009-10-16 16:35:28 +00:00
|
|
|
if [ -e chroot/chroot.cache ]
|
|
|
|
then
|
|
|
|
rm -f .lock
|
|
|
|
mv chroot/chroot chroot.tmp
|
|
|
|
|
2011-08-24 18:34:01 +00:00
|
|
|
lb chroot_archives binary remove ${*}
|
2010-09-02 13:14:29 +00:00
|
|
|
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 ${*}
|
2009-10-16 16:35:28 +00:00
|
|
|
|
|
|
|
rm -rf chroot
|
|
|
|
mv chroot.tmp chroot
|
|
|
|
|
2010-09-02 13:14:29 +00:00
|
|
|
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 ${*}
|
2012-01-03 19:08:34 -01:00
|
|
|
lb chroot_archives binary install ${*}
|
2009-10-16 16:35:28 +00:00
|
|
|
|
|
|
|
touch .lock
|
|
|
|
else
|
|
|
|
rm -rf chroot/chroot
|
2010-03-08 06:24:03 -01:00
|
|
|
|
|
|
|
# Removing depends
|
|
|
|
Remove_package
|
2009-10-16 16:35:28 +00:00
|
|
|
fi
|
2007-09-23 08:05:15 +00:00
|
|
|
;;
|
2007-09-23 08:04:48 +00:00
|
|
|
|
2009-12-13 19:17:45 -01:00
|
|
|
false)
|
2011-06-08 08:02:10 +00:00
|
|
|
dd if=/dev/zero of=binary/${INITFS}/filesystem.${LB_CHROOT_FILESYSTEM} bs=1024k count=0 seek=${REAL_DIM}
|
|
|
|
mkfs.${LB_CHROOT_FILESYSTEM} -F -b 1024 -N ${REAL_INODES} -m 0 binary/${INITFS}/filesystem.${LB_CHROOT_FILESYSTEM}
|
|
|
|
|
|
|
|
mkdir -p filesystem.tmp
|
|
|
|
${LB_ROOT_COMMAND} mount -o loop binary/${INITFS}/filesystem.${LB_CHROOT_FILESYSTEM} filesystem.tmp
|
|
|
|
cp -a chroot/* filesystem.tmp
|
|
|
|
|
|
|
|
${LB_ROOT_COMMAND} umount filesystem.tmp
|
|
|
|
rmdir filesystem.tmp
|
2007-09-23 08:05:15 +00:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
# Saving cache
|
|
|
|
Save_cache cache/packages_binary
|
2007-09-23 08:04:46 +00:00
|
|
|
;;
|
|
|
|
|
2008-02-20 23:07:54 -01:00
|
|
|
jffs2)
|
|
|
|
# Checking depends
|
|
|
|
Check_package chroot/usr/sbin/mkfs.jffs2 mtd-tools
|
|
|
|
|
|
|
|
# Restoring cache
|
|
|
|
Restore_cache cache/packages_binary
|
|
|
|
|
|
|
|
# Installing depends
|
|
|
|
Install_package
|
|
|
|
|
2008-03-01 11:19:54 -01:00
|
|
|
# Remove old jffs2 image
|
2008-02-20 23:07:54 -01:00
|
|
|
if [ -f binary/${INITFS}/filesystem.jffs2 ]
|
|
|
|
then
|
|
|
|
rm -f binary/${INITFS}/filesystem.jffs2
|
|
|
|
fi
|
|
|
|
|
2010-09-07 13:11:20 +00:00
|
|
|
if [ -n "${LB_JFFS2_ERASEBLOCK}" ]
|
2008-03-01 11:19:54 -01:00
|
|
|
then
|
2010-09-07 13:11:20 +00:00
|
|
|
JFFS2_OPTIONS="--eraseblock=${LB_JFFS2_ERASEBLOCK}"
|
2008-03-01 11:19:54 -01:00
|
|
|
fi
|
|
|
|
|
2010-09-07 13:11:20 +00:00
|
|
|
case "${LB_BUILD_WITH_CHROOT}" in
|
2009-12-13 19:17:45 -01:00
|
|
|
true)
|
2008-10-28 14:44:06 -01:00
|
|
|
Chroot chroot "mkfs.jffs2 ${JFFS2_OPTIONS} --root=chroot --output filesystem.jffs2"
|
2008-02-20 23:07:54 -01:00
|
|
|
|
|
|
|
# Move image
|
|
|
|
mv chroot/filesystem.jffs2 binary/${INITFS}
|
2009-10-16 16:35:28 +00:00
|
|
|
|
|
|
|
if [ -e chroot/chroot.cache ]
|
|
|
|
then
|
|
|
|
rm -f .lock
|
|
|
|
mv chroot/chroot chroot.tmp
|
|
|
|
|
2011-08-24 18:34:01 +00:00
|
|
|
lb chroot_archives binary remove ${*}
|
2010-09-02 13:14:29 +00:00
|
|
|
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 ${*}
|
2009-10-16 16:35:28 +00:00
|
|
|
|
|
|
|
rm -rf chroot
|
|
|
|
mv chroot.tmp chroot
|
|
|
|
|
2010-09-02 13:14:29 +00:00
|
|
|
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 ${*}
|
2012-01-03 19:08:34 -01:00
|
|
|
lb chroot_archives binary install ${*}
|
2009-12-21 12:33:03 -01:00
|
|
|
|
|
|
|
touch .lock
|
2009-10-16 16:35:28 +00:00
|
|
|
else
|
|
|
|
rm -rf chroot/chroot
|
2010-03-08 06:24:03 -01:00
|
|
|
|
|
|
|
# Removing depends
|
|
|
|
Remove_package
|
2009-10-16 16:35:28 +00:00
|
|
|
fi
|
2008-02-20 23:07:54 -01:00
|
|
|
;;
|
|
|
|
|
2009-12-13 19:17:45 -01:00
|
|
|
false)
|
2008-03-01 11:19:54 -01:00
|
|
|
mkfs.jffs2 ${JFFS2_OPTIONS} --root=chroot --output binary/${INITFS}/filesystem.jffs2
|
2008-02-20 23:07:54 -01:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
# Saving cache
|
|
|
|
Save_cache cache/packages_binary
|
|
|
|
;;
|
|
|
|
|
2011-09-28 09:17:47 +00:00
|
|
|
none)
|
2007-09-23 08:04:52 +00:00
|
|
|
if [ -d binary/${INITFS}/filesystem.dir ]
|
2007-09-23 08:04:46 +00:00
|
|
|
then
|
2007-09-23 08:04:52 +00:00
|
|
|
rm -rf binary/${INITFS}/filesystem.dir
|
2007-09-23 08:04:46 +00:00
|
|
|
fi
|
|
|
|
|
2010-09-07 13:11:20 +00:00
|
|
|
case "${LB_BUILD_WITH_CHROOT}" in
|
2009-12-13 19:17:45 -01:00
|
|
|
true)
|
2007-09-23 08:05:15 +00:00
|
|
|
mv chroot/chroot binary/${INITFS}/filesystem.dir
|
|
|
|
;;
|
|
|
|
|
2009-12-13 19:17:45 -01:00
|
|
|
false)
|
2007-09-23 08:05:15 +00:00
|
|
|
cp -a chroot binary/${INITFS}/filesystem.dir
|
|
|
|
;;
|
|
|
|
esac
|
2007-09-23 08:04:46 +00:00
|
|
|
;;
|
|
|
|
|
|
|
|
squashfs)
|
2007-09-23 08:04:51 +00:00
|
|
|
# Checking depends
|
2007-09-23 08:05:15 +00:00
|
|
|
Check_package chroot/usr/share/doc/squashfs-tools squashfs-tools
|
|
|
|
|
|
|
|
# Restoring cache
|
|
|
|
Restore_cache cache/packages_binary
|
2007-09-23 08:04:51 +00:00
|
|
|
|
|
|
|
# Installing depends
|
|
|
|
Install_package
|
|
|
|
|
2010-01-23 07:47:41 -01:00
|
|
|
Echo_message "Preparing squashfs image..."
|
|
|
|
Echo_message "This may take a while."
|
|
|
|
|
2007-09-23 08:04:51 +00:00
|
|
|
# Remove old squashfs image
|
2007-09-23 08:04:52 +00:00
|
|
|
if [ -f binary/${INITFS}/filesystem.squashfs ]
|
2007-09-23 08:04:48 +00:00
|
|
|
then
|
2007-09-23 08:04:52 +00:00
|
|
|
rm -f binary/${INITFS}/filesystem.squashfs
|
2007-09-23 08:04:48 +00:00
|
|
|
fi
|
|
|
|
|
2008-03-23 03:08:46 -01:00
|
|
|
# Remove stale squashfs image
|
|
|
|
rm -f chroot/filesystem.squashfs
|
|
|
|
|
2009-11-16 10:40:43 -01:00
|
|
|
MKSQUASHFS_OPTIONS="${MKSQUASHFS_OPTIONS} -no-progress"
|
2007-09-23 08:04:48 +00:00
|
|
|
|
2009-12-13 19:17:45 -01:00
|
|
|
if [ "${_VERBOSE}" = "true" ]
|
2007-09-23 08:04:46 +00:00
|
|
|
then
|
2007-09-23 08:05:09 +00:00
|
|
|
MKSQUASHFS_OPTIONS="${MKSQUASHFS_OPTIONS} -info"
|
2007-09-23 08:04:46 +00:00
|
|
|
fi
|
|
|
|
|
2007-09-23 08:05:11 +00:00
|
|
|
if [ -f config/binary_rootfs/squashfs.sort ]
|
|
|
|
then
|
|
|
|
MKSQUASHFS_OPTIONS="${MKSQUASHFS_OPTIONS} -sort squashfs.sort"
|
2010-09-30 15:30:23 +00:00
|
|
|
|
|
|
|
case "${LB_BUILD_WITH_CHROOT}" in
|
|
|
|
true)
|
|
|
|
cp config/binary_rootfs/squashfs.sort chroot
|
|
|
|
;;
|
|
|
|
|
|
|
|
false)
|
|
|
|
cp config/binary_rootfs/squashfs.sort .
|
|
|
|
;;
|
|
|
|
esac
|
2007-09-23 08:05:11 +00:00
|
|
|
fi
|
|
|
|
|
2011-04-28 22:01:45 +00:00
|
|
|
case "${LB_DISTRIBUTION}" in
|
2012-01-07 18:25:54 -01:00
|
|
|
wheezy|sid)
|
|
|
|
# FIXME: artax-backports once d-i has catched up
|
2011-04-28 22:01:45 +00:00
|
|
|
MKSQUASHFS_OPTIONS="${MKSQUASHFS_OPTIONS} -comp xz"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2010-09-07 13:11:20 +00:00
|
|
|
case "${LB_BUILD_WITH_CHROOT}" in
|
2009-12-13 19:17:45 -01:00
|
|
|
true)
|
2011-06-02 22:21:07 +00:00
|
|
|
if [ -e config/binary_rootfs/excludes ]
|
|
|
|
then
|
|
|
|
cp config/binary_rootfs/excludes chroot/excludes
|
|
|
|
|
2011-06-13 19:05:05 +00:00
|
|
|
MKSQUASHFS_OPTIONS="${MKSQUASHFS_OPTIONS} -wildcards -ef /excludes"
|
2011-06-02 22:21:07 +00:00
|
|
|
fi
|
|
|
|
|
2007-09-23 08:05:15 +00:00
|
|
|
# Create image
|
2008-10-28 14:44:06 -01:00
|
|
|
Chroot chroot "mksquashfs chroot filesystem.squashfs ${MKSQUASHFS_OPTIONS}"
|
2007-09-23 08:05:15 +00:00
|
|
|
|
2011-06-02 22:21:07 +00:00
|
|
|
rm -f chroot/chroot/excludes
|
|
|
|
|
2010-09-07 13:11:20 +00:00
|
|
|
case "${LB_MODE}" in
|
2011-07-19 08:51:20 +00:00
|
|
|
ubuntu|kubuntu)
|
2010-07-02 12:29:52 +00:00
|
|
|
du -B 1 -s chroot/chroot | cut -f1 > binary/${INITFS}/filesystem.size
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2007-09-23 08:05:15 +00:00
|
|
|
# Move image
|
2010-09-07 13:11:20 +00:00
|
|
|
${LB_ROOT_COMMAND} mv chroot/filesystem.squashfs binary/${INITFS}
|
|
|
|
${LB_ROOT_COMMAND} rm -f chroot/squashfs.sort
|
2009-10-16 16:35:28 +00:00
|
|
|
|
|
|
|
if [ -e chroot/chroot.cache ]
|
|
|
|
then
|
|
|
|
rm -f .lock
|
|
|
|
mv chroot/chroot chroot.tmp
|
|
|
|
|
2011-08-24 18:34:01 +00:00
|
|
|
lb chroot_archives binary remove ${*}
|
2010-09-02 13:14:29 +00:00
|
|
|
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 ${*}
|
2009-10-16 16:35:28 +00:00
|
|
|
|
|
|
|
rm -rf chroot
|
|
|
|
mv chroot.tmp chroot
|
|
|
|
|
2010-09-02 13:14:29 +00:00
|
|
|
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 ${*}
|
2012-01-03 19:08:34 -01:00
|
|
|
lb chroot_archives binary install ${*}
|
2009-10-16 16:35:28 +00:00
|
|
|
|
|
|
|
touch .lock
|
|
|
|
else
|
|
|
|
rm -rf chroot/chroot
|
2010-03-08 06:24:03 -01:00
|
|
|
|
|
|
|
# Removing depends
|
|
|
|
Remove_package
|
2009-10-16 16:35:28 +00:00
|
|
|
fi
|
|
|
|
|
2010-09-07 13:11:20 +00:00
|
|
|
${LB_ROOT_COMMAND} chmod 0644 binary/${INITFS}/filesystem.squashfs
|
2007-09-23 08:05:15 +00:00
|
|
|
;;
|
2007-09-23 08:05:09 +00:00
|
|
|
|
2009-12-13 19:17:45 -01:00
|
|
|
false)
|
2011-06-02 22:21:07 +00:00
|
|
|
if [ -e config/binary_rootfs/excludes ]
|
|
|
|
then
|
2011-06-13 19:05:05 +00:00
|
|
|
MKSQUASHFS_OPTIONS="${MKSQUASHFS_OPTIONS} -wildcards -ef config/binary_rootfs/excludes"
|
2011-06-02 22:21:07 +00:00
|
|
|
fi
|
|
|
|
|
2007-09-23 08:05:15 +00:00
|
|
|
mksquashfs chroot binary/${INITFS}/filesystem.squashfs ${MKSQUASHFS_OPTIONS}
|
2010-07-02 12:29:52 +00:00
|
|
|
|
2010-09-07 13:11:20 +00:00
|
|
|
case "${LB_MODE}" in
|
2011-07-19 08:51:20 +00:00
|
|
|
ubuntu|kubuntu)
|
2010-07-02 12:29:52 +00:00
|
|
|
du -B 1 -s chroot | cut -f1 > binary/${INITFS}/filesystem.size
|
|
|
|
;;
|
|
|
|
esac
|
2007-09-23 08:05:15 +00:00
|
|
|
;;
|
|
|
|
esac
|
2007-09-23 08:04:48 +00:00
|
|
|
|
2010-09-07 13:11:20 +00:00
|
|
|
if [ -n "${LB_ROOT_COMMAND}" ]
|
2007-09-23 08:04:48 +00:00
|
|
|
then
|
2010-09-07 13:11:20 +00:00
|
|
|
${LB_ROOT_COMMAND} chown -R $(whoami):$(whoami) binary/${INITFS}
|
2007-09-23 08:04:46 +00:00
|
|
|
fi
|
2007-09-23 08:04:51 +00:00
|
|
|
|
2007-09-23 08:05:15 +00:00
|
|
|
# Saving cache
|
|
|
|
Save_cache cache/packages_binary
|
2007-09-23 08:04:46 +00:00
|
|
|
;;
|
2009-02-25 07:51:28 -01:00
|
|
|
|
|
|
|
none)
|
|
|
|
if [ -d binary ]
|
|
|
|
then
|
|
|
|
rm -rf binary
|
|
|
|
fi
|
|
|
|
|
2010-09-07 13:11:20 +00:00
|
|
|
case "${LB_BUILD_WITH_CHROOT}" in
|
2009-12-13 19:17:45 -01:00
|
|
|
true)
|
2009-02-25 07:51:28 -01:00
|
|
|
mv chroot/chroot binary
|
|
|
|
;;
|
|
|
|
|
2009-12-13 19:17:45 -01:00
|
|
|
false)
|
2009-02-25 07:51:28 -01:00
|
|
|
Echo_message "This may take a while."
|
|
|
|
cp -a chroot binary
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
;;
|
2007-09-23 08:04:46 +00:00
|
|
|
|
2010-10-04 13:49:08 +00:00
|
|
|
esac
|
2010-09-26 12:28:41 +00:00
|
|
|
|
2010-09-07 13:11:20 +00:00
|
|
|
for STAGE in ${LB_CACHE_STAGES}
|
2007-09-23 08:05:12 +00:00
|
|
|
do
|
|
|
|
if [ "${STAGE}" = "rootfs" ]
|
|
|
|
then
|
|
|
|
rm -rf cache/stages_rootfs
|
|
|
|
|
|
|
|
mkdir -p cache/stages_rootfs
|
|
|
|
|
2010-09-07 13:11:20 +00:00
|
|
|
if [ "${LB_CHROOT_FILESYSTEM}" != "none" ]
|
2009-02-25 07:51:28 -01:00
|
|
|
then
|
2010-09-07 13:11:20 +00:00
|
|
|
${LB_ROOT_COMMAND} cp -a binary/"${INITFS}"/filesystem.* cache/stages_rootfs
|
2009-02-25 07:51:28 -01:00
|
|
|
fi
|
2007-09-23 08:05:12 +00:00
|
|
|
|
2010-09-07 13:11:20 +00:00
|
|
|
if [ -n "${LB_ROOT_COMMAND}" ]
|
2007-09-23 08:05:12 +00:00
|
|
|
then
|
2010-09-07 13:11:20 +00:00
|
|
|
${LB_ROOT_COMMAND} chown -R $(whoami):$(whoami) cache/stages_rootfs
|
2007-09-23 08:05:12 +00:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2007-09-23 08:04:46 +00:00
|
|
|
# Creating stage file
|
2007-09-23 08:04:47 +00:00
|
|
|
Create_stagefile .stage/binary_rootfs
|