aboutsummaryrefslogtreecommitdiff
path: root/release/pc98/mkisoimages.sh
diff options
context:
space:
mode:
authorYoshihiro Takahashi <nyan@FreeBSD.org>2017-01-28 02:22:15 +0000
committerYoshihiro Takahashi <nyan@FreeBSD.org>2017-01-28 02:22:15 +0000
commit2b375b4edd1b98884c3031d6ccd61acb10bd895d (patch)
treef35e4f57ad890ac86d5cb5d3ef760344a41fc0e6 /release/pc98/mkisoimages.sh
parent34bac11eba2841255bf6319ec78728f0f941c6ac (diff)
downloadsrc-2b375b4edd1b98884c3031d6ccd61acb10bd895d.tar.gz
src-2b375b4edd1b98884c3031d6ccd61acb10bd895d.zip
Remove pc98 support completely.
I thank all developers and contributors for pc98. Relnotes: yes
Notes
Notes: svn path=/head/; revision=312910
Diffstat (limited to 'release/pc98/mkisoimages.sh')
-rw-r--r--release/pc98/mkisoimages.sh45
1 files changed, 0 insertions, 45 deletions
diff --git a/release/pc98/mkisoimages.sh b/release/pc98/mkisoimages.sh
deleted file mode 100644
index 5e7a046147aa..000000000000
--- a/release/pc98/mkisoimages.sh
+++ /dev/null
@@ -1,45 +0,0 @@
-#!/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
- # This is highly x86-centric and will be used directly below.
- bootable="-o generic-bootimage=$4/boot/cdboot"
- shift
-else
- bootable=""
-fi
-
-if [ $# -lt 3 ]; then
- echo "Usage: $0 [-b] image-label image-name base-bits-dir [extra-bits-dir]"
- exit 1
-fi
-
-LABEL=`echo "$1" | tr '[:lower:]' '[:upper:]'`; shift
-NAME="$1"; shift
-
-publisher="The FreeBSD Project. http://www.FreeBSD.org/"
-echo "/dev/iso9660/$LABEL / cd9660 ro 0 0" > "$1/etc/fstab"
-makefs -t cd9660 $bootable -o rockridge -o label="$LABEL" -o publisher="$publisher" "$NAME" "$@"
-rm -f "$1/etc/fstab"