summaryrefslogtreecommitdiffstats
path: root/share
Commit message (Collapse)AuthorAgeFilesLines
* Add MLINKS for rwlock(9).jhb2006-04-191-0/+10
|
* Document rw_try_upgrade() and rw_downgrade().jhb2006-04-191-0/+23
|
* Various nits and fixups so that the text reads smoother in several places.jhb2006-04-191-69/+80
| | | | | Also, more closely match the prototypes in sys/rwlock.h and add a BUGS section.
* Trim a couple of xrefs.jhb2006-04-191-2/+0
|
* - Add new ntpd_config variable so that people can override it in rc.conf.flz2006-04-181-1/+8
| | | | | | | | - Add default value in /etc/defaults/rc.conf. - Add documentation bits to rc.conf(5). Approved by: cperciva (mentor) MFC after: 1 week
* - Sleep/wakeup operate on threads now, not processes.jhb2006-04-171-40/+62
| | | | | | | | | | - Describe msleep() as the primary sleep function now rather than tsleep() and describe tsleep() and msleep_spin() as variations. - Try to make the description of msleep() a bit closer to English (sentences with actual subjects, etc.) - Document that a priority of 0 now prevents the thread's priority from being altered. - Add a history note for wakeup_one().
* o Document /dev/fido.maxim2006-04-151-4/+3
| | | | | | PR: docs/85425 Approved by: phk MFC after: 2 weeks
* o Fix prototype for SYSCALL_MODULE(9): the third argumentmaxim2006-04-151-3/+3
| | | | | | | | is a pointer to struct sysent. Correct its description. PR: docs/84790 Submitted by: Dirk Gouders MFC after: 2 weeks
* Fix markup and some typos.ru2006-04-141-23/+70
|
* Make CCD be able to read and write Linux software raids.cracauer2006-04-131-0/+28
| | | | | | | | | | Supported for raid-0 with <n> disks, raid-1 with 2 disks. Manpages have examples, warnings etc. Test scripts on http://www.cons.org/cracauer/ccdconfig-linux/ Reviewed by: alfred
* Spell synchronous with required silent 'h'.brooks2006-04-131-2/+2
| | | | | Reported by: ru, ceri Pointy hat: brooks
* bce(4) does polling too.brueffer2006-04-131-1/+2
| | | | MFC after: 3 days
* Regen.ru2006-04-131-4/+8
|
* Commit the various network interface configutation updates I've beenbrooks2006-04-131-8/+30
| | | | | | | | | | | | | | | | working on. 1) Make it possible to configure interfaces with certain characters in their names that aren't valid in shell variables. Currently supported characters are ".-/+". They are converted into '_' characters. 2) Replace nearly all eval statements in network.subr with a new function get_if_var which substitues an interface name (after the translations above) for "IF" in a variable name. 3) Fix list_net_interfaces() in the nodhcp case. 4) Allow the administrator to specify if dhclient should be started when /etc/rc.d/netif configures the interface or only by devd. This can be set on both a per interface and system wide basis. PR: conf/88974 [1,2], conf/92433 [1,2]
* Document the bluetooth/, rc.d/, security/ and ssh/ etc subdirectories.brueffer2006-04-121-2/+16
| | | | | Prodded by: markus MFC after: 3 days
* If we end up with a CTIO completing with CAM_REQUEUE_REQ,mjacob2006-04-111-2/+16
| | | | | be obliging and just redo the request instead of squawking and dying.
* Fix typo.brueffer2006-04-111-1/+1
| | | | | | PR: 95620 Submitted by: Stephane Bortzmeyer <bortzmeyer@nic.fr> MFC after: 3 days
* - Add support for the Acer Acerscan 640BT.flz2006-04-111-1/+3
| | | | | | | | | - Add documentation bits. PR: usb/95616 Submitted by: Matthieu Guegan <lesaint@gcu.info> Approved by: cperciva (mentor) MFC after: 3 days
* Add bce(4).brueffer2006-04-101-1/+4
|
* - Correct some typosbrueffer2006-04-101-8/+12
| | | | - New sentence, new line
* Hook bce up to the buildps2006-04-101-0/+1
|
* Add a driver for the Broadcom NetXtreme II (BCM5706/BCM5708)ps2006-04-101-0/+293
| | | | | | PCI/PCIe Gigabit Ethernet adapeter. Submitted by: David Christensen
* Remove redundant 'from'.pjd2006-04-101-1/+1
|
* Document CRD_F_KEY_EXPLICIT flag. While here more flags description morepjd2006-04-101-2/+8
| | | | | | readable. MFC after: 2 weeks
* - Mention the Epson Stylus Photo RX425 scanner in uscanner(4), missed in myflz2006-04-101-1/+3
| | | | | | | | latest commit. Reminded by: simon Approved by: cpercival (mentor, implicit) MFC after: 3 days
* Sync acpi_asus(4) manual with the code.philip2006-04-091-1/+5
| | | | | Reminded by: brueffer X-MFC after: 3 days (or so)
* - Add following global jail options, used if no jail-specific options areflz2006-04-081-6/+177
| | | | | | | | | | | | | | | | | | set: * jail_mount_enable * jail_devfs_ruleset * jail_devfs_enable * jail_fdescfs_enable * jail_procfs_enable * jail_fstab * jail_flags - Add a jail_interface / jail_<jid>_interface option. An ip alias will be created (jail_<jid>_ip) on jail_interface or jail_<jid>_interface if set. This is not a mandatory option. - Document all missing jail_* options in rc.conf(5). Approved by: cperciva (mentor) MFC after: 2 weeks
* Fix typo/pasto: Make NGM_FEC_MODE_* match set_mode_*.dd2006-04-061-2/+2
|
* Revert the backout in the last revision, it was committed to the wrong branch.brueffer2006-04-051-2/+22
| | | | Pointy hat to: brueffer
* Back out the fan control changes that were merged in revision 1.2.2.5.brueffer2006-04-051-22/+2
| | | | | | | | The necessary changes to the driver haven't been merged yet, which won't happen before 6.1-RELEASE. Submitted by: markus Approved by: re (scottl)
* add links for the functions documented in bus_space.9...jmg2006-04-041-0/+41
|
* - Sync rc.subr with NetBSD.flz2006-04-041-1/+14
| | | | | | | | | - Merge some documentation bits. Reviewed by: brooks, simon (doc) Approved by: cperciva (mentor) Obtained from: NetBSD MFC after: 3 days
* The MFI driver appears first in FreeBSD 6.1scottl2006-04-041-2/+2
|
* Update pmap_remove_pages(9) doc.peter2006-04-031-7/+3
|
* Have WITHOUT_BIND_MTREE imply WITHOUT_BIND_ETCphk2006-04-012-1/+5
|
* Convert the SYNOPSIS section to look like the ones used in other driverbrueffer2006-04-016-0/+72
| | | | | | manpages, mention module support. MFC after: 3 days
* Convert the SYNOPSIS section to look like the ones used in other driverbrueffer2006-04-013-5/+47
| | | | | | | | manpages, mention module support. Also add the crypto and cryptodev devices as the drivers are kind of useless without them. MFC after: 3 days
* Convert the SYNOPSIS section to look like the ones used in other driverbrueffer2006-04-011-4/+12
| | | | | | manpages. MFC after: 3 days
* Convert the SYNOPSIS section to look like the ones used in other driverbrueffer2006-04-011-6/+12
| | | | | | | manpages. Don't mention the include file, it's not important for the operation of this driver. MFC after: 3 days
* Add a standard boilerplate to the SYNOPSIS section that mentions howbrueffer2006-04-011-1/+13
| | | | | | to load a kernel module. MFC after: 3 days
* Mention the module in the synopsis.brueffer2006-04-012-2/+26
|
* o Add scc(4) to the build.marcel2006-03-302-14/+25
| | | | | | o Add the scc(4) manpage to the build. o Update the uart(4) manpage to account for scc(4). o Update the uart(4) module build to include support for scc(4).
* Add scc(4), a driver for serial communications controllers. Thesemarcel2006-03-301-0/+75
| | | | | | | | | controllers typically have multiple channels and support a number of serial communications protocols. The scc(4) driver is itself an umbrella driver that delegates the control over each channel and mode to a subordinate driver (like uart(4)). The scc(4) driver supports the Siemens SAB 82532 and the Zilog Z8530 and replaces puc(4) for these devices.
* document the tty files that uart(4) provides like sio(4) and pty(4) bothjmg2006-03-301-0/+14
| | | | | | | | | | do.. This copies only part of the FILES section from sio(4).... We might want to make tty(4) document the files provided, and have each of these document the characters that it uses... Pointed out by: Yasholomew Yashinski MFC after: 3 days
* Mention that MegaRAID SAS controllers are supported by mfi(4).brueffer2006-03-291-1/+6
|
* Mention that amr(4) supports older MegaRAID hardware and clean up thebrueffer2006-03-291-3/+8
| | | | last vestiges of example.4.
* Add a manual page for mfi(4).scottl2006-03-292-0/+87
|
* - Be explicit about libmap32.conf only working on amd64pav2006-03-271-2/+3
| | | | Requested by: ru
* - Document libmap32.confpav2006-03-271-1/+8
| | | | MFC after: 1 week
* The removal of CIRCLEQ left four queue macros. One sentence was missedemaste2006-03-251-1/+1
| | | | | | | | in the man page update. PR: docs/94938 Submitted by: Ed Schouten <ed@fxq.nl> MFC After: 3 days
OpenPOWER on IntegriCloud