mkisoimages.sh revision 158650
1302327Sngie#!/bin/sh
2302327Sngie#
3302327Sngie# Module: mkisoimages.sh
4302327Sngie# Author: Jordan K Hubbard
5302327Sngie# Date:   22 June 2001
6302327Sngie#
7302327Sngie# $FreeBSD: head/release/i386/mkisoimages.sh 158650 2006-05-16 14:22:37Z nyan $
8302327Sngie#
9302327Sngie# This script is used by release/Makefile to build the (optional) ISO images
10302327Sngie# for a FreeBSD release.  It is considered architecture dependent since each
11302327Sngie# platform has a slightly unique way of making bootable CDs.  This script
12302327Sngie# is also allowed to generate any number of images since that is more of
13302327Sngie# publishing decision than anything else.
14302327Sngie#
15302327Sngie# Usage:
16302327Sngie#
17302327Sngie# mkisoimages.sh [-b] image-label image-name base-bits-dir [extra-bits-dir]
18302327Sngie#
19302327Sngie# Where -b is passed if the ISO image should be made "bootable" by
20302327Sngie# whatever standards this architecture supports (may be unsupported),
21302327Sngie# image-label is the ISO image label, image-name is the filename of the
22302327Sngie# resulting ISO image, base-bits-dir contains the image contents and
23302327Sngie# extra-bits-dir, if provided, contains additional files to be merged
24302327Sngie# into base-bits-dir as part of making the image.
25302327Sngie
26302327Sngiepublisher="The FreeBSD Project.  http://www.freebsd.org/"
27302327Sngie
28302327Sngieif [ "x$1" = "x-b" ]; then
29	bootable="-b boot/cdboot -no-emul-boot"
30	shift
31elif [ "x$1" = "x-G" ]; then
32	bootable="-G /R/cdrom/bootonly/boot/cdboot"
33	shift
34else
35	bootable=""
36fi
37
38if [ $# -lt 3 ]; then
39	echo Usage: $0 '[-bG] image-label image-name base-bits-dir [extra-bits-dir]'
40	exit 1
41fi
42
43type mkisofs 2>&1 | grep " is " >/dev/null
44if [ $? -ne 0 ]; then
45	echo The cdrtools port is not installed.  Trying to get it now.
46	if [ -f /usr/ports/sysutils/cdrtools/Makefile ]; then
47		cd /usr/ports/sysutils/cdrtools && make install BATCH=yes && make clean
48	else
49		if ! pkg_add -r cdrtools; then
50			echo "Could not get it via pkg_add - please go install this"
51			echo "from the ports collection and run this script again."
52			exit 2
53		fi
54	fi
55fi
56
57LABEL=$1; shift
58NAME=$1; shift
59
60mkisofs $bootable -r -J -V $LABEL -publisher "$publisher" -o $NAME $*
61