aboutsummaryrefslogtreecommitdiff
path: root/sysutils/diskcheckd
Commit message (Collapse)AuthorAgeFilesLines
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-5/+2
| | | | | | | sysutils) Notes: svn path=/head/; revision=327772
* In the rc.d scripts, change assignments to rcvar to use theDoug Barton2012-01-141-1/+1
| | | | | | | | | | | | | | literal name_enable wherever possible, and ${name}_enable when it's not, to prepare for the demise of set_rcvar(). In cases where I had to hand-edit unusual instances also modify formatting slightly to be more uniform (and in some cases, correct). This includes adding some $FreeBSD$ tags, and most importantly moving rcvar= to right after name= so it's clear that one is derived from the other. Notes: svn path=/head/; revision=289156
* - Some bugfixes:Chris Rees2011-08-315-50/+129
| | | | | | | | | | | | | | | | | | | | * Calculate delays in microseconds, so that delays of less than one second between reads (needed to implement rates exceeding 64KB/sec) do not get rounded down to zero. * Fix a reinitialization problem when handling SIGHUP. * Additional debug messages (only with -d). * Comment and manpage improvememts - Pass maintainership to submitter PR: ports/115853 ports/143566 Submitted by: perryh@pluto.rain.com Notes: svn path=/head/; revision=280842
* No-one seems to be able to answer for this code, so mark DEPRECATED and ↵Chris Rees2011-08-171-0/+3
| | | | | | | | | announce on ports@ PR: ports/143566 Notes: svn path=/head/; revision=279897
* Remove always-false/true conditions based on OSVERSION 500000Edwin Groothuis2007-10-041-10/+3
| | | | Notes: svn path=/head/; revision=200792
* - add USE_RC_SUBRYen-Ming Lee2006-05-194-27/+30
| | | | | | | | - refine IGNORE - bump PORTREVISION Notes: svn path=/head/; revision=162836
* Remove USE_REINPLACE from all categories starting with SEdwin Groothuis2006-05-131-1/+0
| | | | Notes: svn path=/head/; revision=162215
* Use bsd.prog.mk, cleanup a bitVolker Stolz2005-10-062-13/+4
| | | | Notes: svn path=/head/; revision=144398
* fix for post-GEOM system.FUJISHIMA Satsuki2004-10-282-4/+20
| | | | | | | | PR: 45911 Submitted by: Valentin Nechayev <netch@netch.kiev.ua> Notes: svn path=/head/; revision=120372
* IGNORE: Does not run on 5.xKris Kennaway2003-08-171-0/+2
| | | | | | | PR: ports/45911 Notes: svn path=/head/; revision=87149
* De-pkg-comment.Akinori MUSHA2003-02-202-1/+1
| | | | Notes: svn path=/head/; revision=75971
* Fix build on -current (catch up to #include changes)Kris Kennaway2002-10-211-0/+2
| | | | Notes: svn path=/head/; revision=68454
* BROKEN -> IGNORE to prevent package buildKris Kennaway2002-10-131-1/+1
| | | | Notes: svn path=/head/; revision=67947
* ${PERL} -> ${REINPLACE_CMD}David W. Chapman Jr.2002-09-011-2/+3
| | | | | | | | | PR: 40784 Submitted by: corecode@corecode.ath.cx Reviewed by: flynn@energyhq.homeip.net Notes: svn path=/head/; revision=65426
* unbreak at bento: ${LN} -f mostly does not work if WRKDIRPREFIX is set.FUJISHIMA Satsuki2001-09-111-3/+1
| | | | | | | remove MANCOMPRESSED=no, this is default. Notes: svn path=/head/; revision=47702
* Fix path for config file to include the config file's nameDavid W. Chapman Jr.2001-08-291-2/+2
| | | | | | | Bump PORTREVISION Notes: svn path=/head/; revision=47062
* Update manpage to refer to diskcheckd.conf in new locationDavid W. Chapman Jr.2001-08-292-4/+5
| | | | | | | Make Makefile patch manpage to comply with prefix Notes: svn path=/head/; revision=47056
* Change method in do-extract to ${LN} instead of paxDavid W. Chapman Jr.2001-08-283-8/+27
| | | | | | | | | | | Change BROKEN= warning to state that it hasn't been tested on 4.x or lower Use programs Makefile to build and add CFLAGS+= for location of config file Modify default install location in files/Makefile Change default location of config file to match default ports config file in diskcheckd.c Bump PORTREVISION Notes: svn path=/head/; revision=47029
* Add initial diskcheckd skeleton while waiting for repo copy.David W. Chapman Jr.2001-08-245-0/+66
| | | | Notes: svn path=/head/; revision=46793
* Handle snprintf() returning < 0 (not just -1)Brian Somers2001-08-201-2/+2
| | | | | | | MFC after: 2 weeks Notes: svn path=/head/; revision=46545
* Handle snprintf() returning -1.Brian Somers2001-08-201-2/+5
| | | | | | | MFC after: 2 weeks Notes: svn path=/head/; revision=46537
* s/should must/must/ plus markup nit.Ruslan Ermilov2001-08-071-2/+2
| | | | Notes: svn path=/head/; revision=45926
* Perform a major cleanup of the usr.sbin Makefiles.David E. O'Brien2001-07-201-3/+2
| | | | | | | | 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=45265
* Remove GCC'isms in CFLAGS.David E. O'Brien2001-07-201-2/+0
| | | | Notes: svn path=/head/; revision=45263
* Document the two recent changes to diskcheckd's behaviour and configurationBen Smithurst2001-07-181-8/+15
| | | | | | | syntax. Notes: svn path=/head/; revision=45231
* Add older CD types, matcd, mcd, scd.Ben Smithurst2001-07-041-0/+3
| | | | | | | Submitted by: imp Notes: svn path=/head/; revision=44760
* Exclude acd*, cd*, and md* from being checked by default.Ben Smithurst2001-07-041-0/+9
| | | | Notes: svn path=/head/; revision=44757
* * Read 64k at a time with variable length pauses between instead ofBen Smithurst2001-07-041-53/+98
| | | | | | | | | | | | | | | | reading variable sized blocks of data every second. This should be more efficient. Suggested & tested by: se * Add a syntax for excluding CD-ROM drives etc. Suggested by: des, se, many others... Manual page updates coming soon. Notes: svn path=/head/; revision=44756
* remove -g -O0, that was only for debugging...Ben Smithurst2001-06-231-1/+1
| | | | Notes: svn path=/head/; revision=44364
* mdoc(7) police: minor markup cleanup.Ruslan Ermilov2001-06-041-6/+3
| | | | Notes: svn path=/head/; revision=43487
* Add diskcheck-daemon.Poul-Henning Kamp2001-06-034-0/+1031
With a small disk being 20GB these days, chances are pretty good that an ailing sector will not be read while still being recoverable by the drive. Diskcheck daemon will read disks in the background at a low rate and that way give the diskdrive a chance to detect and correct soft read errors before they become hard errors. Idea by: phk Written by: ben Notes: svn path=/head/; revision=43474