2011-06-22 14:43:06 +00:00
|
|
|
#!/bin/bash
|
2011-06-22 13:33:10 +00:00
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2011-06-23 16:25:15 +00:00
|
|
|
START_DIR_DONT_CHANGE=`pwd`
|
2011-06-27 18:06:29 +00:00
|
|
|
SELF=$(basename "$0")
|
2011-07-03 07:46:21 +00:00
|
|
|
|
2011-06-23 16:22:17 +00:00
|
|
|
# required config items
|
2011-07-02 17:35:27 +00:00
|
|
|
CONFFILE=$HOME/.libburnia-releng/${SELF}.conf
|
2011-06-28 12:30:36 +00:00
|
|
|
GEN_DATA_DIR=releng_generated_data/${SELF}
|
2011-07-03 07:46:21 +00:00
|
|
|
TMP_DATA_DIR=releng_generated_data
|
2011-07-03 14:25:08 +00:00
|
|
|
IMG_EXTRACT_DIR=${GEN_DATA_DIR}/${SELF}_extracted_tree
|
2011-07-03 07:46:21 +00:00
|
|
|
|
|
|
|
# to be set by the config file
|
|
|
|
RELENG_XORRISO=""
|
|
|
|
|
|
|
|
RELENG_DIR="${IMG_EXTRACT_DIR}"
|
2011-07-03 08:23:49 +00:00
|
|
|
RELENG_ISOLINUX_BIN="isolinux/isolinux.bin"
|
2011-07-03 07:46:21 +00:00
|
|
|
RELENG_BOOT_CAT="isolinux/boot.cat"
|
|
|
|
RELENG_IMG=cimage
|
|
|
|
|
2011-06-28 20:58:56 +00:00
|
|
|
KEEP=0
|
2011-06-26 23:44:51 +00:00
|
|
|
RES=""
|
|
|
|
|
2011-07-03 07:46:21 +00:00
|
|
|
REMOTE_URL="http://cdimage.debian.org/cdimage/daily-builds/daily/current/i386/iso-cd"
|
|
|
|
REMOTE_IMG="debian-testing-i386-businesscard.iso"
|
|
|
|
|
2011-07-03 18:31:10 +00:00
|
|
|
#####
|
2011-06-23 10:34:39 +00:00
|
|
|
print_help() {
|
|
|
|
cat << HLP
|
|
|
|
Usage:
|
2011-06-27 18:06:29 +00:00
|
|
|
${SELF} -help
|
2011-06-27 14:50:50 +00:00
|
|
|
|
2011-06-23 10:34:39 +00:00
|
|
|
# using a config file ${CONFFILE}
|
2011-06-27 18:06:29 +00:00
|
|
|
${SELF} -rc [-keep]
|
2011-06-27 14:50:50 +00:00
|
|
|
|
2011-07-03 15:07:36 +00:00
|
|
|
# without using a config file
|
2011-07-03 18:45:10 +00:00
|
|
|
${SELF} /absolute/or/relative/path/to/xorriso [-keep]
|
2011-07-03 15:07:36 +00:00
|
|
|
|
2011-06-27 14:50:50 +00:00
|
|
|
# cleanup test generated data directory and exit
|
2011-06-27 18:06:29 +00:00
|
|
|
${SELF} -cleanup
|
2011-06-23 10:34:39 +00:00
|
|
|
HLP
|
|
|
|
}
|
|
|
|
|
2011-07-03 18:31:10 +00:00
|
|
|
#####
|
2011-07-03 14:25:08 +00:00
|
|
|
cleanup() {
|
2011-07-03 18:31:10 +00:00
|
|
|
if [ ${KEEP} -eq 0 ]; then
|
|
|
|
# safety net, just in case -> we want to be in the starting
|
|
|
|
# directory before removing whatever self-generated stuff
|
|
|
|
if [ -d "${GEN_DATA_DIR}" ]; then
|
|
|
|
cd "${START_DIR_DONT_CHANGE}" || exit 15
|
|
|
|
chmod +w -R ${GEN_DATA_DIR}
|
|
|
|
rm -rf ${GEN_DATA_DIR}
|
2011-07-03 18:37:51 +00:00
|
|
|
printf "${SELF}: Removed (self-generated) %s\n" ${GEN_DATA_DIR}
|
2011-07-03 18:31:10 +00:00
|
|
|
else
|
|
|
|
printf "${SELF}: ${GEN_DATA_DIR} does not exist. Nothing to clean.\n"
|
|
|
|
fi
|
|
|
|
else
|
2011-07-03 18:37:51 +00:00
|
|
|
printf "${SELF}: Leaving (self-generated) %s\n" ${GEN_DATA_DIR}
|
2011-07-03 18:31:10 +00:00
|
|
|
fi
|
2011-07-03 14:25:08 +00:00
|
|
|
}
|
|
|
|
|
2011-06-27 14:50:50 +00:00
|
|
|
# cleanup
|
|
|
|
if [ "${1}" == "-cleanup" ]; then
|
2011-07-03 18:31:10 +00:00
|
|
|
cleanup
|
2011-06-27 14:50:50 +00:00
|
|
|
exit 0
|
2011-06-27 14:23:50 +00:00
|
|
|
fi
|
2011-06-27 14:50:50 +00:00
|
|
|
|
2011-06-23 10:34:39 +00:00
|
|
|
# help
|
2011-07-03 15:07:36 +00:00
|
|
|
if [ ! "${1}" ]; then
|
|
|
|
print_help && exit 3
|
2011-06-23 10:34:39 +00:00
|
|
|
# config file
|
2011-07-03 15:07:36 +00:00
|
|
|
elif [ "${1}" == "-rc" -a "${2}" == "-keep" ]; then
|
|
|
|
KEEP=1
|
|
|
|
if [ -e ${CONFFILE} ]; then
|
|
|
|
. ${CONFFILE}
|
|
|
|
printf "${SELF}: Using config file %s\n" ${CONFFILE}
|
|
|
|
else
|
|
|
|
echo -e "\n${SELF}: Config file ${CONFFILE} not found.\n" && exit 4
|
|
|
|
fi
|
|
|
|
elif [ "${1}" == "-rc" -a ! "${2}" ]; then
|
|
|
|
KEEP=0
|
2011-06-23 14:48:36 +00:00
|
|
|
if [ -e ${CONFFILE} ]; then
|
|
|
|
. ${CONFFILE}
|
2011-06-27 18:06:29 +00:00
|
|
|
printf "${SELF}: Using config file %s\n" ${CONFFILE}
|
2011-06-23 14:48:36 +00:00
|
|
|
else
|
2011-07-02 18:55:09 +00:00
|
|
|
echo -e "\n${SELF}: Config file ${CONFFILE} not found.\n" && exit 4
|
2011-06-23 10:34:39 +00:00
|
|
|
fi
|
2011-07-03 15:07:36 +00:00
|
|
|
# cmdline option
|
2011-07-03 16:55:15 +00:00
|
|
|
elif [ -x "${1}" -a "${2}" == "-keep" ]; then
|
|
|
|
RELENG_XORRISO="${1}"
|
|
|
|
KEEP=1
|
2011-07-03 15:07:36 +00:00
|
|
|
elif [ -x "${1}" ]; then
|
|
|
|
RELENG_XORRISO="${1}"
|
2011-07-03 16:55:15 +00:00
|
|
|
KEEP=0
|
2011-06-23 10:34:39 +00:00
|
|
|
# the rest
|
|
|
|
else
|
2011-07-02 18:55:09 +00:00
|
|
|
print_help && exit 5
|
2011-06-22 14:43:06 +00:00
|
|
|
fi
|
|
|
|
|
2011-07-03 15:07:36 +00:00
|
|
|
#
|
|
|
|
if [ "${RELENG_XORRISO}" == "" -o "${RELENG_DIR}" == "" -o "${RELENG_IMG}" == "" ]; then
|
|
|
|
echo -e "\n${SELF}: xorriso_cmd IN_dir and OUT_image are required\n"
|
|
|
|
exit 6
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ! -x "${RELENG_XORRISO}" ]; then
|
|
|
|
printf "${SELF}: $RELENG_XORRISO not found or not an executable.\n"
|
|
|
|
exit 7
|
|
|
|
fi
|
|
|
|
|
2011-06-27 14:50:50 +00:00
|
|
|
# data dir
|
|
|
|
if [ -d "${GEN_DATA_DIR}" ]; then
|
2011-06-27 18:06:29 +00:00
|
|
|
printf "\n${SELF}: directory %s exists!" ${GEN_DATA_DIR}
|
|
|
|
printf "\n${SELF}: use '${SELF} -cleanup' to remove.\n"
|
2011-07-03 15:07:36 +00:00
|
|
|
exit 8
|
2011-06-27 14:50:50 +00:00
|
|
|
else
|
|
|
|
mkdir "${GEN_DATA_DIR}"
|
|
|
|
fi
|
|
|
|
|
2011-07-03 18:31:10 +00:00
|
|
|
# All must be set at this point
|
2011-06-27 18:06:29 +00:00
|
|
|
printf "${SELF}: Config items:"
|
2011-06-28 16:20:31 +00:00
|
|
|
printf "\n\txorriso_cmd=${RELENG_XORRISO}\n\tIN_dir=${RELENG_DIR}\n\tOUT_image=${RELENG_IMG}.iso"
|
|
|
|
printf "\n\tIN_isolinux=${RELENG_ISOLINUX_BIN}\n\tOUT_bootcat=${RELENG_BOOT_CAT}\n"
|
|
|
|
RES="${RELENG_IMG}.iso ${RELENG_IMG}.new ${RELENG_IMG}.md5 ${RELENG_IMG}.jigdo ${RELENG_IMG}.template"
|
2011-06-26 23:44:51 +00:00
|
|
|
|
|
|
|
# xorriso version details, incl. underlying libraries
|
2011-06-28 16:20:31 +00:00
|
|
|
"${RELENG_XORRISO}" -version
|
|
|
|
if ! "${RELENG_XORRISO}" -version | grep libjte >/dev/null 2>&1; then
|
2011-07-03 18:33:54 +00:00
|
|
|
printf "\n${SELF}: JTE not supported with this xorriso build. Install jigit >=1.18 and rebuild."
|
2011-07-03 18:41:13 +00:00
|
|
|
printf "\n${SELF}: http://www.einval.com/~steve/software/JTE/\n"
|
2011-07-03 18:31:10 +00:00
|
|
|
cleanup
|
2011-07-03 09:04:09 +00:00
|
|
|
exit 9
|
2011-06-26 21:36:31 +00:00
|
|
|
fi
|
2011-06-24 12:53:07 +00:00
|
|
|
|
2011-06-22 14:43:06 +00:00
|
|
|
# remove cruft from previous runs
|
|
|
|
# rm -f ${RES}
|
2011-06-22 13:33:10 +00:00
|
|
|
|
2011-07-03 07:46:21 +00:00
|
|
|
# grab remote ISO image, to decompose
|
|
|
|
if [ ! -f "${TMP_DATA_DIR}"/"${REMOTE_IMG}" ]; then
|
|
|
|
printf "\n${SELF}: Downloading ${REMOTE_URL}/${REMOTE_IMG}\n"
|
|
|
|
wget --no-check-certificate -T20 -t3 -O \
|
|
|
|
"${TMP_DATA_DIR}"/"${REMOTE_IMG}" "${REMOTE_URL}"/"${REMOTE_IMG}"
|
|
|
|
WGET_RET="$?"
|
|
|
|
case ${WGET_RET} in
|
|
|
|
0)
|
|
|
|
echo -e "\n${SELF}: Downloading successfully completed.\n"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo -e "\n${SELF}: FAIL: wget returned code: $WGET_RET\n"
|
2011-07-03 18:31:10 +00:00
|
|
|
cleanup
|
2011-07-03 07:46:21 +00:00
|
|
|
exit 10
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
else
|
2011-07-03 10:11:23 +00:00
|
|
|
printf "\n${SELF}: Found ISO image: ${TMP_DATA_DIR}/${REMOTE_IMG}\n"
|
2011-07-03 07:46:21 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# check for extraction directory existence
|
2011-07-03 09:04:09 +00:00
|
|
|
if [ -d "${IMG_EXTRACT_DIR}" ]; then
|
|
|
|
printf "\n${SELF}: Found ${IMG_EXTRACT_DIR}. Please cleanup.\n"
|
2011-07-03 18:31:10 +00:00
|
|
|
cleanup
|
2011-07-03 09:04:09 +00:00
|
|
|
exit 11
|
|
|
|
else
|
2011-07-03 07:46:21 +00:00
|
|
|
mkdir "${IMG_EXTRACT_DIR}"
|
|
|
|
fi
|
2011-07-03 09:04:09 +00:00
|
|
|
|
2011-07-03 07:46:21 +00:00
|
|
|
# extract image content
|
2011-07-03 10:11:23 +00:00
|
|
|
CMD_EXTRACT="${RELENG_XORRISO} -indev ${TMP_DATA_DIR}/${REMOTE_IMG} \
|
2011-07-03 07:46:21 +00:00
|
|
|
-osirrox on:auto_chmod_on \
|
2011-07-03 10:11:23 +00:00
|
|
|
-extract / ${IMG_EXTRACT_DIR} \
|
|
|
|
"
|
|
|
|
echo -e "${SELF}: Extracting ISO image:\n${CMD_EXTRACT}\n"
|
|
|
|
set +e
|
|
|
|
${CMD_EXTRACT}
|
2011-07-03 07:46:21 +00:00
|
|
|
set -e
|
|
|
|
|
2011-06-22 20:32:09 +00:00
|
|
|
# grab an MBR
|
2011-07-03 08:57:30 +00:00
|
|
|
ISOHYBRID_MBR="${GEN_DATA_DIR}/isohybrid.mbr"
|
2011-07-03 07:46:21 +00:00
|
|
|
dd if="${TMP_DATA_DIR}/${REMOTE_IMG}" bs=1K count=32 of="${ISOHYBRID_MBR}"
|
2011-06-22 20:32:09 +00:00
|
|
|
|
2011-06-22 20:20:00 +00:00
|
|
|
# create FAT partition
|
2011-07-03 08:57:30 +00:00
|
|
|
APPEND_PART="${GEN_DATA_DIR}/fatpart.fat"
|
2011-07-03 17:07:56 +00:00
|
|
|
MKFS_MSDOS="/sbin/mkfs.msdos"
|
|
|
|
if [ -x "${MKFS_MSDOS}" ]; then
|
|
|
|
"${MKFS_MSDOS}" -n Bla -C "${APPEND_PART}" 8192
|
|
|
|
else
|
|
|
|
printf "\n${SELF}: Not found: "${MKFS_MSDOS}". Install dosfstools."
|
|
|
|
printf "\n${SELF}: http://www.daniel-baumann.ch/software/dosfstools/\n"
|
2011-07-03 18:31:10 +00:00
|
|
|
cleanup
|
2011-07-03 17:07:56 +00:00
|
|
|
exit 12
|
|
|
|
fi
|
2011-06-22 20:20:00 +00:00
|
|
|
|
2011-07-03 07:46:21 +00:00
|
|
|
# GENERAL section
|
2011-06-28 16:20:31 +00:00
|
|
|
CMD="${RELENG_XORRISO} \
|
2011-06-22 20:20:00 +00:00
|
|
|
-as mkisofs \
|
2011-06-23 14:48:36 +00:00
|
|
|
-quiet \
|
2011-06-28 16:20:31 +00:00
|
|
|
-o ${GEN_DATA_DIR}/${RELENG_IMG}.iso \
|
2011-06-22 20:20:00 +00:00
|
|
|
-R \
|
|
|
|
-V ISOJIGDO \
|
|
|
|
-partition_offset 16 \
|
|
|
|
-J -joliet-long \
|
|
|
|
"
|
2011-06-25 16:11:43 +00:00
|
|
|
|
2011-07-03 07:46:21 +00:00
|
|
|
# BOOT section
|
2011-07-03 08:57:30 +00:00
|
|
|
if [ -f "${IMG_EXTRACT_DIR}"/"${RELENG_ISOLINUX_BIN}" -a -f "${ISOHYBRID_MBR}" -a -f "${APPEND_PART}" ]; then
|
2011-07-03 07:46:21 +00:00
|
|
|
CMD+="\
|
|
|
|
-b ${RELENG_ISOLINUX_BIN} \
|
|
|
|
-c ${RELENG_BOOT_CAT} \
|
|
|
|
-no-emul-boot -boot-load-size 4 -boot-info-table \
|
|
|
|
-isohybrid-mbr ${ISOHYBRID_MBR} \
|
|
|
|
-partition_offset 16 \
|
|
|
|
-append_partition 2 0x01 ${APPEND_PART} \
|
|
|
|
"
|
2011-07-03 07:52:17 +00:00
|
|
|
else
|
|
|
|
printf "\n${SELF}: FAIL to compose the boot section.\n"
|
2011-07-03 18:31:10 +00:00
|
|
|
cleanup
|
2011-07-03 17:07:56 +00:00
|
|
|
exit 13
|
2011-07-03 07:46:21 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# JIGDO section
|
2011-07-03 08:57:30 +00:00
|
|
|
JIGDO_JIGDO=${GEN_DATA_DIR}/${RELENG_IMG}.jigdo
|
|
|
|
JIGDO_TEMPLATE=${GEN_DATA_DIR}/${RELENG_IMG}.template
|
2011-07-03 16:45:16 +00:00
|
|
|
JIGDO_MAP_RHV=`readlink -e ${RELENG_DIR}`
|
|
|
|
JIGDO_MAP="Debian=${JIGDO_MAP_RHV}/"
|
2011-07-03 07:46:21 +00:00
|
|
|
|
|
|
|
# create jigdo MD5 list in base64 format
|
2011-07-03 08:57:30 +00:00
|
|
|
JIGDO_GEN_MD5=${GEN_DATA_DIR}/${RELENG_IMG}.md5
|
2011-07-03 07:46:21 +00:00
|
|
|
if which jigdo-gen-md5-list >/dev/null 2>&1; then
|
2011-07-03 09:29:16 +00:00
|
|
|
printf "${SELF}: Creating MD5 list in hex format in ${JIGDO_GEN_MD5}..."
|
2011-07-03 07:46:21 +00:00
|
|
|
jigdo-gen-md5-list ${RELENG_DIR} > ${JIGDO_GEN_MD5}
|
|
|
|
printf "Done.\n"
|
|
|
|
else
|
2011-07-03 18:33:54 +00:00
|
|
|
printf "\n${SELF}: Not found: jigdo-gen-md5-list. Install jigit >= 1.18."
|
2011-07-03 18:41:13 +00:00
|
|
|
printf "\n${SELF}: http://www.einval.com/~steve/software/JTE/\n"
|
2011-07-03 18:31:10 +00:00
|
|
|
cleanup
|
2011-07-03 17:07:56 +00:00
|
|
|
exit 14
|
2011-07-03 07:46:21 +00:00
|
|
|
fi
|
|
|
|
|
2011-06-22 20:20:00 +00:00
|
|
|
CMD+="\
|
|
|
|
-jigdo-template-compress gzip \
|
|
|
|
-checksum_algorithm_iso md5,sha1,sha256,sha512 \
|
|
|
|
-checksum_algorithm_template md5,sha1,sha256,sha512 \
|
2011-07-03 07:46:21 +00:00
|
|
|
-jigdo-jigdo ${JIGDO_JIGDO} \
|
|
|
|
-jigdo-template ${JIGDO_TEMPLATE} \
|
|
|
|
-jigdo-map ${JIGDO_MAP} \
|
|
|
|
-md5-list ${JIGDO_GEN_MD5} \
|
2011-06-22 20:20:00 +00:00
|
|
|
-jigdo-min-file-size 1024 \
|
|
|
|
"
|
|
|
|
|
2011-06-28 16:20:31 +00:00
|
|
|
CMD+="${RELENG_DIR}"
|
2011-06-22 20:20:00 +00:00
|
|
|
|
2011-07-03 07:46:21 +00:00
|
|
|
# Run the whole compound command
|
2011-06-27 18:06:29 +00:00
|
|
|
echo -e "${SELF}: Creating ISO and jigdo representations:\n$CMD\n"
|
2011-06-22 20:20:00 +00:00
|
|
|
${CMD}
|
2011-06-22 13:33:10 +00:00
|
|
|
|
2011-07-03 07:46:21 +00:00
|
|
|
# Create another imange this time from jigdo files
|
2011-06-23 16:49:42 +00:00
|
|
|
if which jigit-mkimage >/dev/null 2>&1; then
|
2011-06-27 18:06:29 +00:00
|
|
|
printf "${SELF}: Creating new ISO from jigdo files..."
|
2011-06-23 16:49:42 +00:00
|
|
|
jigit-mkimage \
|
2011-07-03 07:46:21 +00:00
|
|
|
-t ${JIGDO_TEMPLATE} \
|
|
|
|
-j ${JIGDO_JIGDO} \
|
|
|
|
-m ${JIGDO_MAP} \
|
2011-06-28 16:20:31 +00:00
|
|
|
-o ${GEN_DATA_DIR}/${RELENG_IMG}.new
|
2011-06-23 16:49:42 +00:00
|
|
|
printf "Done.\n"
|
|
|
|
else
|
2011-06-27 18:06:29 +00:00
|
|
|
printf "\n${SELF}: Not found: jigit-mkimage. Install jigit."
|
2011-07-03 18:41:13 +00:00
|
|
|
printf "\n${SELF}: http://www.einval.com/~steve/software/JTE/\n"
|
2011-07-03 18:31:10 +00:00
|
|
|
cleanup
|
2011-07-03 17:07:56 +00:00
|
|
|
exit 15
|
2011-06-23 16:49:42 +00:00
|
|
|
fi
|
|
|
|
|
2011-06-23 16:09:47 +00:00
|
|
|
# trap the exit code of diff and let the Universe explode
|
2011-06-28 16:20:31 +00:00
|
|
|
diff ${GEN_DATA_DIR}/${RELENG_IMG}.iso ${GEN_DATA_DIR}/${RELENG_IMG}.new
|
2011-06-23 16:09:47 +00:00
|
|
|
DIFF_RET="$?"
|
|
|
|
case ${DIFF_RET} in
|
|
|
|
0)
|
2011-07-03 18:46:35 +00:00
|
|
|
echo -e "${SELF}: Match: diff ${GEN_DATA_DIR}/${RELENG_IMG}.iso ${GEN_DATA_DIR}/${RELENG_IMG}.new\n"
|
2011-06-23 16:09:47 +00:00
|
|
|
;;
|
|
|
|
*)
|
2011-06-27 18:06:29 +00:00
|
|
|
echo -e "${SELF}: FAIL: diff returned code: $DIFF_RET\n"
|
2011-06-23 16:09:47 +00:00
|
|
|
;;
|
|
|
|
esac
|
2011-06-22 13:33:10 +00:00
|
|
|
|
2011-06-22 14:43:06 +00:00
|
|
|
# sort out the cruft
|
2011-07-03 18:31:10 +00:00
|
|
|
cleanup
|
2011-06-23 11:14:41 +00:00
|
|
|
|
|
|
|
# last hints
|
2011-06-27 18:06:29 +00:00
|
|
|
printf "\n${SELF}: HINT: manual checks remained to be done:\n"
|
2011-06-28 16:20:31 +00:00
|
|
|
printf " * ${RELENG_IMG}.img boots from USB stick and/or optical media.\n"
|
2011-06-23 14:48:36 +00:00
|
|
|
printf " * appended FAT partition is mountable.\n"
|
2011-06-28 16:20:31 +00:00
|
|
|
printf " * xorriso -indev ${RELENG_IMG}.iso -pvd_info\n"
|
|
|
|
printf " * fdisk -lu ${RELENG_IMG}.iso\n"
|
2011-06-23 11:14:41 +00:00
|
|
|
|
2011-06-25 16:58:16 +00:00
|
|
|
exit 0
|