mkisoimages.sh revision 80183
1#!/bin/sh
2#
3# Module: mkisoimages.sh
4# Author: Jordan K Hubbard
5# Date:   22 June 2001
6#
7# $FreeBSD: head/release/amd64/mkisoimages.sh 80183 2001-07-23 09:01:46Z jkh $
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
26if [ "x$1" = "x-b" ]; then
27	# This is highly x86-centric and will be used directly below.
28	bootable="-b floppies/boot.flp -c floppies/boot.catalog"
29	shift
30else
31	bootable=""
32fi
33
34if [ $# -lt 3 ]; then
35	echo Usage: $0 '[-b] image-label image-name base-bits-dir [extra-bits-dir]'
36	exit 1
37fi
38
39if [ ! -x /usr/local/bin/mkhybrid ]; then
40	echo The mkisofs port is not installed.  Trying to get it now.
41	if ! pkg_add -r mkisofs; then
42		echo "Couldn't get it via pkg_add - please go install this"
43		echo "from the ports collection and run this script again."
44		exit 2
45	fi
46fi
47
48LABEL=$1; shift
49NAME=$1; shift
50
51mkhybrid $bootable -r -J -h -V $LABEL -o $NAME $*
52