summaryrefslogtreecommitdiffstats
path: root/share/man/man4/man4.i386/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Hook acpi_aiboost man page and modify the man page a bit.takawata2007-03-301-1/+2
|
* Remove the documentation from the Makefile as well.gnn2006-05-141-1/+0
|
* Attach ce(4) to the build.rik2006-01-311-0/+1
| | | | MFC after: 3 days
* Manpage for the padlock driver (VIA C3/Eden AES support and RNG).brueffer2005-12-101-0/+1
| | | | MFC after: 3 days
* Add /dev/speaker support to amd64.ru2005-11-111-2/+0
| | | | | | | | The following repo-copies were made (by Mark Murray): sys/i386/isa/spkr.c -> sys/dev/speaker/spkr.c sys/i386/include/speaker.h -> sys/dev/speaker/speaker.h share/man/man4/man4.i386/spkr.4 -> share/man/man4/spkr.4
* Hook up acpi_sony.4brueffer2005-09-141-0/+1
|
* Remove the man page of the recently axed el(4).marius2005-08-271-1/+0
|
* Manual page for the acpi_ibm(4) hotkey driver.brueffer2005-05-071-0/+1
|
* Document acpi_fujitsu(4).philip2005-03-201-0/+1
| | | | Reviewed by: brueffer
* Manpage for Olicom Token Ring adapters, based on input by mdodd.brueffer2005-02-041-0/+2
| | | | | Reviewed by: mdodd MFC after: 1 week
* There's no longer a wd driver.imp2005-01-041-2/+0
|
* Ooops. Forgot the man page for pbio.4 in my port from RELENG_4.imp2004-10-071-0/+1
|
* Move snc.4 over to the i386 section as it only deals with PC98 and i386.trhodes2004-07-241-0/+1
| | | | | | Bump .Dd and .Dt accordingly. Requested by: ru
* Add the ACPI Panasonic extras driver.nyan2004-07-211-0/+1
| | | | Submitted by: OGAWA Takaya <t-ogawa@triaez.kaisei.org> and nyan
* Remove man4/man4.i386/cy.4 and adjust makefiles after repo-copying cy.4 upbde2004-05-231-1/+0
| | | | to man4.
* Connect Cronyx Tau-PCI to the system.rik2004-05-171-0/+1
|
* Man page for the ichwd driver.des2004-05-111-0/+1
|
* Hook up acpi_asus and its manual page in two more places I managed to overlookphilip2004-04-231-1/+2
| | | | | | last night. Sorry about that :-o Spotted by: njl (mentor, spotter of forgetfulness)
* Add ct(4) man page for ct SCSI host adapter device driver and attachnon2004-03-261-0/+1
| | | | it to the build.
* Move ct.4 to ctau.4. Step three: change ct to ctau in Makefile.rik2004-03-251-1/+1
| | | | Approved by: imp (mentor)
* Move ct.4 to ctau.4. Step one: remove ctau.4 link.rik2004-03-241-1/+0
| | | | Approved by: imp(mentor)
* Add arl(4): driver for Aironet Arlan 655 wireless adapters.fjoe2004-03-151-0/+1
| | | | MFC after: 2 weeks
* Retire gsc man page after driver retirementimp2004-03-141-1/+0
|
* rdp has been retired, retire its man page tooimp2004-03-141-1/+0
|
* le driver is gone, retire its man pageimp2004-03-141-1/+0
|
* Now that the asc driver is no longer in the tree, the man page is surplus.imp2004-03-141-1/+0
|
* Now that the wt driver is gone, go ahead and remove its userland support.imp2004-03-141-2/+1
| | | | If the wt driver is rewritten using newer APIs, then these can return with it.
* 1. Add ct.4 manual page entry.rik2004-03-031-0/+2
| | | | | | 2. Add ctau.4 link to ct.4. Approved by: imp (mentor)
* Document the acpi_toshiba driver written by Hiroyuki Aizu.philip2004-02-191-1/+2
| | | | Approved by: njl (mentor)
* Use a single style for share/man/ makefiles:ru2004-01-201-14/+49
| | | | | | | | - Sort MAN and MLINKS in "dictionary" order ignoring case. - For multi-value MAN and multi-pair MLINKS, put each value/pair on its own line, for easier sorting and so that further diffs are easier to see.
* tx.4 has been repocopied to src/share/man/man4brueffer2004-01-151-1/+1
| | | | Repo-surgery by: joe
* Add MLINK:brueffer2004-01-091-0/+1
| | | | ndis.4 -> if_ndis.4
* Commit the first cut of Project Evil, also known as the NDISulator.wpaul2003-12-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Yes, it's what you think it is. Yes, you should run away now. This is a special compatibility module for allowing Windows NDIS miniport network drivers to be used with FreeBSD/x86. This provides _binary_ NDIS compatibility (not source): you can run NDIS driver code, but you can't build it. There are three main parts: sys/compat/ndis: the NDIS compat API, which provides binary compatibility functions for many routines in NDIS.SYS, HAL.dll and ntoskrnl.exe in Windows (these are the three modules that most NDIS miniport drivers use). The compat module also contains a small PE relocator/dynalinker which relocates the Windows .SYS image and then patches in our native routines. sys/dev/if_ndis: the if_ndis driver wrapper. This module makes use of the ndis compat API and can be compiled with a specially prepared binary image file (ndis_driver_data.h) containing the Windows .SYS image and registry key information parsed out of the accompanying .INF file. Once if_ndis.ko is built, it can be loaded and unloaded just like a native FreeBSD kenrel module. usr.sbin/ndiscvt: a special utility that converts foo.sys and foo.inf into an ndis_driver_data.h file that can be compiled into if_ndis.o. Contains an .inf file parser graciously provided by Matt Dodd (and mercilessly hacked upon by me) that strips out device ID info and registry key info from a .INF file and packages it up with a binary image array. The ndiscvt(8) utility also does some manipulation of the segments within the .sys file to make life easier for the kernel loader. (Doing the manipulation here saves the kernel code from having to move things around later, which would waste memory.) ndiscvt is only built for the i386 arch. Only files.i386 has been updated, and none of this is turned on in GENERIC. It should probably work on pc98. I have no idea about amd64 or ia64 at this point. This is still a work in progress. I estimate it's about %85 done, but I want it under CVS control so I can track subsequent changes. It has been tested with exactly three drivers: the LinkSys LNE100TX v4 driver (Lne100v4.sys), the sample Intel 82559 driver from the Windows DDK (e100bex.sys) and the Broadcom BCM43xx wireless driver (bcmwl5.sys). It still needs to have a net80211 stuff added to it. To use it, you would do something like this: # cd /sys/modules/ndis # make; make load # cd /sys/modules/if_ndis # ndiscvt -i /path/to/foo.inf -s /path/to/foo.sys -o ndis_driver_data.h # make; make load # sysctl -a | grep ndis All registry keys are mapped to sysctl nodes. Sometimes drivers refer to registry keys that aren't mentioned in foo.inf. If this happens, the NDIS API module creates sysctl nodes for these keys on the fly so you can tweak them. An example usage of the Broadcom wireless driver would be: # sysctl hw.ndis0.EnableAutoConnect=1 # sysctl hw.ndis0.SSID="MY_SSID" # sysctl hw.ndis0.NetworkType=0 (0 for bss, 1 for adhoc) # ifconfig ndis0 <my ipaddr> netmask 0xffffff00 up Things to be done: - get rid of debug messages - add in ndis80211 support - defer transmissions until after a status update with NDIS_STATUS_CONNECTED occurs - Create smarter lookaside list support - Split off if_ndis_pci.c and if_ndis_pccard.c attachments - Make sure PCMCIA support works - Fix ndiscvt to properly parse PCMCIA device IDs from INF files - write ndisapi.9 man page
* Remote meteor driver. It hasn't compiled in over 3 years. If someoneimp2003-12-071-2/+2
| | | | | makes it compile again, and can test it, we can restore the driver to the tree.
* Add manual page for CPU_ELAN, CPU_SOEKRIS and related options for thephk2003-11-271-1/+2
| | | | | | Elan 520 CPU chip. Approved by: re@
* Add manpage link wd.4 -> wdc.4rushani2003-11-081-0/+1
|
* Add a PAE(4) MLINK for simplicity.hmp2003-10-231-1/+2
|
* The midway driver has been busdmaified and is not i386-specific anymore.harti2003-06-031-1/+1
| | | | | | | Repo-copy it from the i386 specific man4 section to the common one. Remove the i386 keyword from the man page header. Document the sysctl interface to the driver. Fix a spelling error (ALL -> AAL).
* Update to reflect removal of tw.imp2003-04-271-1/+1
| | | | Approved by: re@ (scottl)
* The i386-specific asr manpage has been repo copied to the MI section.obrien2003-04-201-1/+1
|
* manual page for Granch SBNI12-xx network interface driverfjoe2003-04-131-1/+2
|
* Add a man page for options PAE.jake2003-04-091-1/+1
| | | | Sponsored by: DARPA, Network Associates Laboratories
* Add a manual page for the smapi module.trhodes2003-04-051-1/+1
| | | | Reviewed by: ru, mdodd
* Add a manpage for the 'vpd' driver.mdodd2003-04-041-1/+1
|
* Alas, poor matcd, I knew ye well.scottl2002-10-041-1/+1
| | | | | | | | It doesn't work. It cannot be made to work. Goodbye. X-MFC after: ASAP
* viapm is the driver for VIA SMBus controllersnsouch2002-03-231-1/+1
|
* Install pnpbios(4) manpage.ru2001-11-221-1/+1
| | | | Submitted by: Alexander Leidinger <Alexander@leidinger.net>
* Disconnect sb.4.asmodai2001-11-041-1/+1
| | | | | This is a manual page left over from the old pcm/voxware driver era. Superceded by newpcm's sbc.4.
* Finish the removal of the LABPC driver.ru2001-10-241-1/+1
| | | | Forgotten by: phk
* Move the agp(4) page from the i386 directoryyar2001-10-051-3/+2
| | | | | to the machine-independent directory since AGP is used on other architectures as well.
OpenPOWER on IntegriCloud