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 26set -e 27 28if [ "$1" = "-b" ]; then 29 # This is highly x86-centric and will be used directly below. 30 bootable="-o bootimage=i386;$4/boot/cdboot -o no-emul-boot" 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 41LABEL=`echo "$1" | tr '[:lower:]' '[:upper:]'`; shift 42NAME="$1"; shift 43 44publisher="The FreeBSD Project. https://www.FreeBSD.org/" 45echo "/dev/iso9660/$LABEL / cd9660 ro 0 0" > "$1/etc/fstab" 46makefs -t cd9660 $bootable -o rockridge -o label="$LABEL" -o publisher="$publisher" "$NAME" "$@" 47rm -f "$1/etc/fstab" 48