2011-06-22 14:43:06 +00:00
|
|
|
#!/bin/bash
|
2011-06-22 13:33:10 +00:00
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2011-06-23 10:34:39 +00:00
|
|
|
# required
|
|
|
|
XOR=""
|
|
|
|
DIR=""
|
|
|
|
IMG=""
|
|
|
|
# optional
|
|
|
|
ISOLINUX_BIN=""
|
|
|
|
BOOT_CAT=""
|
|
|
|
CONFFILE=$HOME/releng_build_jigdo.conf
|
|
|
|
CLEAN=0
|
|
|
|
|
|
|
|
print_help() {
|
|
|
|
cat << HLP
|
|
|
|
Usage:
|
|
|
|
$0 -help
|
|
|
|
# using a config file ${CONFFILE}
|
|
|
|
$0 -rc [-clean]
|
|
|
|
config file content:
|
|
|
|
XOR=/path/to/xorriso
|
|
|
|
DIR=/path/to/input_dir
|
|
|
|
IMG=/path/to/out_image
|
|
|
|
ISOLINUX_BIN=/path/to/isolinux.bin
|
|
|
|
BOOT_CAT=/path/to/boot.cat
|
|
|
|
# without using a config file
|
|
|
|
$0 xorriso_cmd IN_dir OUT_image [IN_isolinux] [IN_bootcat] [-clean]
|
|
|
|
HLP
|
|
|
|
}
|
|
|
|
|
|
|
|
# help
|
|
|
|
if [ ! "${1}" -o "${1}" == "-help" ]; then print_help && exit 0; fi
|
|
|
|
# config file
|
|
|
|
if [ "${1}" == "-rc" ]; then
|
|
|
|
if [ -e ${CONFFILE} ]; then . ${CONFFILE}
|
|
|
|
else echo -e "$0: can not find config file: ${CONFFILE}\n"
|
|
|
|
fi
|
|
|
|
if [ "${2}" == "-clean" ]; then CLEAN=1; fi
|
|
|
|
# command line args
|
|
|
|
elif [ "${3}" ]; then
|
|
|
|
XOR="${1}"
|
|
|
|
DIR="${2}"
|
|
|
|
IMG="${3}"
|
|
|
|
if [ "{4}" ]; then
|
|
|
|
ISOLINUX_BIN="${4}"
|
|
|
|
if [ "{5}" ]; then BOOT_CAT="${5}"; fi
|
|
|
|
if [ "${4}" == "-clean" -o "${5}" == "-clean" -o "${6}" == "-clean" ]; then CLEAN=1; fi
|
|
|
|
fi
|
|
|
|
# the rest
|
|
|
|
else
|
|
|
|
print_help && exit 0
|
2011-06-22 14:43:06 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
RES="${IMG}.iso ${IMG}.new ${IMG}.md5 ${IMG}.jigdo ${IMG}.template"
|
|
|
|
|
2011-06-23 10:34:39 +00:00
|
|
|
############################################################
|
|
|
|
main() {
|
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-06-22 20:32:09 +00:00
|
|
|
# grab an MBR
|
|
|
|
# dd if=some.iso bs=1K count=32 of=somembr.sysarea
|
|
|
|
|
2011-06-22 20:20:00 +00:00
|
|
|
# create FAT partition
|
2011-06-22 20:32:09 +00:00
|
|
|
# /sbin/mkfs.msdos -n Bla -C fatpart.fat 8192
|
2011-06-22 20:20:00 +00:00
|
|
|
|
|
|
|
# create MD5 list in base64 format
|
2011-06-22 13:33:10 +00:00
|
|
|
jigdo-gen-md5-list ${DIR} > ${IMG}.md5
|
|
|
|
|
2011-06-22 20:20:00 +00:00
|
|
|
# build the command - general section
|
|
|
|
CMD="${XOR} \
|
|
|
|
-as mkisofs \
|
|
|
|
-o ${IMG}.iso \
|
|
|
|
-R \
|
|
|
|
-V ISOJIGDO \
|
|
|
|
-partition_offset 16 \
|
|
|
|
-J -joliet-long \
|
|
|
|
"
|
2011-06-23 10:34:39 +00:00
|
|
|
# boot section TODO
|
2011-06-22 20:32:09 +00:00
|
|
|
#if [ "${5}" -a "${6}" ]; then
|
|
|
|
#CMD+=\
|
|
|
|
# -b boot/isolinux/isolinux.bin \ # $5
|
|
|
|
# -c boot/boot.cat \ # $6
|
|
|
|
# -no-emul-boot -boot-load-size 4 -boot-info-table \
|
|
|
|
# -isohybrid-mbr somembr.sysarea \ # TODO: figure out where to grab one
|
|
|
|
# -partition_offset 16 \
|
|
|
|
# -append_partition 2 0x01 fatpart.fat \
|
2011-06-22 20:20:00 +00:00
|
|
|
#fi
|
|
|
|
|
|
|
|
# jigdo section
|
|
|
|
CMD+="\
|
|
|
|
-jigdo-template-compress gzip \
|
|
|
|
-checksum_algorithm_iso md5,sha1,sha256,sha512 \
|
|
|
|
-checksum_algorithm_template md5,sha1,sha256,sha512 \
|
|
|
|
-jigdo-jigdo ${IMG}.jigdo \
|
|
|
|
-jigdo-template ${IMG}.template \
|
|
|
|
-jigdo-map Debian=${DIR} \
|
|
|
|
-md5-list ${IMG}.md5 \
|
|
|
|
-jigdo-min-file-size 1024 \
|
|
|
|
"
|
|
|
|
|
|
|
|
CMD+="${DIR}"
|
|
|
|
|
|
|
|
# run it
|
|
|
|
echo -e "$0: creating iso & jigdo representations:\n$CMD\n"
|
|
|
|
${CMD}
|
2011-06-22 13:33:10 +00:00
|
|
|
|
2011-06-22 20:20:00 +00:00
|
|
|
# create another one from jigdo files
|
2011-06-22 13:33:10 +00:00
|
|
|
jigit-mkimage \
|
|
|
|
-t ${IMG}.template \
|
|
|
|
-j ${IMG}.jigdo \
|
|
|
|
-m Debian=${DIR} \
|
2011-06-22 14:43:06 +00:00
|
|
|
-o ${IMG}.new
|
|
|
|
|
2011-06-22 20:20:00 +00:00
|
|
|
# diff'em
|
2011-06-22 14:43:06 +00:00
|
|
|
diff ${IMG}.iso ${IMG}.new
|
2011-06-22 13:33:10 +00:00
|
|
|
|
2011-06-22 14:43:06 +00:00
|
|
|
# sort out the cruft
|
2011-06-23 10:34:39 +00:00
|
|
|
if [ ${CLEAN} -eq 1 ]; then
|
2011-06-22 14:43:06 +00:00
|
|
|
rm -f ${RES}
|
|
|
|
printf "removed: %s\n" ${RES}
|
|
|
|
else
|
|
|
|
printf "left: %s\n" ${RES}
|
|
|
|
fi
|
2011-06-23 10:34:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
main
|