aboutsummaryrefslogtreecommitdiff
path: root/release/i386
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2004-12-01 18:03:18 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2004-12-01 18:03:18 +0000
commit8dd9e9d036901ac4f9f5110297d355d493c1baa2 (patch)
tree2541ef9cb255dce03f7e6a05c3a0fae27ac53851 /release/i386
parent02a8ac2b7bdc20fa9b0b51a222602140a88f26f4 (diff)
downloadsrc-8dd9e9d036901ac4f9f5110297d355d493c1baa2.tar.gz
src-8dd9e9d036901ac4f9f5110297d355d493c1baa2.zip
Don't allow ISO images to be made that try to use boot.flp to boot as the
boot.flp in 5.3 and later is not self-contained and thus not suitable for CD booting. /boot/cdboot is now the only way to boot the install CDs. MFC after: 2 weeks
Notes
Notes: svn path=/head/; revision=138275
Diffstat (limited to 'release/i386')
-rw-r--r--release/i386/mkisoimages.sh7
1 files changed, 2 insertions, 5 deletions
diff --git a/release/i386/mkisoimages.sh b/release/i386/mkisoimages.sh
index b02ca91814ae..96425d5c4025 100644
--- a/release/i386/mkisoimages.sh
+++ b/release/i386/mkisoimages.sh
@@ -14,9 +14,9 @@
#
# Usage:
#
-# mkisoimages.sh [-[e]b] image-label image-name base-bits-dir [extra-bits-dir]
+# mkisoimages.sh [-b] image-label image-name base-bits-dir [extra-bits-dir]
#
-# Where -[e]b is passed if the ISO image should be made "bootable" by
+# 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
@@ -28,9 +28,6 @@ publisher="The FreeBSD Project. http://www.freebsd.org/"
if [ "x$1" = "x-b" ]; then
bootable="-b boot/cdboot -no-emul-boot"
shift
-elif [ "x$1" = "x-eb" ]; then
- bootable="-b floppies/boot.flp -c floppies/boot.catalog"
- shift
else
bootable=""
fi