Skip to content

Commit 9f527cf

Browse files
Create Create-iso.sh
1 parent 429eb16 commit 9f527cf

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

Create-iso.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/bin/bash
2+
if [ -z "$1" ]; then
3+
LABEL="bootable"
4+
else
5+
LABEL=$1
6+
fi
7+
echo "Creating ISO..."
8+
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

0 commit comments

Comments
 (0)