#!/bin/sh
#
#	from: http://rescuecd.sourceforge.net/288.html
#
[ "$1x" = "x" ] && {
	echo "Usage: $0 (directory)"
	exit 1
	}
[ -e ./cd.iso ] && rm -f ./cd.iso
mkisofs -R 				\
	-b isolinux/isolinux.bin 	\
	-c isolinux/boot.cat 		\
	-input-charset UTF-8		\
	-no-emul-boot 			\
	-boot-load-size 4 		\
	-copyright COPYRIGHT		\
	-publisher "Owl River Company http://www.owlriver.com/issa/ 2005 training" \
	-p "R P Herrold <herrold@owlriver.com>"		\
	-T				\
	-boot-info-table $1 > cd.iso
#

