]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - release/alpha/mkisoimages.sh
This commit was generated by cvs2svn to compensate for changes in r147078,
[FreeBSD/FreeBSD.git] / release / alpha / mkisoimages.sh
1 #!/bin/sh
2 #
3 # Module: mkisoimages.sh
4 # Author: Jordan K Hubbard
5 # Date:   22 June 2001
6 #
7 # $FreeBSD$
8 #
9 # This script is used by release/Makefile to build the (optional) ISO images
10 # for a FreeBSD release.  It is considered architecture dependent since each
11 # platform has a slightly unique way of making bootable CDs.  This script
12 # is also allowed to generate any number of images since that is more of
13 # publishing decision than anything else.
14 #
15 # Usage:
16 #
17 # mkisoimages.sh [-b] image-label image-name base-bits-dir [extra-bits-dir]
18 #
19 # Where -b is passed if the ISO image should be made "bootable" by
20 # whatever standards this architecture supports (may be unsupported),
21 # image-label is the ISO image label, image-name is the filename of the
22 # resulting ISO image, base-bits-dir contains the image contents and
23 # extra-bits-dir, if provided, contains additional files to be merged
24 # into base-bits-dir as part of making the image.
25
26 publisher="The FreeBSD Project.  http://www.freebsd.org/"
27
28 if [ "x$1" = "x-b" ]; then
29         bootable="yes"
30         shift
31 fi
32
33 if [ $# -lt 3 ]; then
34         echo Usage: $0 '[-b] image-label image-name base-bits-dir [extra-bits-dir]'
35         exit 1
36 fi
37
38 type mkisofs 2>&1 | grep " is " >/dev/null
39 if [ $? -ne 0 ]; then
40         echo The cdrtools port is not installed.  Trying to get it now.
41         if [ -f /usr/ports/sysutils/cdrtools/Makefile ]; then
42                 cd /usr/ports/sysutils/cdrtools && make install BATCH=yes && make clean
43         else
44                 if ! pkg_add -r cdrtools; then
45                         echo "Could not get it via pkg_add - please go install this"
46                         echo "from the ports collection and run this script again."
47                         exit 2
48                 fi
49         fi
50 fi
51
52 LABEL=$1; shift
53 NAME=$1; shift
54
55 mkisofs -r -J -V $LABEL -publisher "$publisher" -o $NAME $*
56
57 type setcdboot 2>&1 | grep " is " >/dev/null
58 if [ $? -ne 0 ]; then
59         echo The setcdboot port is not installed.  Trying to get it now.
60         if [ -f /usr/ports/sysutils/setcdboot/Makefile ]; then
61                 cd /usr/ports/sysutils/setcdboot && make install BATCH=yes && make clean
62         else
63                 if ! pkg_add -r setcdboot; then
64                         echo "Could not get it via pkg_add - please go install this"
65                         echo "from the ports collection and run this script again."
66                         exit 2
67                 fi
68         fi
69 fi
70 if [ "x$bootable" != "x" ]; then
71         setcdboot $NAME /boot/cdboot
72 fi