You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
381 B
21 lines
381 B
#!/bin/sh
|
|
|
|
# FIXME: include os explorer to name preos
|
|
|
|
if [ "$#" -ne 2 ]; then
|
|
echo "$0 dir-in iso-out"
|
|
exit 1
|
|
fi
|
|
|
|
indir=$1; shift
|
|
iso=$1; shift
|
|
|
|
version=0.4
|
|
|
|
out=preos-${version}.iso
|
|
|
|
# -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"
|
|
|