aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/fdwrite/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* packages: move floppy utilities into a new packageLexi Winter2025-05-151-0/+1
| | | | | | | | | Very few people use floppy disks nowadays. Move the fd utilities into a new package. Reviewed by: imp, des Approved by: des (mentor) Differential Revision: https://reviews.freebsd.org/D50291
* Remove $FreeBSD$: one-line sh patternWarner Losh2023-08-161-1/+0
| | | | Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
* The last big commit: let usr.sbin/ use WARNS=6 by default.Ed Schouten2010-01-021-1/+0
| | | | Notes: svn path=/head/; revision=201390
* Cleanup usr.sbin/fd* so they can compile under WARNS=6.Xin LI2005-01-081-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | fdcontrol/fdcontrol.c: - Add const constraint to an intermediate value which is not supposed to be changed elsewhere. fdread/fdread.c: - Use _devname in favor of devname to avoid name conflicit. - -1 is less than any positive number so in order to get the block to function, we should get the block a little earlier. - Cast to remove signed when we are sure that a return value is positive, or is compared with an positive number (tracknumber of a floppy disk is not likely to have UINT_MAX/2 anyway) fdread/fdutil.c: - Use more specific initializer fdwrite/fdwrite.c: - Use static on format_track since it's not referenced in other places. - Use const char* to represent string constant. Bump WARNS accordingly. Notes: svn path=/head/; revision=139905
* Modernize my email address.Poul-Henning Kamp2002-03-251-1/+1
| | | | Notes: svn path=/head/; revision=93151
* Perform a major cleanup of the usr.sbin Makefiles.David E. O'Brien2001-07-201-3/+0
| | | | | | | | These are not perfectly in agreement with each other style-wise, but they are orders of orders of magnitude more consistent style-wise than before. Notes: svn path=/head/; revision=80029
* Remove GCC'isms in CFLAGS.David E. O'Brien2001-07-201-1/+0
| | | | Notes: svn path=/head/; revision=80022
* - Backout botched attempt to introduce MANSECT feature.Ruslan Ermilov2001-03-261-1/+0
| | | | | | | - MAN[1-9] -> MAN. Notes: svn path=/head/; revision=74816
* Set the default manual section for usr.sbin/ to 8.Ruslan Ermilov2001-03-201-2/+3
| | | | Notes: svn path=/head/; revision=74532
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-1/+1
| | | | Notes: svn path=/head/; revision=50479
* Revert $FreeBSD$ to $Id$Peter Wemm1997-02-221-1/+1
| | | | Notes: svn path=/head/; revision=22997
* Make the long-awaited change from $Id$ to $FreeBSD$Jordan K. Hubbard1997-01-141-1/+1
| | | | | | | | | | | This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise. Notes: svn path=/head/; revision=21673
* #include'ing mysterious stuff from ${DESTDIR}/sys/<somewhere> is no longerJoerg Wunsch1994-10-141-2/+2
| | | | | | | | necessary. Requested by: phk Notes: svn path=/head/; revision=3592
* A small program, which can take a file of any size, format, write and verifyPoul-Henning Kamp1994-09-181-0/+16
it onto a bunch of floppies in a semi-intelligent way. Useful for things like: tar cf - . | gzip -9 | fdwrite -d /dev/rfd0.1720 -v Where it will keep asking for floppies until tar is done. Notes: svn path=/cvs2svn/branches/phk/; revision=2849