]> Zhao Yanbai Git Server - minix.git/commitdiff
Removed legacy floppy boot support
authorpikpik <pikpik.1010@gmail.com>
Fri, 10 Aug 2012 01:54:04 +0000 (01:54 +0000)
committerBen Gras <ben@minix3.org>
Fri, 10 Aug 2012 20:21:58 +0000 (22:21 +0200)
 - fdbootparams and fdboot are removed
 - fdboot manual references are removed

commands/setup/setup.sh
man/man8/setup.8
man/man8/usage.8
releasetools/Makefile
releasetools/mkboot

index 382b2077d9ac5fe2a37f951d7701598bdd491c57..90524ce3a7525473b706ea130592024acb8a0c40 100644 (file)
@@ -747,8 +747,6 @@ installboot_nbsd -f /dev/$primary /usr/mdec/bootxx_minixfs3 >/dev/null || exit
 cp /mnt/usr/src/etc/boot.cfg.default /mnt/boot.cfg
 chroot /mnt update_bootcfg
 
-pfile="/mnt/usr/src/tools/fdbootparams"
-echo "rootdev=$root; ramimagedev=$root; save" >$pfile
 # Save name of CD drive
 cddrive="`mount | grep /usr | awk '{ print $1 }' | sed 's/p.*//'`"
 echo "cddrive=$cddrive" >>/mnt/usr/etc/rc.package
index 78e10fa098edb2aa020d4be801b2e8d0bb77a65f..a378b55faa1dc303003ce9b6956f5f85fe491dc0 100644 (file)
@@ -318,17 +318,6 @@ to see the various options available. Now make a new bootable image by typing
 .PP
 You just rebuilt the operating system, including all the kernel and user-mode
 parts. That did not take very long, did it?
-If you have a legacy floppy disk drive, you can make a
-bootable floppy for use later by inserting a formatted floppy and typing
-.PP
-   make fdboot
-.PP
-When you are asked to complete the path, type:
-.PP
-   fd0
-.PP
-This approach does not currently work with USB floppies since there is no MINIX 3 USB
-floppy disk driver yet. 
 To update the boot image currently installed on the hard disk, type
 .PP
    make hdboot
index 75c9df9cc6bfbbd0d8e679f0d65e42cafc7759df..4884019f55951a7fdc794b2ac6a6457c9a921634 100644 (file)
@@ -786,10 +786,6 @@ This makes all the different kernel parts and combines them in the file
 named
 .BR image .
 .TP
-.B make fdboot
-As above and then makes a boot floppy that you can use to restart your
-system with.  You are prompted for the floppy device name.
-.TP
 .B make hdboot
 First makes the image file and then copies it into the directory
 .BR /minix .
index 9961a1c653c14d220e6ce71f1b7cab18b16d4e68..5e0b463740b692324a584ccbbca4150dbb80be3d 100644 (file)
@@ -37,7 +37,6 @@ usage:
        @echo " make services   # Compile and install all services" >&2
        @echo " make install    # Make image, and install to hard disk" >&2
        @echo " make hdboot     # Make image, and install to hard disk" >&2
-       @echo " make fdboot     # Make image, and install to floppy disk" >&2
        @echo " make bootable   # Make hard disk bootable" >&2
        @echo " make nbsd_fetch # Download current NetBSD reference sources" >&2
        @echo " make nbsd_diff  # Update minix-port.patch in NetBSD sources" >&2
@@ -98,10 +97,6 @@ hdboot: services
        ${INSTALL} ${DESTDIR}/boot/minix/.temp/* ${DESTDIR}/multiboot;  \
        fi
 
-fdboot:
-       exec su root mkboot $@
-       @sync
-
 install:
        ${MAKE} includes services hdboot
 
index ca9d69c8e50b30be1fecaff5eb4189ee7c832485..4ae3299f0d093e5f44909db6ff9ac23a3f6a2453 100755 (executable)
@@ -1,10 +1,10 @@
 #!/bin/sh
 #
-#      mkboot 2.0 - make boot floppy, make root device bootable, etc.
+#      mkboot 2.0 - make root device bootable, etc.
 #                                                      Author: Kees J. Bot
 
 usage() {
-       echo "Usage: $0 [bootable | hdboot | fdboot [device]]" >&2
+       echo "Usage: $0 [bootable | hdboot]" >&2
        exit 1
 }
 
@@ -31,7 +31,7 @@ mdec=/usr/mdec        # bootstraps
 
 # Check arguments.
 case "$#:$1" in
-1:bootable | 1:hdboot | [12]:fdboot )
+1:bootable | 1:hdboot )
        action=$1 dev=$2 size=$3
        ;;
 *)     usage