summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormurray <murray@FreeBSD.org>2004-07-15 05:04:39 +0000
committermurray <murray@FreeBSD.org>2004-07-15 05:04:39 +0000
commit5844c201acd1b6e20f6bf2e7638ed3ca0d166da7 (patch)
tree98b83f949cceb16209e448b92e7c9269a38e2fa6
parentc26205072e0d8d025bfcb02e7963e751b7e6a477 (diff)
downloadFreeBSD-src-5844c201acd1b6e20f6bf2e7638ed3ca0d166da7.zip
FreeBSD-src-5844c201acd1b6e20f6bf2e7638ed3ca0d166da7.tar.gz
Remove Walnut Creek CDROM script that Jordan wrote in the 90s.
This functionality is largely in src/release/${ARCH}/mkisofs.sh now. PR: docs/43569
-rw-r--r--share/examples/worm/README15
-rwxr-xr-xshare/examples/worm/makecdfs.sh29
2 files changed, 0 insertions, 44 deletions
diff --git a/share/examples/worm/README b/share/examples/worm/README
deleted file mode 100644
index a6657b9..0000000
--- a/share/examples/worm/README
+++ /dev/null
@@ -1,15 +0,0 @@
-These two shell scripts are what the developers use to burn CDs,
-including the FreeBSD releases made for Walnut Creek CDROM.
-
-makecdfs.sh is used to turn an arbitrary tree of files into a single
-ISO9660 (with RockRidge extensions) filesystem image. See the top
-of the shell script for usage instructions.
-
-burncd.sh takes the filesystem image produced by makecdfs.sh and burns
-it onto a CDR drive. If you want to simply test your CDR without wasting
-a blank, you can also do:
-
- burncd.sh mybigtestimage dummy
-
-And it will "write" the CD without the laser turned on, so that it's
-actually untouched.
diff --git a/share/examples/worm/makecdfs.sh b/share/examples/worm/makecdfs.sh
deleted file mode 100755
index 91a232a..0000000
--- a/share/examples/worm/makecdfs.sh
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/sh
-#
-# $FreeBSD$
-#
-# usage: makecdfs "cd title" input-tree output-file "copyright string"
-#
-# For example:
-#
-# makecdfs FreeBSD-2.1.5 /a/cdrom-dist /a/cdimage.cd0 "Walnut Creek CDROM \
-# 1-510-674-0783 FAX 1-510-674-0821"
-
-if [ "$1" = "-b" ]; then
- bootable="-b floppies/boot.flp -c floppies/boot.catalog"
- shift
-else
- bootable=""
-fi
-
-if [ $# -lt 4 ]; then
- echo "usage: $0 \"cd-title\" input-tree output-file \"copyright\""
-elif [ ! -d $2 ]; then
- echo "$0: $2 is not a directory tree."
-else
- title="$1"; shift
- tree=$1; shift
- outfile=$1; shift
- copyright="$*"
- mkisofs $bootable -d -N -D -r -T -V "$title" -P "$copyright" -o $outfile $tree
-fi
OpenPOWER on IntegriCloud