summaryrefslogtreecommitdiffstats
path: root/release/i386
diff options
context:
space:
mode:
authorru <ru@FreeBSD.org>2003-07-23 20:53:37 +0000
committerru <ru@FreeBSD.org>2003-07-23 20:53:37 +0000
commit35f690e0f7250315347c2394bd8cb81bca4f5d26 (patch)
tree9acf2a307528cc599b237b6439cad4170c53966d /release/i386
parentc25984e00ee6d0d566777a164fe1361f941ad05c (diff)
downloadFreeBSD-src-35f690e0f7250315347c2394bd8cb81bca4f5d26.zip
FreeBSD-src-35f690e0f7250315347c2394bd8cb81bca4f5d26.tar.gz
Added the (undocumented) EMUL_BOOT variable (for TARGET=i386 only)
that causes the bootable ISO images to be created using the floppy emulation (the old method) as opposed to the new "cdboot" method. Only copy boot.flp to the 2nd CD-ROM if this variable is defined. Reviewed by: murray
Diffstat (limited to 'release/i386')
-rw-r--r--release/i386/mkisoimages.sh8
1 files changed, 5 insertions, 3 deletions
diff --git a/release/i386/mkisoimages.sh b/release/i386/mkisoimages.sh
index d0918a0..2aedbe9 100644
--- a/release/i386/mkisoimages.sh
+++ b/release/i386/mkisoimages.sh
@@ -14,9 +14,9 @@
#
# Usage:
#
-# mkisoimages.sh [-b] image-label image-name base-bits-dir [extra-bits-dir]
+# mkisoimages.sh [-[e]b] image-label image-name base-bits-dir [extra-bits-dir]
#
-# Where -b is passed if the ISO image should be made "bootable" by
+# Where -[e]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
@@ -24,9 +24,11 @@
# 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="-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
OpenPOWER on IntegriCloud