summaryrefslogtreecommitdiffstats
path: root/src/util/genliso
blob: b8d9a11df51bc38326a86e5bfe6889e9b49772a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#!/bin/bash
#
# Generate a legacy floppy emulation ISO boot image
#
# genliso foo.liso foo.zlilo
#
# the ISO image is the first argument so that a list of .zlilo images
# to include can be specified
#
case $0 in
*genliso)
	;;
*genfdimg)
	genfdimg=1
	;;
esac
case $# in
0|1)
	echo Usage: $0 foo.liso foo.zlilo ...
	exit 1
	;;
esac
case "`mtools -V`" in
Mtools\ version\ 3.9.9*|Mtools\ version\ 4.*)
	;;
*)
	echo Mtools version 3.9.9 or later is required
	exit 1
	;;
esac
out=$1
shift
dir=bin/liso.dir
mkdir -p $dir
case "$genfdimg" in
1)
	img=$out
	;;
*)
	img=$dir/boot.img
	;;
esac
mformat -f 1440 -C -i $img ::
cfg=bin/syslinux.cfg
cat > $cfg <<EOF
# These default options can be changed in the genliso script
SAY Etherboot ISO boot image generated by genliso
TIMEOUT 30
EOF
first=
for f
do
	if [ ! -r $f ]
	then
		echo $f does not exist, skipping 1>&2
		continue
	fi
	# shorten name for 8.3 filesystem
	b=$(basename $f)
	g=${b%.zlilo}
	g=${g//[^a-z0-9]}
	g=${g:0:8}.zli
	case "$first" in
	"")
		echo DEFAULT $g
		;;
	esac
	first=$g
	echo LABEL $b
	echo "" KERNEL $g
	mcopy -m -i $img $f ::$g
done >> $cfg
mcopy -i $img $cfg ::syslinux.cfg
if ! syslinux $img
then
	exit 1
fi
case "$genfdimg" in
1)
	;;
*)
	mkisofs -o $out -c boot.cat -b boot.img $dir
	;;
esac
rm -fr $dir