summaryrefslogtreecommitdiffstats
path: root/share
Commit message (Collapse)AuthorAgeFilesLines
* Add an OpenIPMI mostly compatible driver. This driver was developedambrisko2006-02-101-0/+187
| | | | | | | | | | | | | | | | | | | | | | | | | | | to work with ipmitools. It works with other tools that have an OpenIPMI driver interface. The port will need to get updated to used this. I have not implemented the IPMB mode yet so ioctl's for that don't really do much otherwise it should work like the OpenIPMI version. The ipmi.h definitions was derived from the ipmitool header file. The bus attachments are done for smbios and pci/smbios. Differences in bus probe order for modules/static are delt with. ACPI attachment should be done. This drivers registers with the watchdod(4) interface Work to do: - BT interface - IPMB mode This has been tested on Dell PE2850, PE2650 & PE850 with i386 & amd64 kernel. I will link this into the build on next week. Tom Rhodes, helped me with the man page. Sponsored by: IronPort Systems Inc. Inspired from: ipmitool & Linux
* Correct references to ipnat(8).brueffer2006-02-101-5/+5
| | | | MFC after: 3 days
* Correct the meaning of the NO_SHARED knob.brueffer2006-02-101-1/+1
| | | | MFC after: 3 days
* ".Pp before .Sh is redundant, the latter asserts for a vertical spacemarcel2006-02-081-1/+0
| | | | | already." -- ru@
* Add a HARDWARE section, required for autogeneration of the releasemarcel2006-02-071-0/+18
| | | | | | notes. MFC after: 3 days
* Clarify and expand on some of the points about audit pipe devices.rwatson2006-02-061-9/+15
| | | | Discussed with: remko
* Update man page for some booting and settings stuff.mjacob2006-02-061-51/+62
| | | | | | | Remove a bunch of cards from vendors who are long since defunct. Add a note about 2322 support. Obtained from: Marcus
* Add a missing word and use the .Qq macro for quotes.brueffer2006-02-061-2/+4
|
* Add information on audit pipe special devices, which allow user processesrwatson2006-02-061-1/+35
| | | | | | | | to "tee" the BSM record stream for the purposes of live monitoring, intrusion detection, etc. Support for audit pipes will be committed in the near future. Obtained from: TrustedBSD Project
* Remove reference to non-existant manpage.brueffer2006-02-041-1/+0
| | | | Confirmed by: rwatson
* Handle NO_INCS solely inside bsd.incs.mk.ru2006-02-033-10/+4
|
* Fix a sentence.brueffer2006-02-031-2/+1
|
* - Add a startup script for hostapd.flz2006-02-031-1/+8
| | | | | | | - Document associated variable in rc.conf(5). Approved by: dougb MFC after: 1 week
* Correct and improve the description of le(4) vs. pcn(4); apparently Imarius2006-02-021-5/+12
| | | | | | was thinking from the pcn(4) perspective instead of the le(4) one when writing the former version as le(4) supports a superset of the chips supported by pcn(4) and not the other way round.
* Add audit.4 man page, providing basic documentation for configuring therwatson2006-02-022-0/+115
| | | | | | | | kernel audit facility, warnings about the experimental nature of this implementation, and pointers at a large number of other audit related man pages. Obtained from: TrustedBSD Project
* Define $LIBBSM.rwatson2006-02-021-0/+1
| | | | Obtained from: TrustedBSD Project
* Xref rwlock(9).glebius2006-02-014-4/+8
| | | | Reviewed by: ru
* Document read/write locks.glebius2006-02-012-0/+201
| | | | Reviewed by: jhb, ru
* Expand contractions.joel2006-02-015-7/+7
|
* Remove unsupported hardware.nyan2006-02-011-2/+0
| | | | X-MFC after: soon
* Attach ce(4) to the build.rik2006-01-311-0/+1
| | | | MFC after: 3 days
* Remove duplicate model entry.rik2006-01-311-4/+0
|
* - Sync the list of supported chips with pcn_probe() as of sys/pci/if_pcn.cmarius2006-01-311-7/+3
| | | | | | | | | | rev. 1.77, i.e. remove Am53C974/Am79C970/Am79C974 PCnet-PCI and Am79C970A PCnet-PCI II. - Change the entry of the PCnet-Home in the list of supported chips to match the other ones, i.e. s,PCnet/Home HomePNA,Am79C978 PCnet-Home,. - s,familly,family MFC after: 1 day
* Add a reference to le(4) as the SBus-based Ultra 1 have on-board LANCE.marius2006-01-311-1/+2
|
* Add le(4) to the list of devices supporting VLAN-sized frames natively.marius2006-01-311-1/+5
|
* Add a man page for le(4), based on the NetBSD one.marius2006-01-312-0/+371
|
* some updates to the manpage.luigi2006-01-311-79/+39
| | | | | | remove references to mdconfig/vnconfig, and remove some of the references to floppies since they are rarely used at all now.
* Document the daily_status_ata_raid_enable and daily_status_gmirror_enablebrueffer2006-01-311-1/+19
| | | | variables.
* The newly added le(4) driver is altq capable.brueffer2006-01-311-1/+2
|
* Xref redzone(9)brueffer2006-01-311-2/+3
|
* sys/linker.h needs sys/systm.h as a requirement.mlaier2006-01-311-0/+1
| | | | Submitted by: gallatin
* Add buffer corruption protection (RedZone) for kernel's malloc(9).pjd2006-01-312-0/+124
| | | | | | | | It detects both: buffer underflows and buffer overflows bugs at runtime (on free(9) and realloc(9)) and prints backtraces from where memory was allocated and from where it was freed. Tested by: kris
* Does not return EBUSY, the mutex will keep blocking until it's unlocked.trhodes2006-01-311-4/+0
|
* Add manual page for Cronyx Tau-PCI/32 ce(4) driver.rik2006-01-301-0/+115
|
* Add more details about enabling a custom ruleset for /dev in `rc.conf',keramida2006-01-301-1/+27
| | | | | | | | and add ruleset labels/numbering to the custom ruleset example. PR: docs/90362 Submitted by: Roland Smith <rsmith@xs4all.nl> MFC after: 3 days
* Note support for the A4D and A6VM models.brueffer2006-01-301-1/+5
|
* Add a couple of obviously missing xrefs to SEE ALSO:yar2006-01-291-0/+2
| | | | ftpd(8), geli(8).
* Fix WEP examples.damien2006-01-291-5/+6
| | | | | Improve rate control algorithm description. Bump copyright year.
* Fix WEP examples.damien2006-01-292-8/+8
| | | | Bump copyright year.
* Fix WEP examples.damien2006-01-291-7/+5
| | | | | Remove man page references to ipwcontrol and wicontrol. Bump copyright year.
* firmware(9) is a subsystem to load binary data into the kernel via amlaier2006-01-299-1/+230
| | | | | | | | | | specially crafted module. There are several handrolled sollutions to this problem in the tree already which will be replaced with this. They include iwi(4), ipw(4), ispfw(4) and digi(4). No objection from: arch MFC after: 2 weeks X-MFC after: some drivers have been converted
* - Add ports-net-p2p collectionpav2006-01-281-0/+1
|
* Make an example command correct and copyable to terminal.glebius2006-01-271-1/+3
| | | | Submitted by: ru
* Update NGM_PPPOE_GETMODE and NGM_PPPOE_SETMODE descriptions, sinceglebius2006-01-271-12/+30
| | | | new D-Link compat mode is introduced.
* Note that options are set using sh(1) syntax.jkoshy2006-01-271-0/+6
| | | | MFC after: 3 days
* Document JMicron JMB360.brueffer2006-01-261-1/+3
|
* Document a bit pts.cognet2006-01-261-0/+34
|
* - Remove the comment about WSS/MSS cards being the best supportedjoel2006-01-251-18/+0
| | | | | | | | cards on the market. - Remove the entire HARDWARE section. It's superfluous since all snd_* manual pages have their own HARDWARE sections these days. Reviewed by: brueffer
* Add an rc.d script for stand-alone ftpd.yar2006-01-211-1/+22
| | | | | | | | Document the script's controls on the rc.conf(5) manpage and touch its Dd. PR: conf/90893 MFC after: 5 days
* Fix the bug in my last commit: ++Year... 8-/netchild2006-01-211-1/+1
|
OpenPOWER on IntegriCloud