summaryrefslogtreecommitdiffstats
path: root/share/man
Commit message (Collapse)AuthorAgeFilesLines
* Re-encode files from ISO-8859-1 to UTF-8uqs2011-05-2211-11/+11
|
* Add a new knob to atkbd(4) to enable typematic rate detection on boot,delphij2011-05-201-1/+6
| | | | | | | | | which is now disabled by default. The detection is known to cause hangs on boot with some new Lenovo laptops on FreeBSD/amd64. Reported by: gnn Discussed with: jkim MFC after: 3 months
* When adding examples to man-pages, try to make them at leastphk2011-05-191-5/+5
| | | | | | look like they might work. Prodded by: Vadim Goncharov
* Add support for "LED" enclosure management messages, defined by the AHCI.mav2011-05-171-1/+19
| | | | | | | | | When supported by hardware, this allows to control per-port activity, locate and fault LEDs via the led(4) API for localization and status reporting purposes. Supporting AHCI controllers may transmit that information to the backplane controllers via SGPIO interface. Backplane controllers interpret received statuses in some way (IBPI standard) to report them using present indicators.
* Try to explain what sbufs do and add an example to show it.phk2011-05-171-9/+36
| | | | Clarify return values.
* Document the supported hardware, somewhat.ru2011-05-171-1/+8
| | | | | Reviewed by: hselasky MFC after: 3 days
* Regen for WITH_OFED.ru2011-05-171-1/+6
|
* Add missing section number for .Xr jail.pluknet2011-05-171-1/+1
| | | | MFC after: 3 days
* More thorough mdoc and language fixes.uqs2011-05-171-35/+68
| | | | Submitted by: ru
* Typo fix.uqs2011-05-171-1/+1
|
* Typos, wording and mdoc fixes.uqs2011-05-171-17/+16
|
* Add I2C bus driver for the AMD Geode LX series CS5536 Companionbrix2011-05-152-0/+107
| | | | | | Device. Reviewed by: jhb (newbus bits only), adrian
* Fix few typos.mav2011-05-151-2/+2
| | | | | Submitted by: uqs MFC after: 1 week
* Disconnect sun4v architecture from the three.attilio2011-05-142-3/+3
| | | | | | | | | Some files keep the SUN4V tags as a code reference, for the future, if any rewamped sun4v support wants to be added again. Reviewed by: marius Tested by: sbruno Approved by: re
* Note that the _SWAP operation is supported for all list/queue types.mdf2011-05-132-3/+45
| | | | | | | | Also place STAILQ_REMOVE_HEAD in alphabetical order. Lastly, document the _SWAP macros. PR: kern/143033 MFC after: 1 week
* Regen.ru2011-05-101-36/+75
|
* * Rewrite ar.5 mannual page to better document ar(1) archive format.kaiw2011-05-071-197/+290
| | | | | | * Use more standard BSD license. Obtained from: elftoolchain
* Add a manpage for geom_map(4).adrian2011-05-052-0/+180
| | | | Submitted by: ray@dlink.ua
* Add make_dev_alias_p to MLINKS.ae2011-05-051-0/+1
| | | | | Pointed out by: pjd MFC after: 2 weeks
* Formatting fixes:ae2011-05-051-11/+13
| | | | | | | | | | o Fix date o Break sentences o Remove trailing whitespaces o Sort xrefs by section number Requested by: ru MFC after: 2 weeks
* Remove unneeded tab after .Ed to make manlint happy.gjb2011-05-041-1/+1
| | | | Reported by: manlint
* Document make_dev_alias_p().ae2011-05-031-1/+22
| | | | MFC after: 2 weeks
* Fixed the HISTORY section which was copied without editing from aio(4).ru2011-05-031-6/+2
| | | | Submitted by: Igor Sysoev
* Minor cleanup.brueffer2011-05-011-3/+2
|
* Introduce two new options MK_INET and MK_INET_SUPPORT analogicallybz2011-04-301-2/+14
| | | | | | | | | | with INET6 equivalents. Patch reather than re-genenerating src.conf (given the current problem with the script that does the re-gen). Reviewed by: gnn Sponsored by: The FreeBSD Foundation Sponsored by: iXsystems MFC after: 2 weeks
* Add a new bus method, BUS_ADJUST_RESOURCE() that is intended to be ajhb2011-04-294-0/+104
| | | | | | | wrapper around rman_adjust_resource(). Include a generic implementation, bus_generic_adjust_resource() which passes the request up to the parent bus. There is currently no default implementation. A bus_adjust_resource() wrapper is provided for use in drivers.
* Extend the rman(9) API to support altering an existing resource.jhb2011-04-292-5/+127
| | | | | | | | | | | | | | | | | | Specifically, these changes allow a resource to back a relocatable and resizable resource such as the I/O window decoders in PCI-PCI bridges. - rman_adjust_resource() can adjust the start and end address of an existing resource. It only succeeds if the newly requested address space is already free. It also supports shrinking a resource in which case the freed space will be marked unallocated in the rman. - rman_first_free_region() and rman_last_free_region() return the start and end addresses for the first or last unallocated region in an rman, respectively. This can be used to determine by how much the resource backing an rman must be adjusted to accomodate an allocation request that does not fit into the existing rman. While here, document the rm_start and rm_end fields in struct rman, rman_is_region_manager(), the bound argument to rman_reserve_resource_bound(), and rman_init_from_resource().
* Exar driver for X3100 10GbE Server/Storage adaptersgnn2011-04-281-0/+111
| | | | | | | | Features: Jumbo frames (up to 9600), LRO (Large Receive Offload), TSO (TCP segmentation offload), RTH (Receive Traffic Hash). Submitted by: Sriram Rapuru at Exar MFC after: 2 weeks
* Update man pages related to the change in default NFS clientrmacklem2011-04-281-7/+50
| | | | | | applied by r221124. I also deleted references to idmapd, since that daemon no longer exists. This is a content change.
* Rename alloc_unr(9) to unr(9) and adjust the links accordingly.des2011-04-272-7/+8
| | | | MFC after: 3 weeks
* Document timeout_task.kib2011-04-261-4/+31
| | | | | | | | While there, fix the type of the func argument of INIT_TASK macro, and use the modern name of the analogous facility from Linux kernel. Sponsored by: The FreeBSD Foundation MFC after: 1 month
* Introduce to rc.subr get_pidfile_from_conf(). It does just what it soundsdougb2011-04-231-8/+1
| | | | | | | | | like, determines the path to a pid file as it is specified in a conf file. Use the new feature for rc.d/named and rc.d/devd, the 2 services in the base that list their pid files in their conf files. Remove the now-obsolete named_pidfile, and warn users if they have it set.
* Add ref to the latest firmware additions.bschmidt2011-04-201-1/+5
|
* It is already seven years since mbuf allocator uses sameglebius2011-04-181-15/+16
| | | | | | M_WAITOK/M_NOWAIT flags as malloc(9). Update manual page. Submitted by: Vadim Goncharov <vadimnuclight tpu.ru>
* Add manual page for rctl.conf(5).trasz2011-04-142-0/+75
|
* Remove vestiges of disklabel(5).pluknet2011-04-144-9/+2
| | | | | Reviewed by: uqs MFC after: 5 days
* Update some terminology: floppies are no longer built, and FreeBSD is notnwhitehorn2011-04-121-2/+3
| | | | necessarily distributed by CVS any longer.
* Use the full and proper company name for Swinburne University of Technologylstewart2011-04-1212-56/+59
| | | | | | | | throughout the source tree. Requested by: Grenville Armitage, Director of CAIA at Swinburne University of Technology MFC after: 3 days
* Don't do make release and make install in one step. Setting DESTDIR fornwhitehorn2011-04-111-1/+2
| | | | make release has deleterious consequences.
* Add an install target to release/Makefile instead of grubbing aroundnwhitehorn2011-04-111-12/+14
| | | | | (and requesting that users grub around) in /usr/obj. Also make sure that make clean removes the bootonly media and clean up that target a little.
* - Add kern.cam.ada.X.write_cache tunables/sysctls to control write cachingmav2011-04-081-7/+11
| | | | | | | on per-device basis. - While adding support for per-device sysctls, merge from graid branch support for ADA_TEST_FAILURE kernel option, which opens few more sysctl, allowing to simulate read and write errors for testing purposes.
* Add reference to led(4), supported now.mav2011-04-081-5/+19
| | | | Add some details about supported chips.
* u3g.4:gjb2011-04-072-2/+1
| | | | | | | | | | | - remove self-reference in SEE ALSO section (originally was to s/XR/Xr) cxgbe.4: - remove blank line - add closing .El Reported by: manlint MFC after: 3 days
* Fix spelling.mav2011-04-071-1/+1
|
* Make ada(4) driver to control device write cache, same as ata(4) does.mav2011-04-071-1/+6
| | | | Add kern.cam.ada.write_cache sysctl/tunable to control it alike hw.ata.wc.
* Regenerate after r220401. It turns out makeman is clever about implieduqs2011-04-061-2/+17
| | | | | | | flags, so remove that part from WITHOUT_CXX again. This is only partially regenerated, as the entries for FDT and GPIO seem to have switched their default state, too.
* Add a manpage for the nvram2env driver.adrian2011-04-042-0/+123
|
* Minor tweaks to the man page:imp2011-04-011-11/+7
| | | | | | | o Remove bogus ordering info o 3C1 actually works, so remove that o Add warning about making sure BIOS is configured properly for PnP configured 3c509 cards.
* Add a missing .El macro.lstewart2011-04-011-0/+1
|
* Remove duplicate sentence.ae2011-03-301-4/+0
|
OpenPOWER on IntegriCloud