summaryrefslogtreecommitdiffstats
path: root/sbin
Commit message (Collapse)AuthorAgeFilesLines
* User reports that using mount_null destroyed his filesystem, I replyjkh1998-12-226-6/+66
| | | | | that nullfs really doesn't work, he askes why this isn't noted for the "dangerous" filesystems, I go "hmmm."
* Bad Dog! No Biscuit! *Never* commit without testing- even if it wasmjacob1998-12-201-3/+3
| | | | "just a printf formatting change"....
* add Bus and Device Reset commandsmjacob1998-12-202-27/+47
|
* Look for boot blocks in new default location.jkh1998-12-176-72/+36
|
* Mention affect of securelevel 3 and higher on attempts to change filter lists.ghelmer1998-12-161-0/+6
| | | | Prompted by: PR docs/7785
* Mention securelevel 3 as affecting ipfw and dummynet. Generalize commentghelmer1998-12-161-2/+11
| | | | | about fdisk and securelevel 2. PR: docs/7785
* Fix two possible non-exploitable buffer overflows.imp1998-12-161-3/+5
| | | | Thanks to: A friend at Sun auditing dump/restore for Solaris.
* Add pt_tcplisten.c functionality, fix a few minor bugsdillon1998-12-1514-22/+468
| | | | | PR: kern/8793, misc/8796, kern/8797, kern/8798, kern/8050, kern/6758 Submitted by: Duncan Barclay <dmlb@ragnet.demon.co.uk>
* ipfw changes for dummynet. manpages still missingluigi1998-12-141-2/+155
|
* sendmsg() didn't like the MSG_EOR flag and returned an error. Removing thedillon1998-12-122-4/+4
| | | | flag makes portal tcp operation work.
* Merged from Lite2 (one bcopy -> memmove, one significant change:bde1998-12-111-4/+5
| | | | | don't unlink _PATH_NOLOGIN for the -k case even if shutdown terminates abnormally. NetBSD already has this change).
* Fixed missing 'p' and `-' flags and other defects in the usage message.bde1998-12-111-4/+5
| | | | Fixed some style bugs.
* Merged from Lite2 (just an English fix or pun removal).bde1998-12-111-4/+4
| | | | | Updated date. I think dates in man pages should be changed at least when a new feature is described.
* Fixed disordered options in synopsis.bde1998-12-111-2/+2
|
* Fixed missing `p' flag in synopsis.bde1998-12-111-2/+2
| | | | Broken in: previous commit
* Add a '-p' flag to shutdown which corresponds to the '-p' flag to halt,msmith1998-12-102-7/+21
| | | | requesting a system power-off after shutdown.
* Use '#' flag in place of "0x" in format strings.rnordier1998-12-071-5/+5
|
* Disallow ipfw "tee" rules until it is actually implemented.archie1998-12-072-5/+10
| | | | PR: bin/8471
* 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'.
OpenPOWER on IntegriCloud