2008-09-07 03:39:35 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
CPIOCONFIG="$(pwd)/archiso-mkinitcpio.conf"
|
|
|
|
PKGLIST=""
|
|
|
|
QUIET="y"
|
|
|
|
FORCE="n"
|
2008-10-19 22:49:55 +02:00
|
|
|
MOUNTFILE="$(pwd)/mounts"
|
2008-09-07 03:39:35 +02:00
|
|
|
|
|
|
|
APPNAME=$(basename "${0}")
|
|
|
|
|
|
|
|
# usage: usage <exitvalue>
|
|
|
|
usage ()
|
|
|
|
{
|
|
|
|
echo "usage ${APPNAME} [options] command <command options>"
|
|
|
|
echo " general options:"
|
|
|
|
echo " -f Force overwrite of working files/squashfs image/bootable image"
|
|
|
|
echo " -i CPIO_CONFIG Use CONFIG file for mkinitcpio. default: ${CPIOCONFIG}"
|
2008-10-20 02:51:48 +02:00
|
|
|
echo " -p PACKAGE(S) Additional package(s) to install, can be used multiple times"
|
2008-09-07 03:39:35 +02:00
|
|
|
echo " -t <iso,disk> Type of image to create. Defaults to iso."
|
|
|
|
echo " -v Enable verbose output."
|
|
|
|
echo " -h This message."
|
|
|
|
echo " commands:"
|
2008-10-19 22:49:55 +02:00
|
|
|
echo " install <working dir> <pkg file> : install packages to the working dir"
|
|
|
|
echo " squash <working dir> <sqfs name> : generate a squashfs image of the working dir"
|
|
|
|
echo " img <working dir> <image name> : build an image from the working dir"
|
2008-09-07 03:39:35 +02:00
|
|
|
exit $1
|
|
|
|
}
|
|
|
|
|
|
|
|
while getopts 'i:P:p:a:t:fvh' arg; do
|
|
|
|
case "${arg}" in
|
|
|
|
i) CPIOCONFIG="${OPTARG}" ;;
|
|
|
|
p) PKGLIST="${PKGLIST} ${OPTARG}" ;;
|
|
|
|
t) IMG_TYPE="${OPTARG}" ;;
|
|
|
|
f) FORCE="y" ;;
|
|
|
|
v) QUIET="n" ;;
|
|
|
|
h|?) usage 0 ;;
|
|
|
|
*) echo "invalid argument '${arg}'"; usage 1 ;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
|
|
|
shift $(($OPTIND - 1))
|
|
|
|
echo "ARGS: $@"
|
|
|
|
|
|
|
|
[ $# -le 1 ] && usage 1
|
|
|
|
|
|
|
|
# do UID checking here so someone can at least get usage instructions
|
|
|
|
if [ "$EUID" != "0" ]; then
|
|
|
|
echo "error: This script must be run as root."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
command_name="${1}"
|
2008-10-19 22:49:55 +02:00
|
|
|
work_dir=""
|
|
|
|
imgname=""
|
|
|
|
|
2008-09-07 03:39:35 +02:00
|
|
|
case "${command_name}" in
|
2008-10-20 02:51:48 +02:00
|
|
|
install) work_dir="${2}"; imgname="none" ;;
|
2008-10-19 22:49:55 +02:00
|
|
|
squash) work_dir="${2}"; imgname="${3}" ;;
|
2008-09-07 03:39:35 +02:00
|
|
|
img) work_dir="${2}"; imgname="${3}" ;;
|
|
|
|
*) echo "invalid command name '${command_name}'"; usage 1 ;;
|
|
|
|
esac
|
|
|
|
|
2008-10-19 22:49:55 +02:00
|
|
|
[ "x${imgname}" = "x" ] && (echo "Image name must be specified" && usage 1)
|
|
|
|
[ "x${work_dir}" = "x" ] && (echo "Please specify a working directory" && usage 1)
|
2008-09-07 03:39:35 +02:00
|
|
|
|
|
|
|
_kversion ()
|
|
|
|
{
|
2008-10-19 22:49:55 +02:00
|
|
|
# Man this is gross... we need a better way to get the kernel version
|
|
|
|
source ${work_dir}/etc/mkinitcpio.d/kernel26.kver
|
2008-09-07 03:39:35 +02:00
|
|
|
echo ${ALL_kver}
|
|
|
|
}
|
|
|
|
|
|
|
|
# usage: _pacman <packages>...
|
|
|
|
_pacman ()
|
|
|
|
{
|
|
|
|
local ret
|
|
|
|
if [ "${QUIET}" = "y" ]; then
|
2008-10-19 22:49:55 +02:00
|
|
|
mkarchroot -f ${work_dir} $* 2>&1 >/dev/null
|
2008-09-07 03:39:35 +02:00
|
|
|
ret=$?
|
|
|
|
else
|
2008-10-19 22:49:55 +02:00
|
|
|
mkarchroot -f ${work_dir} $*
|
2008-09-07 03:39:35 +02:00
|
|
|
ret=$?
|
|
|
|
fi
|
2008-10-19 22:49:55 +02:00
|
|
|
|
|
|
|
# Cleanup
|
|
|
|
find "${work_dir}" -name *.pacnew -name *.pacsave -name *.pacorig -delete
|
|
|
|
|
2008-09-07 03:39:35 +02:00
|
|
|
if [ $ret -ne 0 ]; then
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2008-09-14 06:18:10 +02:00
|
|
|
command_install () {
|
2008-10-19 22:49:55 +02:00
|
|
|
echo "====> Installing packages to '${work_dir}'"
|
2008-09-07 03:39:35 +02:00
|
|
|
if [ -e "${work_dir}" -a "${FORCE}" = "n" ]; then
|
|
|
|
echo "error: Working dir '${work_dir}' already exists, aborting."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2008-10-19 22:49:55 +02:00
|
|
|
mkdir -p "${work_dir}"
|
2008-09-07 03:39:35 +02:00
|
|
|
|
|
|
|
echo "Installing packages..."
|
|
|
|
|
|
|
|
for pkg in ${PKGLIST}; do
|
|
|
|
echo " Installing package '${pkg}'"
|
|
|
|
_pacman "${pkg}"
|
|
|
|
done
|
|
|
|
|
2008-10-19 22:49:55 +02:00
|
|
|
if [ -d "${work_dir}/lib/modules/" ]; then
|
|
|
|
echo "Updating kernel module dependencies"
|
|
|
|
kernelver=$(_kversion)
|
|
|
|
depmod -a -b "${work_dir}" "${kernelver}"
|
|
|
|
fi
|
2008-09-07 03:39:35 +02:00
|
|
|
|
2008-10-19 22:49:55 +02:00
|
|
|
echo "Cleaning up what we can"
|
|
|
|
if [ -d "${work_dir}/boot/" ]; then
|
|
|
|
# remove the initcpio images that were generated for the host system
|
|
|
|
find "${work_dir}/boot" -name *.img -delete
|
|
|
|
fi
|
2008-09-07 03:39:35 +02:00
|
|
|
|
2008-10-19 22:49:55 +02:00
|
|
|
#TODO is this needed? do it at the Makefile level?
|
|
|
|
if [ -d "${work_dir}/home/" ]; then
|
|
|
|
echo "Creating default home directory"
|
|
|
|
install -d -o1000 -g100 -m0755 "${work_dir}/home/arch"
|
|
|
|
fi
|
2008-09-07 03:39:35 +02:00
|
|
|
|
|
|
|
# delete a lot of unnecessary cache/log files
|
|
|
|
kill_dirs="var/abs var/cache/man var/cache/pacman var/log/* var/mail tmp/* initrd"
|
|
|
|
for x in ${kill_dirs}; do
|
2008-10-19 22:49:55 +02:00
|
|
|
if [ -e "${work_dir}/${x}" ]; then
|
|
|
|
rm -rf "${work_dir}/${x}"
|
2008-09-07 03:39:35 +02:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
# pacman DBs are big, delete all sync dbs
|
2008-10-19 22:49:55 +02:00
|
|
|
rm -rf "${work_dir}/var/lib/pacman/sync"
|
2008-09-07 03:39:35 +02:00
|
|
|
|
2008-10-19 22:49:55 +02:00
|
|
|
#TODO test for existance
|
|
|
|
cp "${MOUNTFILE}" "${work_dir}/mounts"
|
2008-09-07 03:39:35 +02:00
|
|
|
|
|
|
|
# always make an addon out of DEF_CONFIG_DIR
|
2008-10-19 22:49:55 +02:00
|
|
|
#echo "Creating default overlay..."
|
|
|
|
#if [ "${QUIET}" = "y" ]; then
|
|
|
|
# mksquashfs "${DEF_CONFIG_DIR}" "${work_dir}/addons/overlay.sqfs" -noappend >/dev/null
|
|
|
|
#else
|
|
|
|
# mksquashfs "${DEF_CONFIG_DIR}" "${work_dir}/addons/overlay.sqfs" -noappend
|
|
|
|
#fi
|
2008-09-14 06:18:10 +02:00
|
|
|
}
|
2008-09-07 03:39:35 +02:00
|
|
|
|
2008-09-14 06:20:47 +02:00
|
|
|
# command_squash path image
|
2008-09-14 06:18:10 +02:00
|
|
|
command_squash () {
|
2008-10-19 22:49:55 +02:00
|
|
|
echo "====> Generating SquashFS image ${imgname}"
|
|
|
|
if [ -e "${imgname}" ]; then
|
2008-09-07 03:39:35 +02:00
|
|
|
if [ "${FORCE}" = "y" ]; then
|
|
|
|
echo -n "Removing old SquashFS image..."
|
2008-10-19 22:49:55 +02:00
|
|
|
rm "${imgname}"
|
2008-09-07 03:39:35 +02:00
|
|
|
echo "done."
|
|
|
|
else
|
2008-10-19 22:49:55 +02:00
|
|
|
echo "error: SquashFS image '${imgname}' already exists, aborting."
|
2008-09-07 03:39:35 +02:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2008-10-19 22:49:55 +02:00
|
|
|
echo "Creating SquashFS image. This may take some time..."
|
2008-09-07 03:39:35 +02:00
|
|
|
start=$(date +%s)
|
|
|
|
if [ "${QUIET}" = "y" ]; then
|
2008-10-19 22:49:55 +02:00
|
|
|
mksquashfs "${work_dir}" "${imgname}" -noappend >/dev/null
|
2008-09-07 03:39:35 +02:00
|
|
|
else
|
2008-10-19 22:49:55 +02:00
|
|
|
mksquashfs "${work_dir}" "${imgname}" -noappend
|
2008-09-07 03:39:35 +02:00
|
|
|
fi
|
|
|
|
minutes=$(echo $start $(date +%s) | awk '{ printf "%0.2f",($2-$1)/60 }')
|
|
|
|
echo "Image creation done in $minutes minutes."
|
2008-09-14 06:18:10 +02:00
|
|
|
}
|
2008-09-07 03:39:35 +02:00
|
|
|
|
2008-09-14 06:18:10 +02:00
|
|
|
command_img () {
|
2008-09-07 03:39:35 +02:00
|
|
|
echo "====> Making bootable image"
|
|
|
|
if [ -e "${imgname}" ]; then
|
|
|
|
if [ "${FORCE}" = "y" ]; then
|
|
|
|
echo "Removing existing bootable image..."
|
|
|
|
rm -rf "${imgname}"
|
|
|
|
else
|
|
|
|
echo "error: Image '${imgname}' already exists, aborting."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
if [ ! -e "${CPIOCONFIG}" ]; then
|
|
|
|
echo "error: mkinitcpio config '${CPIOCONFIG}' does not exist, aborting."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
kernelver=$(_kversion)
|
2008-10-19 22:49:55 +02:00
|
|
|
basedir=${work_dir}
|
|
|
|
[ "${work_dir:0:1}" != "/" ] && basedir="$(pwd)/${work_dir}"
|
2008-09-07 03:39:35 +02:00
|
|
|
echo "Generating initcpio for image..."
|
|
|
|
if [ "${QUIET}" = "y" ]; then
|
2008-10-19 22:49:55 +02:00
|
|
|
mkinitcpio -c "${CPIOCONFIG}" -b "${basedir}" -k "${kernelver}" -g "${work_dir}/boot/archiso.img" >/dev/null
|
2008-09-07 03:39:35 +02:00
|
|
|
ret=$?
|
|
|
|
else
|
2008-10-19 22:49:55 +02:00
|
|
|
mkinitcpio -c "${CPIOCONFIG}" -b "${basedir}" -k "${kernelver}" -g "${work_dir}/boot/archiso.img"
|
2008-09-07 03:39:35 +02:00
|
|
|
ret=$?
|
|
|
|
fi
|
|
|
|
if [ $ret -ne 0 ]; then
|
|
|
|
echo "error: initcpio image creation failed..."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2008-10-19 22:49:55 +02:00
|
|
|
USE_GRUB=1
|
|
|
|
bootflags=""
|
|
|
|
if [ "$USE_GRUB" = "1" ]; then
|
|
|
|
_pacman grub #grub-gfx ??
|
|
|
|
mkdir -p "${work_dir}/boot/grub"
|
|
|
|
cp "${work_dir}/usr/lib/grub/i386-pc/*" "${work_dir}/boot/grub"
|
|
|
|
|
|
|
|
# copy over kernel and grub configs for boot
|
|
|
|
if [ -d "${work_dir}/boot" -a -e "${DEF_CONFIG_DIR}/boot" ]; then
|
|
|
|
rm -rf "${work_dir}/boot"
|
|
|
|
cp -r "${work_dir}/boot" "${work_dir}"
|
|
|
|
cp -rf "${DEF_CONFIG_DIR}/boot" "${work_dir}"
|
|
|
|
fi
|
|
|
|
bootflags="boot/grub/stage2_eltorito"
|
|
|
|
else
|
|
|
|
_pacman isolinux
|
|
|
|
bootflags="boot/whatever/isolinux"
|
|
|
|
fi
|
2008-09-07 03:39:35 +02:00
|
|
|
|
|
|
|
if [ "x$IMG_TYPE" == "xdisk" ]; then
|
|
|
|
echo "Creating DISK image..."
|
2008-10-19 22:49:55 +02:00
|
|
|
mkusbimg "${work_dir}" "${imgname}"
|
2008-09-07 03:39:35 +02:00
|
|
|
else
|
|
|
|
echo "Creating ISO image..."
|
2008-10-19 22:49:55 +02:00
|
|
|
if [ -z "$bootflags" ]; then
|
|
|
|
echo "Eeek, no boot flags found. This probably won't be bootable"
|
|
|
|
fi
|
|
|
|
qflag=""
|
2008-09-07 03:39:35 +02:00
|
|
|
[ "${QUIET}" = "y" ] && qflag="-q"
|
2008-10-19 22:49:55 +02:00
|
|
|
mkisofs ${qflag} -r -l $bootflags -uid 0 -gid 0 \
|
2008-09-07 03:39:35 +02:00
|
|
|
-no-emul-boot -boot-load-size 4 -boot-info-table \
|
|
|
|
-publisher "Arch Linux <archlinux.org>" \
|
2008-10-19 22:49:55 +02:00
|
|
|
-input-charset=UTF-8 -p "prepared by mkarchiso" \
|
2008-09-07 03:39:35 +02:00
|
|
|
-A "Arch Linux Live/Rescue CD" \
|
2008-10-19 22:49:55 +02:00
|
|
|
-o "${imgname}" "${work_dir}"
|
2008-09-07 03:39:35 +02:00
|
|
|
fi
|
2008-09-14 06:18:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
# Go through the main commands in order. If 'all' was specified, then we want
|
|
|
|
# to do everything. Start with 'install'.
|
|
|
|
if [ "${command_name}" = "install" -o "${command_name}" = "all" ]; then
|
|
|
|
command_install
|
|
|
|
fi
|
|
|
|
if [ "${command_name}" = "squash" -o "${command_name}" = "all" ]; then
|
|
|
|
command_squash
|
|
|
|
fi
|
|
|
|
if [ "${command_name}" = "img" -o "${command_name}" = "all" ]; then
|
|
|
|
command_img
|
2008-09-07 03:39:35 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
# vim:ts=4:sw=4:et:
|