mkisoimages.sh revision 132022
1#!/bin/sh
2#
3# Module: mkisoimages.sh
4# Author: Jordan K Hubbard
5# Date:   22 June 2001
6#
7# $FreeBSD: head/release/i386/mkisoimages.sh 132022 2004-07-12 07:59:25Z kris $
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 [-[e]b] image-label image-name base-bits-dir [extra-bits-dir]
18#
19# Where -[e]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
26if [ "x$1" = "x-b" ]; then
27	bootable="-b boot/cdboot -no-emul-boot"
28	shift
29elif [ "x$1" = "x-eb" ]; then
30	bootable="-b floppies/boot.flp -c floppies/boot.catalog"
31	shift
32else
33	bootable=""
34fi
35
36if [ $# -lt 3 ]; then
37	echo Usage: $0 '[-b] image-label image-name base-bits-dir [extra-bits-dir]'
38	exit 1
39fi
40
41type mkisofs 2>&1 | grep " is " >/dev/null
42if [ $? -ne 0 ]; then
43	echo The cdrtools port is not installed.  Trying to get it now.
44	if [ -f /usr/ports/sysutils/cdrtools/Makefile ]; then
45		cd /usr/ports/sysutils/cdrtools && make install BATCH=yes && make clean
46	else
47		if ! pkg_add -r cdrtools; then
48			echo "Could not get it via pkg_add - please go install this"
49			echo "from the ports collection and run this script again."
50			exit 2
51		fi
52	fi
53fi
54
55LABEL=$1; shift
56NAME=$1; shift
57
58mkisofs $bootable -r -J -V $LABEL -o $NAME $*
59