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
This commit is contained in:
John Baldwin 2004-12-01 18:03:18 +00:00
parent 02a8ac2b7b
commit 8dd9e9d036
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=138275

View File

@ -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