aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/fdformat/fdformat.c
Commit message (Collapse)AuthorAgeFilesLines
* Long promised major enhancement set for the floppy disk driver:Joerg Wunsch2001-12-151-155/+142
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | . The main device node now supports automatic density selection for commonly used media densities. So you can stuff your 1.44 MB and 720 KB media into your drive and just access /dev/fd0, no questions asked. It's all that easy, isn't it? :) . Device density handling has been completely overhauled. The old way of hardwired kernel density knowledge is no longer there. Instead, the kernel now implements 16 subdevices per drive. The first subdevice uses automatic density selection, while the remaining 15 devices are freely programmable. They can be assigned an arbitrary name of the form /dev/fd[:digit]+.[:digit:]{1,4}, where the second number is meant to either implement device names that are mnemonic for their raw capacity (as it used to be), or they can alternatively be created as "anonymous" devices like fd0.1 through fd0.15, depending on the taste of the administrator. After creating a subdevice, it is initialized to the maximal native density of the respective drive type, so it needs to be customized for other densities by using fdcontrol(8). Pseudo-partition devices (fd0a through fd0h) are still supported as symlinks. . The old hack to use flags 0x1 to always assume drive 0 were there is no longer supported; this is now supposed to be done by wiring the devices down from the loader via device flags. On IA32 architectures, the first two drives are looked up in the CMOS configuration records though. On PCMCIA (i. e., the Y-E Data controller of the Toshiba Libretto), a single drive is always assumed. . Other specialities like disabling the FIFO and not probing the drive at boot-time are selected by per-controller or per-drive flags, too. . Unit attentions (media has been changed) are supposed to be detected now; density autoselection only occurs after a unit attention. (Can be turned off by a per-drive flag, this will cause each Fdopen() to perform the autoselection.) . FM floppies can be handled now (on controllers that actually support it -- not all do these days). . Fdopen() can be told to avoid density selection by setting O_NONBLOCK; this leaves the descriptor in a half-opened state where only a few ioctls are accepted. This is necessary to run fdformat on a device that uses automatic density selection (since you cannot autoselect on an unformatted medium, obviously). . Just differentiate between a plain old NE765 and the enhanced chips, but don't try more; the existing code was wrong and only misdetected the chips anyway. BUGS and TODOs: . All documentation update still needs to be done. . Formatting not-so-standard format yields unpredictable results; i have yet to figure out why this happens. "Standard" formats like 720 and 1440 KB do work, however. . rc scripts are needed to setup device nodes with nonstandard densities (like the old /dev/fdN.MMM we used to have). . Obtaining device flags from the kernel environment doesn't work yet, thus currently only drives that are present in (IA32) CMOS are really detected. Someone who knows the odds and ends about device flags is needed here, i can't figure out what i'm doing wrong. . 2.88 MB still needs to be done. Notes: svn path=/head/; revision=87992
* Make fdformat WARN=2 ready.Joerg Wunsch2001-07-031-10/+8
| | | | Notes: svn path=/head/; revision=79161
* Use the printstatus() function from ${.CURDIR}/../fdread/fdutil.c toJoerg Wunsch2001-07-021-19/+31
| | | | | | | | | | | | give a bit more information about up to 10 errors encountered during formatting (unless -q has been specified, of course). While being here, removed a bitrotten comment in the Makefile, and kill the old Emacs local variable stuff at the end of fdformat.c that's no longer useful anway. Notes: svn path=/head/; revision=79111
* Now that we've got it, use FDOPT_NOERRLOG for fdformat and fdwrite toJoerg Wunsch2001-06-261-1/+5
| | | | | | | | | avoid blasting the syslog with error messages from bad floppies. Both tools have their own error reporting anyway (which could easily be cluttered by the syslog output on your terminal). Notes: svn path=/head/; revision=78858
* Part #2 of the <machine/ioctl_fd.h> => <sys/fdcio.h> move: handle theJoerg Wunsch2001-06-061-1/+1
| | | | | | | tools in usr.sbin/fd*. Notes: svn path=/head/; revision=77801
* fdformat prompts for user confirmation. it exits 0 if the userPoul-Henning Kamp2001-05-231-1/+1
| | | | | | | | | | | doesn't confirm, which needlessly complicates scripts. PR: 15339 Submitted by: richard winkel rich@math.missouri.edu MFC after: 1 week Notes: svn path=/head/; revision=77063
* Add `_PATH_DEVZERO'.David E. O'Brien2000-12-091-1/+2
| | | | | | | Use _PATH_* where where possible. Notes: svn path=/head/; revision=69793
* Add -y option which doesn't ask for confimation, but still shows progressPoul-Henning Kamp2000-06-011-4/+8
| | | | | | | | PR: 9259 Submitted by: Clark Gaylord <cgaylord@vt.edu> Notes: svn path=/head/; revision=61154
* Fix fdformat to not use /dev/r* device nodes anymore, this usageJeroen Ruigrok van der Werven2000-01-231-2/+2
| | | | | | | | | | | | has been made obsolete by the block/char device merging. Reflect this change in the manual page and fix the usage of a backslash in ``e.g.''. Reviewed by: bright, sheldonh, phk Notes: svn path=/head/; revision=56447
* - Added 640KB and 1232KB formats support.KATO Takenori2000-01-071-2/+12
| | | | | | | | | - Added $FreeBSD$. Submitted by: nyan Notes: svn path=/head/; revision=55541
* Use err(3). Document options in man page, not in usage string.Philippe Charnier1997-09-171-48/+20
| | | | Notes: svn path=/head/; revision=29531
* Remove trailing whitespace.Rodney W. Grimes1995-05-301-2/+2
| | | | Notes: svn path=/head/; revision=8857
* Transfer speed definitions are now also found in <machine/ioctl_fd.h>.Joerg Wunsch1994-09-251-1/+0
| | | | | | | Remove the old include file, since it used to be in a non-public place. Notes: svn path=/head/; revision=3097
* Fix include path.David Greenman1994-09-171-1/+1
| | | | Notes: svn path=/head/; revision=2840
* Make use of the new FDOPT_NORETRY facility. It does not make sense toJoerg Wunsch1994-05-221-19/+47
| | | | | | | | | verify formatted tracks with fully retryng. The head should not be moved in either case. Also some minor copyright cleanup. Notes: svn path=/head/; revision=1533
* From: phk@login.dkuug.dk (Poul-Henning Kamp)Rodney W. Grimes1994-02-201-3/+3
| | | | | | | | | | | Message-Id: <9402201119.AA06430@login.dkuug.dk> Subject: bug in fdformat.c There is a bug in fdformat.c: the number of heads are hardcoded in two places. This is quite inconsequencial at present, but a bug nontheless. Notes: svn path=/head/; revision=1183
* Fix size of il (interleave) array.Andrey A. Chernov1994-02-101-1/+1
| | | | Notes: svn path=/head/; revision=1138
* Add interleave > 1 support by Poul-Henning Kamp.Andrey A. Chernov1994-02-101-8/+17
| | | | | | | Chack valid range of sectors per track. Notes: svn path=/head/; revision=1137
* We got now floppy formatterAndrey A. Chernov1994-01-261-0/+346
Notes: svn path=/cvs2svn/branches/unlabeled-1.1.1/; revision=1022