1#!/bin/sh 2# 3# Module: mkisoimages.sh 4# Author: Jordan K Hubbard 5# Date: 22 June 2001 6# 7# 8# This script is used by release/Makefile to build the (optional) ISO images 9# for a FreeBSD release. It is considered architecture dependent since each 10# platform has a slightly unique way of making bootable CDs. This script 11# is also allowed to generate any number of images since that is more of 12# publishing decision than anything else. 13# 14# Usage: 15# 16# mkisoimages.sh [-b] image-label image-name base-bits-dir [extra-bits-dir] 17# 18# Where -b is passed if the ISO image should be made "bootable" by 19# whatever standards this architecture supports (may be unsupported), 20# image-label is the ISO image label, image-name is the filename of the 21# resulting ISO image, base-bits-dir contains the image contents and 22# extra-bits-dir, if provided, contains additional files to be merged 23# into base-bits-dir as part of making the image. 24 25set -e 26 27if [ "$1" = "-b" ]; then 28 MAKEFSARG="$4" 29else 30 MAKEFSARG="$3" 31fi 32 33if [ -f ${MAKEFSARG} ]; then 34 BASEBITSDIR=`dirname ${MAKEFSARG}` 35 METALOG=${MAKEFSARG} 36elif [ -d ${MAKEFSARG} ]; then 37 BASEBITSDIR=${MAKEFSARG} 38 METALOG= 39else 40 echo "${MAKEFSARG} must exist" 41 exit 1 42fi 43 44if [ "$1" = "-b" ]; then 45 bootable=1 46 shift 47else 48 bootable="" 49fi 50 51if [ $# -lt 3 ]; then 52 echo "Usage: $0 [-b] image-label image-name base-bits-dir [extra-bits-dir]" 53 exit 1 54fi 55 56LABEL=`echo "$1" | tr '[:lower:]' '[:upper:]'`; shift 57NAME="$1"; shift 58# MAKEFSARG extracted already 59shift 60 61if [ -n "${METALOG}" ]; then 62 metalogfilename=$(mktemp /tmp/metalog.XXXXXX) 63 cat ${METALOG} > ${metalogfilename} 64 MAKEFSARG=${metalogfilename} 65fi 66 67if [ -n "$bootable" ]; then 68 echo "Building bootable disc" 69 70 BOOTBLOCK=$(mktemp /tmp/hfs-boot-block.XXXXXX) 71 72 # Apple boot code 73 uudecode -p "`dirname "$0"`/hfs-boot.bz2.uu" | bunzip2 > $BOOTBLOCK 74 OFFSET=$(hd $BOOTBLOCK | grep 'Loader START' | cut -f 1 -d ' ') 75 OFFSET=0x$(echo 0x$OFFSET | awk '{printf("%x\n",$1/512);}') 76 dd if="$BASEBITSDIR/boot/loader" of=$BOOTBLOCK seek=$OFFSET conv=notrunc 77 78 bootable="-o bootimage=macppc;$BOOTBLOCK -o no-emul-boot" 79 80 # pSeries/PAPR boot code 81 mkdir -p "$BASEBITSDIR/ppc/chrp" 82 cp "$BASEBITSDIR/boot/loader" "$BASEBITSDIR/ppc/chrp" 83 cat > "$BASEBITSDIR/ppc/bootinfo.txt" << EOF 84<chrp-boot> 85<description>FreeBSD Install</description> 86<os-name>FreeBSD</os-name> 87<boot-script>boot &device;:,\ppc\chrp\loader</boot-script> 88</chrp-boot> 89EOF 90 bootable="$bootable -o chrp-boot" 91 if [ -n "${METALOG}" ]; then 92 echo "./ppc type=dir uname=root gname=wheel mode=0755" >> ${metalogfilename} 93 echo "./ppc/chrp type=dir uname=root gname=wheel mode=0755" >> ${metalogfilename} 94 echo "./ppc/chrp/loader type=file uname=root gname=wheel mode=0644" >> ${metalogfilename} 95 echo "./ppc/bootinfo.txt type=file uname=root gname=wheel mode=0644" >> ${metalogfilename} 96 fi 97 98 # Petitboot config for PS3/PowerNV 99 echo FreeBSD Install=\'/boot/kernel/kernel vfs.root.mountfrom=cd9660:/dev/iso9660/$LABEL\' > "$BASEBITSDIR/etc/kboot.conf" 100 if [ -n "${METALOG}" ]; then 101 echo "./etc/kboot.conf type=file uname=root gname=wheel mode=0644" >> ${metalogfilename} 102 fi 103fi 104 105publisher="The FreeBSD Project. https://www.FreeBSD.org/" 106echo "/dev/iso9660/$LABEL / cd9660 ro 0 0" > "$BASEBITSDIR/etc/fstab" 107if [ -n "${METALOG}" ]; then 108 echo "./etc/fstab type=file uname=root gname=wheel mode=0644" >> ${metalogfilename} 109fi 110makefs -D -N ${BASEBITSDIR}/etc -t cd9660 $bootable -o rockridge -o label="$LABEL" -o publisher="$publisher" "$NAME" "$MAKEFSARG" "$@" 111rm -f "$BASEBITSDIR/etc/fstab" 112if [ n "$bootable" ]; then 113 rm $BOOTBLOCK 114fi 115rm -rf "$BASEBITSDIR/ppc" 116if [ -n "${METALOG}" ]; then 117 rm ${metalogfilename} 118fi 119