summaryrefslogtreecommitdiffstats
path: root/release/powerpc/mkisoimages.sh
diff options
context:
space:
mode:
authorgrehan <grehan@FreeBSD.org>2004-08-18 11:08:19 +0000
committergrehan <grehan@FreeBSD.org>2004-08-18 11:08:19 +0000
commit2c963bb5aacbf973ff6bc991671998cd524baa68 (patch)
tree15e6eb09352e2b534b3cfe75d21f224379e8e2c8 /release/powerpc/mkisoimages.sh
parenta26ab6440d4629ff5d921e6128cd7185157b09f8 (diff)
downloadFreeBSD-src-2c963bb5aacbf973ff6bc991671998cd524baa68.zip
FreeBSD-src-2c963bb5aacbf973ff6bc991671998cd524baa68.tar.gz
Add files needed for PPC release ISOs. These are built with the
HFS/ISO9660 extensions to be bootable on Power Macs. boot.tbxi - the CHRP script executed by Open Firmware when auto-booting CDs hfs.map - map Unix files to HFS creator/type fields Reviewed by: ru Submitted by: ssouhlal
Diffstat (limited to 'release/powerpc/mkisoimages.sh')
-rw-r--r--release/powerpc/mkisoimages.sh57
1 files changed, 57 insertions, 0 deletions
diff --git a/release/powerpc/mkisoimages.sh b/release/powerpc/mkisoimages.sh
new file mode 100644
index 0000000..31e6997
--- /dev/null
+++ b/release/powerpc/mkisoimages.sh
@@ -0,0 +1,57 @@
+#!/bin/sh
+#
+# Module: mkisoimages.sh
+# Author: Jordan K Hubbard
+# Date: 22 June 2001
+#
+# $FreeBSD$
+#
+# This script is used by release/Makefile to build the (optional) ISO images
+# for a FreeBSD release. It is considered architecture dependent since each
+# platform has a slightly unique way of making bootable CDs. This script
+# is also allowed to generate any number of images since that is more of
+# publishing decision than anything else.
+#
+# Usage:
+#
+# mkisoimages.sh [-b] image-label image-name base-bits-dir [extra-bits-dir]
+#
+# Where -b is passed if the ISO image should be made "bootable" by
+# whatever standards this architecture supports (may be unsupported),
+# image-label is the ISO image label, image-name is the filename of the
+# resulting ISO image, base-bits-dir contains the image contents and
+# extra-bits-dir, if provided, contains additional files to be merged
+# into base-bits-dir as part of making the image.
+
+if [ "x$1" = "x-b" ]; then
+ cp /usr/src/release/powerpc/boot.tbxi ${4}/boot
+ bootable="-hfs-bless ${4}/boot -map /usr/src/release/powerpc/hfs.map"
+ shift
+else
+ bootable=""
+fi
+
+if [ $# -lt 3 ]; then
+ echo Usage: $0 '[-b] image-label image-name base-bits-dir [extra-bits-dir]'
+ rm -f ${IMG}
+ exit 1
+fi
+
+type mkisofs 2>&1 | grep " is " >/dev/null
+if [ $? -ne 0 ]; then
+ echo The cdrtools port is not installed. Trying to get it now.
+ if [ -f /usr/ports/sysutils/cdrtools/Makefile ]; then
+ cd /usr/ports/sysutils/cdrtools && make install BATCH=yes && make clean
+ else
+ if ! pkg_add -r cdrtools; then
+ echo "Could not get it via pkg_add - please go install this"
+ echo "from the ports collection and run this script again."
+ exit 2
+ fi
+ fi
+fi
+
+LABEL=$1; shift
+NAME=$1; shift
+
+mkisofs $bootable -r -hfs -part -no-desktop -hfs-volid $LABEL -l -J -L -o $NAME $*
OpenPOWER on IntegriCloud