summaryrefslogtreecommitdiffstats
path: root/share
Commit message (Collapse)AuthorAgeFilesLines
* Interrupt transfers and split transactions work now, so remove theiedowse2005-03-201-5/+2
| | | | | part of the BUGS section that says they don't. Leave the "quite buggy" comment for now though, as it's still partially true.
* Document acpi_fujitsu(4).philip2005-03-202-0/+165
| | | | Reviewed by: brueffer
* Bump documentation date for last commit before ru reminds me.simon2005-03-191-1/+1
|
* Add nForce4 to the list of supported audio devices.simon2005-03-191-0/+2
| | | | MFC after: 1 week
* Further refine information about supported hardware (from the hardware notes).brueffer2005-03-181-4/+6
|
* - move supported hardware information into a HARDWARE sectionbrueffer2005-03-181-9/+10
| | | | | | | | - consistently capitalize RISCom - fix typo - bump .Dd MFC after: 3 days
* - add a HARDWARE sectionbrueffer2005-03-181-10/+13
| | | | | | | | - correct a language nit - remove outdated FILES section - bump .Dd MFC after: 3 days
* Reflect devnode naming change from /dev/ubser?.? to /dev/ttyy??ticso2005-03-181-2/+2
|
* add m_copyup function.. This can be used to help make our ip stack lessjmg2005-03-171-0/+29
| | | | | | | | | | alignment restrictive, and help performance on some ethernet cards which currently copy the entire packet a couple bytes to get the packet aligned properly... Wordsmithing by: dwhite Obtained from: NetBSD (code only) I'll clean it up later: rwatson
* There is no longer a KNOWN_DEFECTS file, so don't try to install it.dougb2005-03-171-1/+1
|
* Chase location of scd.c and bump .Dd.brueffer2005-03-161-2/+2
| | | | | Submitted by: markus MFC after: 3 days
* Clarify that the end argument meaning for rman_reserve_resource_boundimp2005-03-151-0/+11
| | | | | | | is the highest acceptable value for the ending of the resource being allocated. One could also believe that it is the highest starting value of the resource. The code definitely expects the former, but I could find no documentation of this apart from TFSC.
* Remove fpsetsticky(). This was added for SysV compatibility, but duedas2005-03-151-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | to mistakes from day 1, it has always had semantics inconsistent with SVR4 and its successors. In particular, given argument M: - On Solaris and FreeBSD/{alpha,sparc64}, it clobbers the old flags and *sets* the new flag word to M. (NetBSD, too?) - On FreeBSD/{amd64,i386}, it *clears* the flags that are specified in M and leaves the remaining flags unchanged (modulo a small bug on amd64.) - On FreeBSD/ia64, it is not implemented. There is no way to fix fpsetsticky() to DTRT for both old FreeBSD apps and apps ported from other operating systems, so the best approach seems to be to kill the function and fix any apps that break. I couldn't find any ports that use it, and any such ports would already be broken on FreeBSD/ia64 and Linux anyway. By the way, the routine has always been undocumented in FreeBSD, except for an MLINK to a manpage that doesn't describe it. This manpage has stated since 5.3-RELEASE that the functions it describes are deprecated, so that must mean that functions that it is *supposed* to describe but doesn't are even *more* deprecated. ;-) Note that fpresetsticky() has been retained on FreeBSD/i386. As far as I can tell, no other operating systems or ports of FreeBSD implement it, so there's nothing for it to be inconsistent with. PR: 75862 Suggested by: bde
* o Add missed language doc subdirectories, sort.maxim2005-03-152-3/+11
| | | | | PR: docs/78859 Submitted by: skv
* Mangle a manpage.phk2005-03-141-10/+13
|
* - new sentence, new linebrueffer2005-03-141-2/+3
| | | | - s/freebsd/FreeBSD/
* Remove mention of mac_lomac(4) policy from here too.trhodes2005-03-121-11/+1
|
* ALTQ support for re(4).mlaier2005-03-121-1/+2
| | | | | | Submitted by: Chris Dionissopoulos, Theo Schlossnagle PR: kern/78681 MFC after: 2 weeks
* Update comment to reflect default GENCAT value (changed in previous rev)phantom2005-03-101-1/+1
| | | | Reminded by: Joerg Sonnenberger
* Add a man page for ng_ccatm(4).harti2005-03-102-0/+321
| | | | Reminded by: brueffer
* s/cdrom/CD-ROM/brueffer2005-03-101-1/+1
| | | | MFC after: 3 days
* Add manual page for snd_via82c686(4).simon2005-03-092-0/+58
| | | | | | Submitted by: Joel Dahl <joel@automatvapen.se> PR: docs/78586 MFC after: 3 days
* Add manual page for snd_vibes(4).simon2005-03-092-0/+58
| | | | | | Submitted by: Joel Dahl <joel@automatvapen.se> PR: docs/78580 MFC after: 3 days
* Device counts are gone.stefanf2005-03-091-1/+1
|
* __FUNCTION__ -> __func__stefanf2005-03-091-2/+2
|
* spell resource correctly...jmg2005-03-091-1/+1
| | | | MFC after: 3 days
* Remove stale information in IMPLEMENTATION NOTES section about alq_open()hmp2005-03-091-6/+2
| | | | | | using the calling thread's ucred. While I am there, fix references to my name.
* Make note of the ktrdump(8) utility in the opening paragraph of thishmp2005-03-081-4/+5
| | | | | | | manual page. Fix indentation of code block in EXAMPLE section so the manual page can be viewed in a 80 column window.
* Remove superfluous .Pp call.brueffer2005-03-071-1/+0
| | | | | Submitted by: Joel Dahl <joel@automatvapen.se> MFC after: 3 days
* Remove superflous .Pp calls.brueffer2005-03-049-9/+0
| | | | | Submitted by: Joel Dahl <joel@automatvapen.se> MFC after: 3 days
* New Ukrainian locale: uk_UA.CP1251.ru2005-03-0410-1/+200
| | | | Submitted by: Alexander Peresunko
* - Readd HARDWARE section to unbreak Hardware Notes.simon2005-03-041-3/+5
| | | | - Cleanup of mdoc markup.
* Add and clarify the names of many supported cards, and tweak some wording.scottl2005-03-041-29/+45
| | | | Submitted by: rajeshpr @ lsil . com
* Document the newsyslog_* and chkprintcap_* variables I added yesterday.brooks2005-03-021-0/+46
|
* Wrap BSD r* commands in NO_RCMDS.trhodes2005-03-021-0/+1
| | | | | | Change NO_RCMDNS to NO_RCMDS and do the switch in bsd.compat.mk. Discussed with: ru, nectar
* Document NO_RCMDS, bump doc date.trhodes2005-03-021-1/+10
|
* Add NO_RCMDS to the list.trhodes2005-03-021-0/+1
|
* Add a manual page for the fm801 chipsets.trhodes2005-03-012-0/+65
| | | | | PR: 78143 Submitted by: Joel Dahl <joel@automatvapen.se> (original version)
* Fix a grammar nit of mine.obrien2005-02-281-1/+1
|
* -mandoc style tweak rev 1.13.obrien2005-02-281-4/+6
| | | | Submitted by: ru
* Catch up with the latest policies on knobs.obrien2005-02-281-0/+21
|
* Accept the old user interface for NO_CLEAN as it is a POLA violation asobrien2005-02-281-1/+0
| | | | we've eventually changed the user interface of a common command.
* Correct a macro name.brueffer2005-02-281-1/+1
| | | | | | PR: 78171 Submitted by: "Wojciech A. Koszek" <dunstan@freebsd.czest.pl> MFC after: 3 days
* style.Makefile(5): remove trailing spaces.obrien2005-02-271-1/+1
|
* There's no '-new' argument for gencat(1) anymorephantom2005-02-271-1/+1
|
* ATA -> PATA/SATA, to make clear that this driver supports both kindsbrueffer2005-02-271-3/+3
| | | | | | | of controllers. Inspired by: xy <xy@packetflood.net> MFC after: 3 days
* Don't mention PATA support, all listed controllers are SATA.brueffer2005-02-271-3/+3
| | | | | Inspired by: xy <xy@packetflood.net> MFC after: 3 days
* Add some commas and improve grammar.simon2005-02-261-3/+3
| | | | Suggested by: trhodes
* Note addition of p4tcc, new sysctls and tunable, update mdoc.njl2005-02-261-11/+25
|
* Remove redundant .Pp call.simon2005-02-261-1/+0
| | | | Spotted by: ru
OpenPOWER on IntegriCloud