Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- if [ -z "$1" ]; then
- LABEL="bootable"
- else
- LABEL=$1
- fi
- echo "Create ISO..."
- mkisofs -o disk.iso -b isolinux.bin -c boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table -J -R -V $LABEL iso_root
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement