Distro_Builder/src/step_4_create_CD.sh

24 lines
563 B
Bash
Executable File

#!/bin/bash
. CONFIG.sh
# set -o xtrace ## To debug scripts
# set -o errexit ## To exit on error
# set -o errunset ## To exit if a variable is referenced but not set
function main() {
echo "Creating the ISO file..."
cd image/
# Take note of the ending dot when changing this...
sudo mkisofs -r -V "${OS_NAME}"-"${OS_VER}" -cache-inodes -J -l \
-boot-info-table -no-emul-boot -boot-load-size 4 \
-b isolinux/isolinux.bin -c isolinux/boot.cat \
-o ../"${OS_NAME}"-"${OS_VER}".iso .
cd ..
}
main $@;