summaryrefslogtreecommitdiffstats
path: root/sbin
Commit message (Collapse)AuthorAgeFilesLines
* Cosmetic and documentation changes brought from earlier FreeBSD versions.julian1998-12-0340-96/+277
| | | | (e.g. RCS Id:)
* Reviewed by: Don Lewis <Don.Lewis@tsc.tdk.com>julian1998-12-0343-1166/+1701
| | | | | | | | | | | | Submitted by: Kirk McKusick <mckusick@McKusick.COM> Obtained from: Mckusick, BSDI and a host of others This exactly matches Kirks sources imported under the Tag MCKUSICK2. These are as supplied by kirk with one small change needed to compile under freeBSD. Some FreeBSD patches will be added back, though many have been added to Kirk's sources already.
* These shouldn't have been checked in here..julian1998-12-022-406/+0
| | | | Reviewee by:
* Insert missing macro, and while I'm here change the inconsistentbillf1998-12-021-3/+3
| | | | | | | "page_ctl" and "pagectl" to "pgctl" to reflect ``camcontrol --help''. PR: docs/8781 Submitted by: Norihiro Kumagai <kuma@jp.FreeBSD.org>
* This commit was generated by cvs2svn to compensate for changes in r41461,julian1998-12-022-0/+406
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Latest version of fsck from the folks at EX-CSRG specifically Kirk Mckusick.julian1998-12-0217-345/+1196
| | | | | | | | | | Don Lewis and Kirk have merges nearly all FreeBSD Fixes into Kirks sources so there is very little that needs to be re-merged.
| * Import Lite2's src/usr.sbin, except for timed. All changed filesbde1997-08-022-10/+103
| | | | | | | | except one unimportant one have already left the vendor branch.
* | Fixed non-use of .Nm and hard line breaks in rev.1.16-1.17:bde1998-11-291-7/+12
| |
* | Straightened the terminology straightening in 1.17-1.18. Fixed hardbde1998-11-291-7/+8
| | | | | | | | line breaks in rev.1.16-1.18.
* | Refer to "da" rather than "sd" device.rnordier1998-11-282-4/+4
| |
* | Refer to "da" rather than "sd" device.rnordier1998-11-282-46/+46
| | | | | | | | Suggested by: jdp
* | sd0 -> da0joerg1998-11-264-8/+8
| |
* | Preprocessor support for `ipfw [-q] ... file'.joerg1998-11-232-15/+145
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This allows for more flexible ipfw configuration files using `variables' to describe frequently used items in the file, like the local IP address(es), interface names etc. Both m4 and cpp are useful and supported; with m4 being a little more unusual to the common C programmer, things like automatic rule numbering can be achieved fairly easy. While i was at it, i've also untangled some of the ugly style inside main(), and fixed a bug or two (like not being able to use blank lines when running with -q). A typical call with preprocessor invocation looks like ipfw -p m4 -Dhostname=$(hostname) /etc/fwrules Someone should probably add support for this feature to /etc/rc.firewall.
* | Change sd -> da in examples.asami1998-11-191-4/+4
| | | | | | | | Inspired by: a mail by Scott Smyth <smyth@bashful.realminfo.com>
* | Fix a typo in a comment.ken1998-11-121-2/+2
| |
* | Fill-in the manpages a little.obrien1998-11-123-9/+39
| |
* | Fixed disorder.bde1998-11-101-4/+4
| |
* | Reenable adjkerntz for alpha.dima1998-11-091-5/+2
| |
* | Fix some calculations that use sizeof to attempt to find the end of antruckman1998-11-091-3/+3
| | | | | | | | | | | | | | array that were doing sizeof on an unrelated variable. This just happened to work right on the i386, but would not on the alpha. PR: bin/8427
* | Allow for printing out integer arrays.phk1998-11-081-2/+8
| |
* | Bitch if both an id and a name are specified. Make the man page and usagedes1998-11-072-6/+14
| | | | | | | | | | message reflect this. As a bonus, make the -n optional so that 'kldunload name' works as one would expect.
* | Cosmetic fix (make header align with data)des1998-11-071-2/+2
| |
* | Add an entry for the new NetBSD partition id.alex1998-11-062-2/+4
| |
* | Add an entry for BSD/OS [23].x partition types.jkoshy1998-11-062-2/+4
| | | | | | | | | | | | | | | | | | I don't have access to a BSD/OS machine to check the veracity of the magic number. However, no harm will be done by the commit and since someone was motivated enough to file a PR, I'm committing the change. PR: 7629 Submitted by: Jos Backus <jbackus@plex.nl>
* | For large filesystems you can run past default resource limits causingmjacob1998-11-053-3/+21
| | | | | | | | | | | | | | fsck to exit unhappily. Fix this by doing a getrlimit/setrlimit for RLIMIT_DATA. I made the same fix in NetBSD. Reviewed by: dg@root.com
* | Correct u_int_64 casting to remove warnings in printf()grog1998-11-031-2/+2
| |
* | Show revive pointer in percentage complete as well as absolute value.grog1998-11-021-4/+5
| |
* | Remove kludge to set subdisk states when bringing up a plexgrog1998-11-021-50/+1
| |
* | Rename a function name so that it doesn't conflict with a future system call.dg1998-10-301-4/+4
| |
* | 64bit fixes.dima1998-10-274-29/+29
| | | | | | | | | | | | | | (Note: ``dump'' doesn't work on alpha yet. Apparently there's a problem somewhere is the physio() area) Submitted by: myself && Matt Dillon.
* | Oops, don't quite use RAW_PART instead of RAWPARTITION. Use 'a' + RAW_PARTbde1998-10-232-4/+4
| | | | | | | | in both places.
* | list.c:grog1998-10-211-4/+106
| | | | | | | | | | Add dump of last requests with 'info -V'. This requires the requests to be enabled with 'debug 8'.
* | Honour the default CFLAGS. This fixes a spew of warnings for compilingbde1998-10-171-14/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | unused static inlines in headers without -O. Fixed missing libraries in DPADD. Use .PATH instead of a symlink farm. Removed bogus dependency of util.c on statetext.h (only util.o depends on it). Removed rule for building statetext.h. The dependency was used to get statetext.h built, but statetext.h is a non-generated source file so it doesn't need building. This fixes an annoying message for the null build and use of `make' instead of ${MAKE} to do the null build. Fixed some style bugs.
* | Don't assume that time_t is long.bde1998-10-171-3/+7
| |
* | Don't assume that time_t is long.bde1998-10-171-2/+4
| |
* | Updated the error message for EXDEV to match recent kernel fixes.bde1998-10-172-22/+10
| | | | | | | | | | | | Fixed nearby indentation. Use RAW_PART instead of RAWPARTITION.
* | Backed out previous commit. It broke fsck again. See rev.1.22 and thebde1998-10-171-3/+1
| | | | | | | | references there, and rev.1.38 of sys/ufs/ufs/ufs_disksubr.c.
* | Don't rewrite the disk label. The type field is already set correctlyjkh1998-10-171-1/+3
| | | | | | | | | | | | | | and we don't use the frags info, so why bother? More to the point, it seems to result in an EXDEV error when the label is written out and we lose because of it (don't know why though). This is a work-around and is marked as such.
* | Warn about "mount -u" bug.des1998-10-162-2/+10
| |
* | Spelling.mckay1998-10-151-2/+2
| |
* | When we send a stop unit command to a device, send it as an ordered tag soken1998-10-131-2/+9
| | | | | | | | | | | | | | | | that any transactions in front of the stop command get flushed to disk first. This will have no effect on devices that have tagged queueing turned off, or don't support tagged queueing. Reviewed by: gibbs
* | Fix a bug in camcontrol that caused 'camcontrol start' to not work.ken1998-10-131-6/+1
| | | | | | | | Noticed by: Philippe Regnauld <regnauld@deepo.prosa.dk>
* | Kill an extraneous dot.rnordier1998-10-101-2/+2
| | | | | | | | | | PR: 8103 Submitted by: Kazuo Horikawa <horikawa@jp.freebsd.org>
* | Teach dset about isa_devtab_cammsmith1998-10-061-2/+4
| |
* | Add a missing word.ken1998-10-061-2/+2
| |
* | Add the -c flag in to the usage summaries in the man page and the usage()ken1998-10-032-4/+7
| | | | | | | | | | | | | | function in camcontrol. Also, fix the modepage example in the examples section of the man page. It didn't quite come out right with the '.Dl' macro.
* | Add a new CAM debugging mode, CAM_DEBUG_CDB. This causes the kernel token1998-10-022-5/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | print out a one line description/dump of every SCSI CDB sent to a particular debugging target or targets. This is a good bit more useful than the other debugging modes, I think. Change some things in LINT to note the availability of this new option. Fix an erroneous argument to scsi_cdb_string() in scsi_all.c Reviewed by: gibbs
* | Correct source file corruption in last checkingrog1998-09-301-2/+1
| | | | | | | | Observed by: jkh
* | Don't require an argument for -v flaggrog1998-09-292-11/+18
| | | | | | | | | | | | | | Correct checks for null special file names Add Usage entry for -v flag Get terminology straight in man page Reviewed by: bde
* | Add history.obrien1998-09-291-1/+6
| |
OpenPOWER on IntegriCloud