#!/bin/bash # --------------------------------------------------- # Script to create bootable ISO in Linux # usage: make_iso.sh [ /tmp/slax.iso ] # author: Tomas M. # # Custmized by M.Giacchini to LivEPICS # # --------------------------------------------------- if [ "$1" = "--help" -o "$1" = "-h" ]; then echo "This script will create bootable ISO from files in curent directory." echo "Current directory must be writable." echo "example: $0 /mnt/hda5/slax.iso" exit fi CDLABEL="LivEPICS" VOLUME_ID="LivEPICS.v.1.03" PUBBLISHER="mauro.giacchini@lnl.infn.it http://www.lnl.infn.it/~epics/" ISONAME=$(readlink -f "$1") cd $(dirname $0) if [ "$ISONAME" = "" ]; then SUGGEST=$(readlink -f ../../$(basename $(pwd)).iso) echo -ne "Target ISO file name [ Hit enter for $SUGGEST ]: " read ISONAME if [ "$ISONAME" = "" ]; then ISONAME="$SUGGEST"; fi fi mkisofs -o "$ISONAME" -v -J -R -D -A "$CDLABEL" -publisher "$PUBBLISHER" -V "$VOLUME_ID" \ -no-emul-boot -boot-info-table -boot-load-size 4 \ -b boot/isolinux/isolinux.bin -c boot/isolinux/isolinux.boot ../.