create iso works without checksum error
Signed-off-by: Nico Schottelius <nico@wurzel.schottelius.org>
This commit is contained in:
parent
1a52df0ddc
commit
59d81ddd4b
1 changed files with 13 additions and 6 deletions
19
hacking/create_iso.sh
Normal file → Executable file
19
hacking/create_iso.sh
Normal file → Executable file
|
@ -2,13 +2,20 @@
|
|||
|
||||
# FIXME: include os explorer to name preos
|
||||
|
||||
indir=./iso
|
||||
if [ "$#" -ne 2 ]; then
|
||||
echo "$0 dir-in iso-out"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
indir=$1; shift
|
||||
iso=$1; shift
|
||||
|
||||
version=0.3
|
||||
|
||||
out=preos-${version}.iso
|
||||
|
||||
genisoimage -r -V "cdist preos v0.2" \
|
||||
-cache-inodes -J -l \
|
||||
-no-emul-boot \
|
||||
-boot-load-size 4 -b isolinux.bin -c boot.cat \
|
||||
-o cdist-preos.iso $indir
|
||||
# -cache-inodes \
|
||||
genisoimage -r -J -l \
|
||||
-V "cdist PreOS $version" \
|
||||
-b boot/isolinux.bin -no-emul-boot -c boot.cat -boot-load-size 4 -boot-info-table \
|
||||
-o "$iso" "$indir"
|
||||
|
|
Loading…
Reference in a new issue