summaryrefslogtreecommitdiffstats
path: root/share/man
Commit message (Collapse)AuthorAgeFilesLines
* Quote the "u" as it's the name of the union, this may preventtrhodes2009-01-111-1/+1
| | | | | | | | some confusion when reading the manual page. PR: 117798 Discussed with: keramida, brueffer Recommended by: phk
* DEBUG_REDZONE needs DDB which needs KDB.brueffer2009-01-091-1/+3
| | | | | | PR: 130324 Submitted by: Jaakko Heinonen <jh@saunalahti.fi> MFC after: 3 days
* The description of the various securelevels has moved to thekeramida2009-01-081-2/+3
| | | | | | | security.7 manpage a while ago. MFC after: 1 week Noticed by: simon
* Language cleanup.brueffer2009-01-081-4/+5
|
* First cut at documenting hw.cam.cd.retry_count. Movedimp2009-01-081-38/+58
| | | | kern.cam.cd.%d.minimum_cmd_size to new SYSCTL VARIABLES section.
* Update date.mav2009-01-071-1/+1
|
* Add some more supported controller and codec models.mav2009-01-071-11/+28
| | | | Add one more proposition to check correct PCM audio device usage.
* Hook up sdhci man page to the build.mav2009-01-071-0/+1
|
* Cross-reference snd_ich and snd_hda man pages.mav2009-01-062-4/+11
| | | | | Some hardware require different drivers depending on implementation, that may confuse users.
* More wording improvements.brueffer2009-01-051-4/+4
| | | | Discussed with: stas
* Document the NO_XXX options supported by our Makefile.inc1.keramida2009-01-051-1/+64
| | | | | | Noticed by: simon Reviewed by: imp MFC after: 1 week
* Remove reference to pr_ousrreq from domain(9) since it's now gone fromrwatson2009-01-041-2/+0
| | | | | | | struct protosw. Submitted by: bz MFC after: 3 weeks
* - Improve wording.stas2009-01-041-2/+2
| | | | | Approved by: kib (mentor) MFC after: 1 week
* - Improve wording.stas2009-01-041-5/+4
| | | | | | | - ae(4) first appeared in 7.1. Reflect this. Approved by: kib (mentor) MFC after: 1 week
* Mdoc and language cleanup.brueffer2009-01-031-13/+17
|
* Add missing comma.brueffer2008-12-301-1/+1
|
* Mdoc and wording improvements, also point to cpucontrol(8).brueffer2008-12-301-17/+23
|
* Integrate the NDIS USB support code to CURRENT.weongyo2008-12-271-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Now the NDISulator supports NDIS USB drivers that it've tested with devices as follows: - Anygate XM-142 (Conexant) - Netgear WG111v2 (Realtek) - U-Khan UW-2054u (Marvell) - Shuttle XPC Accessory PN20 (Realtek) - ipTIME G054U2 (Ralink) - UNiCORN WL-54G (ZyDAS) - ZyXEL G-200v2 (ZyDAS) All of them succeeded to attach and worked though there are still some problems that it's expected to be solved. To use NDIS USB support, you should rebuild and install ndiscvt(8) and if you encounter a problem to attach please set `hw.ndisusb.halt' to 0 then retry. I expect no changes of the NDIS code for PCI, PCMCIA devices. Obtained from: //depot/projects/ndisusb/...
* Update for the last API changes.mav2008-12-251-14/+2
|
* Hook up the ether_echo node and fix the man pagejulian2008-12-252-1/+2
|
* Add a trivial node to reflect ethernet frames to whence they came.julian2008-12-251-0/+77
| | | | MFC after: 1 month
* Apply various fixes:trhodes2008-12-241-1/+6
| | | | | | | | | Silence mdoc(7) warnings; Xref correct manual pages; Point user to the ddb.8 manual page. PR: 129398 Submitted by: gavin
* Netgroup database can be centralized via NIS, list it.trhodes2008-12-231-2/+6
| | | | | | | Add a missing comma and bump doc date. PR: 127602 Submitted by: Dmitry Sivachenko <mitya@yandex-team.ru>
* pr_pfh has been gone from protosw since r120386 (more than 5 years ago).bz2008-12-231-2/+1
| | | | MFC after: 4 weeks
* Add support for the HP 4470C scanner.remko2008-12-231-1/+2
| | | | | | | | | | Note that there is no working backend (or at least that is mentioned in the PR ticket) but the device is now supported on our end. PR: 117205 Submitted by: Artem Naluzhnyy <tut at nhamon dot com dot ua> MFC after: 1 week
* Document that the devd config is in /etc/devd/asus.confthompsa2008-12-171-2/+3
|
* Boot out <sysexits.h> once and for all.des2008-12-171-7/+4
| | | | MFC after: 1 week
* According to phk@, VOP_STRATEGY should never, _ever_, returntrasz2008-12-161-1/+3
| | | | | | | | | | | | | anything other than 0. Make it so. This fixes "panic: VOP_STRATEGY failed bp=0xc320dd90 vp=0xc3b9f648", encountered when writing to an orphaned filesystem. Reason for the panic was the following assert: KASSERT(i == 0, ("VOP_STRATEGY failed bp=%p vp=%p", bp, bp->b_vp)); at vfs_bio:bufstrategy(). Reviewed by: scottl, phk Approved by: rwatson (mentor) Sponsored by: FreeBSD Foundation
* Elaborate on the hardware features fxp(4) supports.brueffer2008-12-151-1/+8
| | | | | Submitted by: yongari MFC after: 1 week
* Add a symlink from enc.4 to if_enc.4.bz2008-12-151-0/+1
| | | | | Reviewed by: brueffer MFC after: 4 weeks
* re-add accidentally deleted linekmacy2008-12-151-0/+1
|
* This main goals of this project are:qingli2008-12-153-95/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 1. separating L2 tables (ARP, NDP) from the L3 routing tables 2. removing as much locking dependencies among these layers as possible to allow for some parallelism in the search operations 3. simplify the logic in the routing code, The most notable end result is the obsolescent of the route cloning (RTF_CLONING) concept, which translated into code reduction in both IPv4 ARP and IPv6 NDP related modules, and size reduction in struct rtentry{}. The change in design obsoletes the semantics of RTF_CLONING, RTF_WASCLONE and RTF_LLINFO routing flags. The userland applications such as "arp" and "ndp" have been modified to reflect those changes. The output from "netstat -r" shows only the routing entries. Quite a few developers have contributed to this project in the past: Glebius Smirnoff, Luigi Rizzo, Alessandro Cerri, and Andre Oppermann. And most recently: - Kip Macy revised the locking code completely, thus completing the last piece of the puzzle, Kip has also been conducting active functional testing - Sam Leffler has helped me improving/refactoring the code, and provided valuable reviews - Julian Elischer setup the perforce tree for me and has helped me maintaining that branch before the svn conversion
* Typo/rewording.schweikh2008-12-131-2/+2
|
* fix support and capabilitieskmacy2008-12-121-4/+5
| | | | MFC after: 3 days
* - Drop a reference to an older 'kdb' debugger that FreeBSD never had.jhb2008-12-121-7/+2
| | | | | - Tweak a word choice. - Drop a reference to Alpha.
* Add a man page for VOP_VPTOCNP.marcus2008-12-122-0/+111
| | | | | Reviewed by: arch Approved by: kib
* Add entry for if_transmit and if_qflushkmacy2008-12-111-1/+20
|
* Add facilities to pmu(4) to interrogate battery status on Apple PowerPCnwhitehorn2008-12-081-3/+22
| | | | | | laptops. This includes battery presence detection, charging status, current and voltage readouts, and charge level indication. The sysctl interface is somewhat ACPI-like.
* Fix spelling error (find -> found).nwhitehorn2008-12-071-1/+1
|
* Now that pmu(4) has features, it should also have a man page.nwhitehorn2008-12-072-0/+96
|
* Correct a typo.schweikh2008-12-051-1/+1
|
* Update bce(4)'s hardware list to reflect the recent update to driver.delphij2008-12-031-3/+20
| | | | MFC after: 3 days
* Improve grammar.brueffer2008-12-021-1/+1
| | | | Submitted by: Ben Kaduk
* Switch to ath hal source code. Note this removes the ath_halsam2008-12-011-24/+37
| | | | | | | | | | | | | | | | | module; the ath module now brings in the hal support. Kernel config files are almost backwards compatible; supplying device ath_hal gives you the same chip support that the binary hal did but you must also include options AH_SUPPORT_AR5416 to enable the extended format descriptors used by 11n parts. It is now possible to control the chip support included in a build by specifying exactly which chips are to be supported in the config file; consult ath_hal(4) for information.
* Remove The Netgear WG111v2 supportkevlo2008-12-011-2/+0
|
* Clarify the reason to not use the volatile string as an argument to CTRkib2008-11-301-6/+11
| | | | | | | macros. Note the logging of file and line. Reviewed by: dchagin MFC after: 3 days
* Add standard MLINKs.brueffer2008-11-291-0/+3
|
* Bring this a little closer to our manpage style.brueffer2008-11-291-16/+30
|
* Add several missing MLINKs.brueffer2008-11-291-1/+10
|
* Fix typo.brueffer2008-11-291-1/+1
|
OpenPOWER on IntegriCloud