Files
molecules/scripts/generic_post_iso_script.sh
Fabio Erculiani fbc25100cc [molecules] move post_iso_script to amd64.common and x86.common
This way isohybrid can be called without --uefi on x86
2013-08-03 07:35:12 +02:00

35 lines
723 B
Bash
Executable File

#!/bin/bash
# Update ISO image in order to make it USB bootable
# out of the box
#
# Available env vars:
# ISO_PATH = path to generated ISO
# ISO_CHECKSUM_PATH = path to generated md5 for ISO
#
# This script requires isohybrid (which comes from syslinux package)
/usr/sbin/env-update
. /etc/profile
ISO_ARCH="${1}"
shift
echo
echo "Spawning isohybrid for:"
echo "ISO_PATH = ${ISO_PATH}"
echo "ISO_CHECKSUM_PATH = ${ISO_CHECKSUM_PATH}"
echo "ISO_ARCH = ${ISO_ARCH}"
echo
ih_args=""
if [ "${ISO_ARCH}" = "amd64" ]; then
ih_args+=" --uefi"
fi
isohybrid ${ih_args} "${ISO_PATH}" || exit 1
cd "$(dirname "${ISO_PATH}")" || exit 1
iso_name=$(basename "${ISO_PATH}")
md5sum "${iso_name}" > "${ISO_CHECKSUM_PATH}"
exit ${?}