summaryrefslogtreecommitdiffstats
path: root/share
Commit message (Collapse)AuthorAgeFilesLines
* Document the two new sysctl variables introduced in rev 1.154 of tty.c.sheldonh2001-08-051-0/+10
|
* Clean up previous delta:sheldonh2001-08-051-8/+14
| | | | | | | | * Fix typo (defautls). * Don't use hard sentence breaks in new text. * Don't introduce the use of the second person (you). * Use the standard "IMPLEMENTATION NOTES" section name instead of the non-standard "TUNING".
* Once again throw out the calculation of si_iosize_max and set it to 64K.scottl2001-08-051-0/+12
| | | | | | | | Although it can go higher, it is not safe to so do on arrays with many members. Compromise by adding a tunable, "hw.aac.iosize_max" that can be set at boottime. Also document in the aac(4) manpage. MFC after: 4 weeks
* Fix thinko: FORCE_PKG_RESIDENT -> FORCE_PKG_REGISTERgreid2001-08-021-1/+1
| | | | Submitted by: Raymond Kohler <ray.kohler@mail.com>
* MFS: in HISTORY section, fix release number of first appearancesheldonh2001-08-015-5/+5
|
* It appears we really shouldn't be following this example man page -- oneobrien2001-08-011-1/+1
| | | | | | | | should not use a `%' in examples. I don't know if this is the consensus of doc@, or just a unilateral decision of committer that corrected my following of this example. Maybe a docs person could review these files and see if they still show current guidelines.
* More updates from Chad.alfred2001-07-309-9/+314
| | | | | Submitted by: Chad David <davidc@acns.ab.ca> Reviewed by: sheldonh
* Document the debug.debugger_on_panic tunable, for those poor soulssheldonh2001-07-301-0/+20
| | | | | | | | | who didn't realize that DDB_UNATTENDED just sets its starting value. This change is over 5 years late, and documents the original semantics of debug.debugger_on_panic, which may have been changed by the (again undocumented) change in rev 1.44 of kern_shutdown.c.
* Add Mac OS X 10.0 and 10.1 as well as Darwin.asmodai2001-07-301-71/+77
| | | | | | | Partially submitted by the PR, the rest by yours truly, corrections welcomed. PR: 26137 Submitted by: trevor
* Since we remove skey...ache2001-07-302-31/+0
|
* Since the ``-w'' sysctl(8) option has been deprecated,yar2001-07-301-1/+1
| | | | don't mention it in the manpages.
* Finally add the manpage for the IEEE 802.1Q VLANyar2001-07-282-0/+144
| | | | network interface.
* Take -Wconversion out of BDECFLAGS. It is not particularly useful forpeter2001-07-271-2/+3
| | | | | | | | | | | us anyway because it doesn't work right on the x86 and alpha. On K&R code, small ints would be promoted to int. ANSI-C doesn't require this and the small ints can be passed taking 8 or 16 bits of stack space. However, the x86 abi that we use *does* promote to 32 bit, and the alpha ABI passes them in 64 bit registers so we dont have that aspect of the problem here. Losing float precision by having it cast down to int because the funtion prototype specifies int is the least of our problems. -Wmissing-prototypes helps here anyway.
* Add a short man page describing the vfs_unmountall() function.chris2001-07-272-1/+47
| | | | MFC after: 1 week
* Strongly recommend that ispfw(4)'s f/w be used with this driver if available.mjacob2001-07-261-0/+5
| | | | MFC after: 1 week
* Finally document the net.link.ether.bridge_cfg andbmah2001-07-261-20/+57
| | | | | | | | | | net.link.ether.bridge_refresh variables. While I'm here, try to make some of the markup on this page more consistent with the new (markup-reviewed) content. PR: 22060 Reviewed by: ru (for markup, on an earlier version of this delta) MFC after: 2 days
* Remove $daily_status_named_logs and figure out which /var/log/messages*brian2001-07-261-4/+0
| | | | | | | | files to look an (in the same way that /etc/security does). Don't single-quote $start, reducing it to an empty string. MFC after: 3 days
* Add /dev/hpn? as an alias to /dev/aac? so that the HP version of the CLIscottl2001-07-251-2/+7
| | | | | | utility will work, and document it in the manpage. MFC after: 3 days
* Remove redundant mtu/mru/speed settingsbrian2001-07-241-6/+0
| | | | MFC after: 6 days
* mdoc(7) police: remove hard sentence breaks and wrap lines over 80dd2001-07-241-2/+4
| | | | characters.
* Fix or add types where appropriate.dd2001-07-241-2/+11
|
* Improve markup.dd2001-07-241-3/+5
| | | | Reviewed by: ru
* You were knocked senseless by the Boomerang, spun around by the Cyclone,wpaul2001-07-232-0/+143
| | | | | | | | | | | | | | | | | | blown over by the Hurricane and had a house dropped on you by the Tornado. Now it's time to have your parade rained on by... the Typhoon! This commit adds driver support for 3Com 3cR990 10/100 ethernet adapters based on the Typhoon I and Typhoon II chipsets. This is actually a port of the OpenBSD driver with many hacks by me. No Virginia, there isn't any support for the hardware crypto yet. However there is support for TCP/IP checksum offload and VLANs. Special thanks go to Jason Wright, Aaron Campbell and Theo de Raadt for squeezing enough info out of 3Com to get this written, and for doing most of the hard work. Manual page is included. Compiled as a module and included in GENERIC.
* change the default for isdn_fsdev to NO.hm2001-07-231-1/+1
| | | | | PR: 26818 Submitted by: Clement Ballabriga <clement@asso.ups-tlse.fr>
* mdoc(7) police: mark up kernel options in .Dv, rc.conf variables indd2001-07-231-10/+19
| | | | .Va, and use .Pp instead of blank lines all over the place.
* Consistently capitalize the first letter of the first word in thedd2001-07-231-14/+14
| | | | variable descriptions.
* Document syslogd_program and inetd_program.dd2001-07-231-0/+12
|
* New make knob, SENDMAIL_M4_FLAGS, modifies the flags passed to m4 whengshapiro2001-07-232-0/+9
| | | | | | | | | | building a .cf file from a .mc file. Include -D_FFR_TLS_O_T to enable tls policy control since the sendmail binary build enables that FFR as well. PR: conf/28361 MFC after: 1 week
* Change the errx() example. Error messages passed to the err(3)dd2001-07-221-1/+1
| | | | | | | functions shouldn't have the first word capitalized, and shouldn't have a period at the end. This is how most of our programs, and most (all?) of the 4.4BSD programs, are. In the past, we've even done sweeps to change things to comply to this.
* Add: ``If you have to wrap a long statement, put the operator at thedd2001-07-221-1/+4
| | | | | | end of the line.'' Reviewed by: alfred, bde
* remove -*- nroff -*- thingyalfred2001-07-221-1/+0
|
* revert previous accidental commitassar2001-07-221-1/+5
|
* get rid of some printf and pointer type warningsassar2001-07-221-5/+1
|
* Add a patch from the isdn mailinglist, Juha writes:hm2001-07-211-0/+1
| | | | | | | | | | ppp in 4.x apparently does a close(2) after opening the tun device; i4brunppp starts up with only file descriptors 0 and 1 open (to the rbch device) -> tun gets opened as 2 -> tun gets closed -> later use results in EBADF. A quick fix to i4brunppp.c makes the thing work (I know, this is ugly, but I needed it up quick...): Submitted by: Juha-Matti Liukkonen <jml@cubical.fi>
* Add the i4brunppp utility to the example section. This utility is one wayhm2001-07-215-0/+373
| | | | of taking incoming calls with i4b in conjunction with userland ppp(8).
* update ReleaseNotes for isdnd keyword maxconnecttimehm2001-07-211-1/+5
|
* Implement pthread_attr_[gs]etguardsize(). Non-default-size stacks used tojasone2001-07-201-0/+6
| | | | | | | | be malloc()ed, but they are now allocated using mmap(), just as the default-size stacks are. A separate cache of stacks is kept for non-default-size stacks. Collaboration with: deischen
* bpf(4) hasn't used a static number of devices for over 2 years now, andjhb2001-07-191-5/+0
| | | | | | | | the SYNOPSIS hasn't had an example number of devices since rev 1.2 which was over 5 and a half years ago, so remove a sentence claiming that the example in the SYNOPSIS limited bpf to 16 devices. MFC after: 3 days
* State explicitly how the manpage "DESCRIPTION" options should be listed.obrien2001-07-191-1/+7
|
* 4.4 will have sbufs.des2001-07-191-1/+1
|
* mdoc(7) police: don't use enclosure macros with plain text.ru2001-07-181-3/+6
|
* Removed the comment that required all FreeBSD manpagesru2001-07-183-45/+36
| | | | | | | | | | | | | to have the $FreeBSD$ keyword, as this is now enforced by the CVSROOT/commit_prep.pl script. Fold multi-word macro arguments into a single argument by putting the surrounding double quotes - this speeds up the -mdoc processing drastically (of course if used systematically). Use the new features of -mdoc: exact -width specifiers, .In macro as an ``.Fd #include'' replacement.
* Remove an example of bad sentence breaking style.sheldonh2001-07-183-15/+12
|
* Install and provide MLINKS for:alfred2001-07-181-2/+15
| | | | | | | pbuf.9 vm_page_alloc.9 vm_page_copy.9 vm_page_flag.9 vm_page_hold.9 vm_page_insert.9 vm_page_io.9 vm_page_lookup.9 vm_page_protect.9 vm_page_sleep_busy.9 vm_page_wakeup.9 vm_page_wire.9 vm_page_zero_fill.9 vm_set_page_size.9
* Document some of the kernel vm_page API as well as the pbuf API.alfred2001-07-1814-0/+1016
| | | | Submitted by: Chad David <davidc@acns.ab.ca>
* Add a script_name_sep rc.conf knob to specify the IFS characterroam2001-07-171-0/+7
| | | | | | | | | | for separating the startup scripts' list into individual filenames. Run the shutdown scripts in reverse alphabetical order, so dependent services are stopped before the services they depend upon. Reviewed by: -arch, -audit MFC after: 3 weeks
* Note which entries are created by sysinstall(8).nik2001-07-161-1/+4
| | | | Requested by: ru
* Grammar: 'effect' is a noun and 'affect' is a verb.sheldonh2001-07-165-6/+7
|
* Spelling: aquire -> acquire.ru2001-07-163-4/+4
|
* Manpage for pfind() and zpfind().ru2001-07-162-1/+87
| | | | Submitted by: Evan Sarmiento <kaworu@sektor7.ath.cx>
OpenPOWER on IntegriCloud