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.
22 lines
381 B
22 lines
381 B
10 years ago
|
#!/bin/sh
|
||
|
|
||
|
# FIXME: include os explorer to name preos
|
||
|
|
||
10 years ago
|
if [ "$#" -ne 2 ]; then
|
||
|
echo "$0 dir-in iso-out"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
indir=$1; shift
|
||
|
iso=$1; shift
|
||
10 years ago
|
|
||
|
version=0.3
|
||
10 years ago
|
|
||
10 years ago
|
out=preos-${version}.iso
|
||
|
|
||
10 years ago
|
# -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"
|