#!/bin/sh -eu ## store start-up directory and change to working directory startup_dir=`pwd` cd ${0%/`basename $0`}/.. ## create rootfs bin/build_rootfs.sh ## create iso image mkisofs -JDR -uid 0 -gid 0 -o deepofix-cd.iso -b isolinux/isolinux.bin -m .svn \ -c isolinux/boot.cat -no-emul-boot -boot-load-size 4 \ -A "deepOfix Install CD" -V "deepOfix" \ -boot-info-table install_cd ## change to start-up directory cd $startup_dir