freebsd-skq/share/man/man4
wpaul 7e1ac58149 Commit the first cut of Project Evil, also known as the NDISulator.
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
2003-12-11 22:34:37 +00:00
..
man4.alpha Uniformly refer to a file system as "file system". 2002-12-12 17:26:04 +00:00
man4.i386 Commit the first cut of Project Evil, also known as the NDISulator. 2003-12-11 22:34:37 +00:00
aac.4 Note support for the Adaptec 2410SA in the aac.4 manpage. 2003-11-11 08:40:43 +00:00
acpi.4 Clean up one more sentence that was wrapped unnecessarily. 2003-11-19 20:37:15 +00:00
adv.4 Update man pages in the section 4 to match the reality in -CURRENT. 2001-10-13 09:08:37 +00:00
adw.4 Update man pages in the section 4 to match the reality in -CURRENT. 2001-10-13 09:08:37 +00:00
agp.4 mdoc(7): Use the new feature of the .In macro. 2003-09-08 19:57:22 +00:00
aha.4 Add the meteor driver man page back. It has moved up a level from the 2003-12-08 02:59:34 +00:00
ahb.4 Update list of supported devices for ahb 2003-11-09 01:52:13 +00:00
ahc.4 Add some pc98-specific devices from the hardware notes. 2003-11-09 22:53:58 +00:00
ahd.4 english(4) police. 2002-12-27 12:15:40 +00:00
aio.4 Cross reference lio_listio(2). 2003-01-14 03:42:16 +00:00
amd.4
amr.4 - Add the Dell PERC 4/Di to the list of supported devices; it 2003-09-27 18:03:03 +00:00
an.4 Mention Cisco and Xircom devices supported by an driver. 2003-11-08 22:48:23 +00:00
asr.4 Catch up asr(4) with hardware notes. 2003-08-19 03:40:05 +00:00
ata.4 Grammar. 2003-12-11 21:54:26 +00:00
atapicam.4 mdoc(7) police: overhaul. 2002-12-10 14:21:55 +00:00
ath_hal.4 update supported card table 2003-11-04 23:43:43 +00:00
ath.4 update supported card table 2003-11-04 23:43:43 +00:00
atkbd.4 Hiten's patchset for section four manpages, slightly edited by me. 2003-06-28 23:53:39 +00:00
atkbdc.4 Update man pages in the section 4 to match the reality in -CURRENT. 2001-10-13 09:08:37 +00:00
aue.4 Catch up with the hardware notes: list the supported cards. 2003-09-05 14:23:22 +00:00
awi.4 Grammar and spelling fixes 2003-08-13 12:39:44 +00:00
axe.4 Assorted mdoc(7) fixes. 2003-05-29 21:28:36 +00:00
bfe.4 Add a device driver for the Broadcom BCM4401 ethernet controller, 2003-09-09 18:17:23 +00:00
bge.4 Get rid of duplicates. 2003-09-14 13:41:59 +00:00
bktr.4 Reflect the fact that fxtv is now found in ports/multimedia/fxtv. 2003-10-21 23:36:46 +00:00
blackhole.4 Hiten's patchset for section four manpages, slightly edited by me. 2003-06-28 23:53:39 +00:00
bpf.4 mdoc(7): Use the new feature of the .In macro. 2003-09-08 19:57:22 +00:00
bridge.4 change bridge mib usage to reflect new world order 2003-09-21 23:16:02 +00:00
bt.4 Hiten's patchset for section four manpages, slightly edited by me. 2003-06-28 23:53:39 +00:00
cardbus.4 mdoc(7) police: SEE ALSO references aren't real sentences. 2002-12-13 09:06:44 +00:00
ccd.4 ccd(4) can now operate on raw disks and other GEOM providers. 2003-08-08 15:17:15 +00:00
cd.4 mdoc(7): Use the new feature of the .In macro. 2003-09-08 19:57:22 +00:00
ch.4 mdoc(7): Use the new feature of the .In macro. 2003-09-08 19:57:22 +00:00
ciss.4 Synchronize the list of support devices with the driver source code. 2003-11-07 11:43:05 +00:00
crypto.4 english(4) police. 2002-12-27 12:15:40 +00:00
csa.4 Grammar fix 2002-07-08 20:57:19 +00:00
cue.4 Add the SmartBridges SmartLink to the list of supported devices. 2003-08-21 14:26:29 +00:00
cy.4 mdoc(7) police: fixed indentation in synopsis. 2002-08-15 08:20:07 +00:00
da.4 mdoc(7): Use the new feature of the .In macro. 2003-09-08 19:57:22 +00:00
dc.4 Add support for ELECOM/Laneed CardBus FastEtherner Card(LD-CBL/TXA) 2003-12-06 02:29:31 +00:00
dcons_crom.4 I wrongly committed an older version. 2003-10-28 01:31:50 +00:00
dcons.4 I wrongly committed an older version. 2003-10-28 01:31:50 +00:00
ddb.4 Mdoc Janitor: 2003-11-12 02:35:20 +00:00
de.4 Synchronize list of supported cards with hardware notes, reformat 2003-11-09 00:50:55 +00:00
devctl.4 mdoc(7) police: Scheduled sweep. 2003-02-24 22:53:26 +00:00
digi.4 Copy the old dgb man page to digi.4, plus very minor hacking. Add a 2003-12-08 00:11:22 +00:00
disc.4 mdoc(7) police: GC whitespace at EOL. 2002-05-30 12:23:21 +00:00
divert.4 Correct to match reality regarding interface names. 2003-07-08 13:24:42 +00:00
dpt.4 Catch up dpt(4) manpage with Hardware Notes (and RELENG_4 manpage?!?). 2003-08-19 04:37:54 +00:00
dummynet.4 mdoc(7) police: scheduled sweep. 2002-11-29 11:39:20 +00:00
ed.4 Xref miibus(4). 2003-02-15 17:12:53 +00:00
ef.4 Add missing verb. 2002-06-14 22:15:22 +00:00
ehci.4 Add a manual page for the USB Enhanced Host Controller Driver. 2003-05-18 19:55:39 +00:00
em.4 Kill whitespace at EOL. 2003-05-21 15:55:40 +00:00
en.4 Reference the new natmip(4) man page. 2003-06-16 15:51:55 +00:00
exca.4 Use PC Card instead of other variants in the driver man pages. 2003-08-20 06:49:57 +00:00
faith.4 Document the fact that these devices are allocated at runtime using 2002-05-29 06:55:06 +00:00
fast_ipsec.4 mdoc(7) police: Revision. 2003-03-03 11:51:30 +00:00
fatm.4 'options atm' should actually read 'device atm'. 2003-06-25 16:04:19 +00:00
fd.4
fdc.4 mdoc(7): Use the new feature of the .In macro. 2003-09-08 19:57:22 +00:00
firewire.4 Change device name. 2003-08-05 03:13:14 +00:00
fla.4 Document the existance of fla(4). 2003-07-14 03:23:58 +00:00
fpa.4 Hiten's patchset for section four manpages, slightly edited by me. 2003-06-28 23:53:39 +00:00
fwe.4 mdoc(7) police: Scheduled sweep. 2003-02-24 22:53:26 +00:00
fwohci.4 We don't need "device fwohci" in the kernel config file. 2003-04-17 03:46:09 +00:00
fxp.4 Fix a typo. 2003-07-16 06:54:59 +00:00
gbde.4 Remove reference to unavailable paper. 2003-03-07 09:36:58 +00:00
gem.4 - Add manpages for the gem and hme ethernet drivers. These were obtained 2003-06-10 18:53:15 +00:00
geom.4 Kill whitespace at EOL. 2003-05-21 15:55:40 +00:00
gif.4 mdoc(7) police: Scheduled sweep. 2003-02-24 22:53:26 +00:00
gre.4 mdoc(7) police: overhaul (including adoptation to FreeBSD). 2002-12-10 14:20:02 +00:00
gusc.4 Update man pages in the section 4 to match the reality in -CURRENT. 2001-10-13 09:08:37 +00:00
gx.4 Add cross reference to the em(4) driver, which also supports the NICs 2003-11-13 20:35:13 +00:00
harp.4 This is a pseudo physical interface for the HARP ATM stack. When loaded 2003-07-21 13:56:22 +00:00
hatm.4 Make the maximum number of pages for external mbufs configurable in 2003-10-29 15:07:10 +00:00
hifn.4 update to reflect 7955/7956 support 2003-10-08 20:26:10 +00:00
hme.4 - Add manpages for the gem and hme ethernet drivers. These were obtained 2003-06-10 18:53:15 +00:00
ichsmb.4 Reflect support for 82801CA (ICH3) and 82801DC (ICH4) PCI chips. 2002-08-12 16:25:20 +00:00
icmp6.4 mdoc(7): Properly mark C headers. 2003-09-10 19:24:35 +00:00
icmp.4 Hiten's patchset for section four manpages, slightly edited by me. 2003-06-28 23:53:39 +00:00
ida.4 mdoc(7) police: Scheduled sweep. 2003-02-24 22:53:26 +00:00
idt.4 Add a manual page for the IDT NICStAR driver, and hook it up to the build. 2003-11-14 20:29:12 +00:00
ieee80211.4 Fix typo 2003-08-13 12:20:33 +00:00
ifmib.4 mdoc(7): Use the new feature of the .In macro. 2003-09-08 19:57:22 +00:00
iic.4
iicbb.4
iicbus.4
iicsmb.4
iir.4 Update an email address overlooked by scottl. 2003-09-27 14:02:15 +00:00
inet6.4 mdoc(7): Use the new feature of the .In macro. 2003-09-08 19:57:22 +00:00
inet.4 Mdoc Janitor: 2003-11-12 02:35:20 +00:00
intpm.4 Add 'device smb' to the synopsis, as this is required to do anything 2001-09-18 02:50:24 +00:00
intro.4 Mdoc Janitor: 2003-11-12 02:35:20 +00:00
ip6.4 Hiten's patchset for section four manpages, slightly edited by me. 2003-06-28 23:53:39 +00:00
ip.4 Add the IP_ONESBCAST option, to enable undirected IP broadcasts to be sent on 2003-08-20 14:46:40 +00:00
ipfirewall.4 mdoc(7) police: scheduled sweep. 2002-11-29 11:39:20 +00:00
ips.4 Mdoc Janitor: 2003-11-12 02:26:47 +00:00
ipsec.4 mdoc(7) police: Use the new .In macro for #include statements. 2001-10-01 16:09:29 +00:00
isp.4 Catch up isp.4 manpage with hardware notes. 2003-09-06 17:47:25 +00:00
ispfw.4 mdoc(7) police: fixed the "new sentence" bogons. 2001-08-10 15:03:10 +00:00
joy.4 Fixed path to /boot/device.hints. 2002-07-12 13:44:37 +00:00
kame.4 Bring the kame(4) manual page closer to reality: 2003-05-16 00:31:12 +00:00
keyboard.4 Correct typos, mostly s/ a / an / where appropriate. Some whitespace cleanup, 2003-01-01 18:49:04 +00:00
kld.4 - Add note that loading modules only works if the system 2003-10-26 14:21:30 +00:00
ktr.4 mdoc(7): Use the new feature of the .In macro. 2003-09-08 19:57:22 +00:00
kue.4 Catch up with the hardware notes: list the supported cards. 2003-09-05 14:27:22 +00:00
led.4 Improve semantics of the 'sequence' command to led(4) devices: 2003-11-27 20:23:32 +00:00
lge.4 MFS: in HISTORY section, fix release number of first appearance 2001-08-01 12:15:21 +00:00
lo.4
lomac.4 Typo. 2003-09-10 18:45:26 +00:00
lp.4 Hiten's patchset for section four manpages, slightly edited by me. 2003-06-28 23:53:39 +00:00
lpbb.4
lpt.4 Hiten's patchset for section four manpages, slightly edited by me. 2003-06-28 23:53:39 +00:00
mac_biba.4 Assorted mdoc(7) fixes. 2003-06-01 21:52:59 +00:00
mac_bsdextended.4 Assorted mdoc(7) fixes. 2003-06-01 21:52:59 +00:00
mac_ifoff.4 Assorted mdoc(7) fixes. 2003-06-01 21:52:59 +00:00
mac_lomac.4 Add or correct section number in .Xr 2003-06-08 13:27:57 +00:00
mac_mls.4 mdoc(7): Fix common mistakes made in the SEE ALSO section. 2003-09-12 21:54:11 +00:00
mac_none.4 Hook up repo-copied mac_none.4 to mac_stub.4. 2003-08-21 16:53:06 +00:00
mac_partition.4 Assorted mdoc(7) fixes. 2003-06-01 21:52:59 +00:00
mac_portacl.4 Assorted mdoc(7) fixes. 2003-05-29 21:28:36 +00:00
mac_seeotheruids.4 Add or correct section number in .Xr 2003-06-08 13:27:57 +00:00
mac_stub.4 Hook up repo-copied mac_none.4 to mac_stub.4. 2003-08-21 16:53:06 +00:00
mac_test.4 Add or correct section number in .Xr 2003-06-08 13:27:57 +00:00
mac.4 Assorted mdoc(7) fixes. 2003-06-01 21:52:59 +00:00
maestro3.4 mdoc(7) police: minor markup and content fixes. 2001-11-21 17:12:31 +00:00
Makefile Add the meteor driver man page back. It has moved up a level from the 2003-12-08 02:59:34 +00:00
matcd.4 Hiten's patchset for section four manpages, slightly edited by me. 2003-06-28 23:53:39 +00:00
md.4 Add .Xr's to mdmfs(8). 2003-04-27 01:46:56 +00:00
mem.4 mdoc(7): Use the new feature of the .In macro. 2003-09-08 19:57:22 +00:00
meteor.4 Add the meteor driver man page back. It has moved up a level from the 2003-12-08 02:59:34 +00:00
miibus.4 Add rue(4) into list of miibus-using drivers and reference. 2003-11-16 11:52:26 +00:00
mlx.4 Add DAC960PDU to list of supported cards, taken from Hardware Notes. 2003-08-15 22:34:18 +00:00
mly.4
mouse.4 mdoc(7) police: Use the new .In macro for #include statements. 2001-10-01 16:09:29 +00:00
mpt.4 Change FreeBSD.ORG to FreeBSD.org. 2003-11-07 21:05:31 +00:00
mtio.4 mdoc(7): Use the new feature of the .In macro. 2003-09-08 19:57:22 +00:00
multicast.4 Add multicast(4) and pim(4) manual pages and hook up to the build. 2003-10-17 15:12:01 +00:00
my.4 Catch up my(4) with hardware notes by adding Myson MTD89X to list of 2003-08-31 19:37:48 +00:00
natm.4 mdoc(7): Fix common mistakes made in the SEE ALSO section. 2003-09-12 21:54:11 +00:00
natmip.4 Change the code that enables/disables the ATM channel to use the 2003-08-12 14:20:32 +00:00
ncr.4 - Sync the list of supported device with the hardware notes and the 2003-11-09 22:21:21 +00:00
ncv.4 Bring in a new manual page, ncv.4, and attach it to the build. 2003-11-21 00:55:11 +00:00
netgraph.4 Document that the length of a command string is now 32. Also change all 2003-11-12 13:24:03 +00:00
netintro.4 Hiten's patchset for section four manpages, slightly edited by me. 2003-06-28 23:53:39 +00:00
ng_async.4 mdoc(7) police: Use the new .In macro for #include statements. 2001-10-01 16:09:29 +00:00
ng_atm.4 Replace all uses of the old netgraph constants NG_*LEN by the new 2003-11-15 15:26:35 +00:00
ng_atmpif.4 Add ng_atmpif: a HARP physical interface emulation. This allows one 2003-08-11 08:40:02 +00:00
ng_bluetooth.4 Fix SYNOPSIS section in Bluetooth man pages 2003-11-11 03:27:08 +00:00
ng_bpf.4 Replace all uses of the old netgraph constants NG_*LEN by the new 2003-11-15 15:26:35 +00:00
ng_bridge.4 Add or correct section number in .Xr 2003-06-08 13:27:57 +00:00
ng_bt3c.4 Fix SYNOPSIS section in Bluetooth man pages 2003-11-11 03:27:08 +00:00
ng_btsocket.4 Fix SYNOPSIS section in Bluetooth man pages 2003-11-11 03:27:08 +00:00
ng_cisco.4 mdoc(7) police: Use the new .In macro for #include statements. 2001-10-01 16:09:29 +00:00
ng_device.4 mdoc(7) police: markup fixes. 2002-12-12 15:27:26 +00:00
ng_echo.4 mdoc(7) police: Use the new .In macro for #include statements. 2001-10-01 16:09:29 +00:00
ng_etf.4 Replace all uses of the old netgraph constants NG_*LEN by the new 2003-11-15 15:26:35 +00:00
ng_ether.4 Fix braino: the example interface is fxp0, not ed0. 2002-03-30 23:23:41 +00:00
ng_frame_relay.4 mdoc(7) police: Use the new .In macro for #include statements. 2001-10-01 16:09:29 +00:00
ng_gif_demux.4 mdoc(7) police: minor markup and spelling fixes. 2001-11-22 11:32:27 +00:00
ng_gif.4 mdoc(7) police: minor markup and misc fixes. 2001-11-22 11:25:02 +00:00
ng_h4.4 Fix SYNOPSIS section in Bluetooth man pages 2003-11-11 03:27:08 +00:00
ng_hci.4 Fix SYNOPSIS section in Bluetooth man pages 2003-11-11 03:27:08 +00:00
ng_hole.4 mdoc(7) police: Use the new .In macro for #include statements. 2001-10-01 16:09:29 +00:00
ng_iface.4 Grammar. 2003-12-10 09:43:53 +00:00
ng_ip_input.4 mdoc(7) police: minor markup and misc fixes. 2001-11-22 11:36:29 +00:00
ng_ksocket.4 Hiten's patchset for section four manpages, slightly edited by me. 2003-06-28 23:53:39 +00:00
ng_l2cap.4 Fix SYNOPSIS section in Bluetooth man pages 2003-11-11 03:27:08 +00:00
ng_l2tp.4 mdoc(7) police: markup overhaul. 2002-12-13 10:04:12 +00:00
ng_lmi.4 mdoc(7) police: Use the new .In macro for #include statements. 2001-10-01 16:09:29 +00:00
ng_mppc.4 Document support for 56-bit keys. 2002-03-20 18:16:18 +00:00
ng_one2many.4 Correct order of alignment in EXAMPLES. 2003-01-06 22:52:57 +00:00
ng_ppp.4 Hiten's patchset for section four manpages, slightly edited by me. 2003-06-28 23:53:39 +00:00
ng_pppoe.4 Replace all uses of the old netgraph constants NG_*LEN by the new 2003-11-15 15:26:35 +00:00
ng_pptpgre.4 Typo: s/acknowlegement/acknowledgement/ 2002-03-16 17:56:40 +00:00
ng_rfc1490.4 mdoc(7) police: Use the new .In macro for #include statements. 2001-10-01 16:09:29 +00:00
ng_socket.4 Hiten's patchset for section four manpages, slightly edited by me. 2003-06-28 23:53:39 +00:00
ng_source.4 mdoc(7): Use the new feature of the .In macro. 2003-09-08 19:57:22 +00:00
ng_split.4 Ispell sweep of share/man/man4. 2002-01-21 12:09:13 +00:00
ng_sscfu.4 Man pages for the NgATM SAAL protocol nodes. 2003-10-27 11:43:20 +00:00
ng_sscop.4 Man pages for the NgATM SAAL protocol nodes. 2003-10-27 11:43:20 +00:00
ng_tee.4 mdoc(7) police: Use the new .In macro for #include statements. 2001-10-01 16:09:29 +00:00
ng_tty.4 mdoc(7) police: Use the new .In macro for #include statements. 2001-10-01 16:09:29 +00:00
ng_ubt.4 Fix SYNOPSIS section in Bluetooth man pages 2003-11-11 03:27:08 +00:00
ng_UI.4 mdoc(7) police: Use the new .In macro for #include statements. 2001-10-01 16:09:29 +00:00
ng_uni.4 Mdoc Janitor: 2003-11-07 18:26:54 +00:00
ng_vjc.4 mdoc(7): Properly mark C headers. 2003-09-10 19:24:35 +00:00
nge.4 Add support for SX cards using TBI such as Netgear GA621 2002-08-08 18:30:39 +00:00
nmdm.4 For consistency with other man pages, fix first appearance. 2001-08-11 00:59:40 +00:00
nsp.4 Add nsp(4) man page for nsp PC-Card SCSI host adapter device driver, 2003-11-24 23:57:59 +00:00
null.4
ohci.4 Remove bogus advertising clauses. 2002-10-30 22:27:54 +00:00
oldcard.4 Use PC Card instead of other variants in the driver man pages. 2003-08-20 06:49:57 +00:00
orm.4 Clarify the BUGS section. 2001-08-08 21:00:54 +00:00
pass.4 Hiten's patchset for section four manpages, slightly edited by me. 2003-06-28 23:53:39 +00:00
patm.4 Always start new sentences on a new line. 2003-07-21 07:51:29 +00:00
pccard.4 Use PC Card instead of other variants in the driver man pages. 2003-08-20 06:49:57 +00:00
pccbb.4 Fixed cross references to pccbb(4), fixed spelling of "device cbb", 2003-06-05 21:12:55 +00:00
pci.4 mdoc(7): Use the new feature of the .In macro. 2003-09-08 19:57:22 +00:00
pcic.4 Use PC Card instead of other variants in the driver man pages. 2003-08-20 06:49:57 +00:00
pcm.4 Minor word tweaks. 2003-11-15 19:53:22 +00:00
pcn.4 Xref miibus(4). 2003-02-15 17:12:53 +00:00
pcvt.4 Typo: s/happenes/happens/ 2002-03-16 18:20:44 +00:00
pim.4 Add multicast(4) and pim(4) manual pages and hook up to the build. 2003-10-17 15:12:01 +00:00
polling.4 Hiten's patchset for section four manpages, slightly edited by me. 2003-06-28 23:53:39 +00:00
ppbus.4
ppc.4 Reflect that we now use 2002-11-25 13:49:31 +00:00
ppi.4 mdoc(7): Moved #include directives into the SYNOPSIS section. 2003-09-10 18:47:07 +00:00
ppp.4 Hiten's patchset for section four manpages, slightly edited by me. 2003-06-28 23:53:39 +00:00
psm.4 mdoc(7): Properly mark C headers. 2003-09-10 19:24:35 +00:00
pst.4 mdoc(7) police: Fixed language. 2002-12-20 12:41:26 +00:00
pt.4 mdoc(7): Use the new feature of the .In macro. 2003-09-08 19:57:22 +00:00
pty.4 Hiten's patchset for section four manpages, slightly edited by me. 2003-06-28 23:53:39 +00:00
puc.4 mdoc(7): Fix common mistakes made in the SEE ALSO section. 2003-09-12 21:54:11 +00:00
raid.4 Assorted mdoc(7) fixes. 2003-06-02 11:19:24 +00:00
random.4 mdoc(7) police: Scheduled sweep. 2003-02-24 22:53:26 +00:00
re.4 Fix copyright (Wind River has no rights to this file). 2003-09-20 21:42:56 +00:00
rl.4 Remove trailing commas from device list. 2003-11-08 17:31:49 +00:00
rndtest.4 Assorted mdoc(7) fixes. 2003-05-29 21:28:36 +00:00
route.4 Hiten's patchset for section four manpages, slightly edited by me. 2003-06-28 23:53:39 +00:00
rp.4 Apply a couple of grammatical improvements. 2003-06-08 19:49:37 +00:00
rue.4 Document this driver works for the Billionton 10/100 FastEthernet USBKR2 2003-11-13 21:01:58 +00:00
sa.4 Hiten's patchset for section four manpages, slightly edited by me. 2003-06-28 23:53:39 +00:00
sab.4 Add the manual page for the sab(4) driver. Driver code was originally 2003-08-18 15:32:02 +00:00
safe.4 safenet driver 2003-07-21 21:52:14 +00:00
sbc.4 Grammar nit. 2001-11-21 10:39:12 +00:00
sbp_targ.4 Add minimal manpage for sbp_targ(4). 2003-11-07 09:39:53 +00:00
sbp.4 Add description about tagged queuing. 2003-07-19 14:46:59 +00:00
sbsh.4 Assorted mdoc(7) fixes. 2003-05-29 21:28:36 +00:00
screen.4 Document new cursor escape sequences. 2001-10-01 13:47:40 +00:00
scsi.4 Hiten's patchset for section four manpages, slightly edited by me. 2003-06-28 23:53:39 +00:00
sd.4
sem.4 Assorted mdoc(7) fixes. 2003-06-02 11:19:24 +00:00
ses.4 mdoc(7): Use the new feature of the .In macro. 2003-09-08 19:57:22 +00:00
sf.4 Xref miibus(4). 2003-02-15 17:12:53 +00:00
si.4 Hiten's patchset for section four manpages, slightly edited by me. 2003-06-28 23:53:39 +00:00
sio.4 Hiten's patchset for section four manpages, slightly edited by me. 2003-06-28 23:53:39 +00:00
sis.4 Capitalize "Fast Ethernet" and "Ethernet" consistently. 2003-11-09 00:27:45 +00:00
sk.4 - Add Linksys EG1032 and SMC 9452TX to the list of supported devices. 2003-11-13 16:23:00 +00:00
sl.4 Hiten's patchset for section four manpages, slightly edited by me. 2003-06-28 23:53:39 +00:00
smb.4
smbus.4
smp.4 Hiten's patchset for section four manpages, slightly edited by me. 2003-06-28 23:53:39 +00:00
sn.4
snd_csa.4 Grammar fix 2002-07-08 20:57:19 +00:00
snd_gusc.4 Update man pages in the section 4 to match the reality in -CURRENT. 2001-10-13 09:08:37 +00:00
snd_maestro3.4 mdoc(7) police: minor markup and content fixes. 2001-11-21 17:12:31 +00:00
snd_sbc.4 Grammar nit. 2001-11-21 10:39:12 +00:00
snd_uaudio.4 Add a manual page for the USB Audio support in FreeBSD, 2003-11-10 20:25:40 +00:00
snp.4 Update to match recent snp fixes. 2002-11-11 10:59:28 +00:00
spic.4 Added the missing ``and''. 2002-05-30 12:29:37 +00:00
spkr.4 mdoc(7): Properly mark C headers. 2003-09-10 19:24:35 +00:00
splash.4 mdoc(7) police: s/BSD/.Bx/ where appropriate. 2001-08-14 10:01:54 +00:00
sppp.4 Ispell sweep of share/man/man4. 2002-01-21 12:09:13 +00:00
st.4
ste.4 Xref miibus(4). 2003-02-15 17:12:53 +00:00
stf.4 mdoc(7) police: scheduled sweep. 2002-11-29 11:39:20 +00:00
stg.4 Removed the i386 specific bit from title. 2003-11-30 08:50:17 +00:00
sym.4 Add two PC-98 devices, from the hardware notes, which was missed in 2003-11-09 22:36:04 +00:00
syncache.4 Added the syncache(4) manpage. 2002-11-23 19:43:44 +00:00
syncer.4 Hiten's patchset for section four manpages, slightly edited by me. 2003-06-28 23:53:39 +00:00
syscons.4 mdoc(7): Properly mark C headers. 2003-09-10 19:24:35 +00:00
sysmouse.4 mdoc(7): Properly mark C headers. 2003-09-10 19:24:35 +00:00
tap.4 mdoc(7): Use the new feature of the .In macro. 2003-09-08 19:57:22 +00:00
targ.4 mdoc(7): Use the new feature of the .In macro. 2003-09-08 19:57:22 +00:00
tcp.4 mdoc(7): Use the new feature of the .In macro. 2003-09-08 19:57:22 +00:00
tdfx.4
termios.4 mdoc(7): Use the new feature of the .In macro. 2003-09-08 19:57:22 +00:00
ti.4 mdoc(7): Use the new feature of the .In macro. 2003-09-08 19:57:22 +00:00
tl.4 Catch up with the hardware notes: list the supported Compaq controllers. 2003-09-05 14:17:33 +00:00
trm.4 Note we now support the DC395U2W cards. 2003-02-20 03:22:15 +00:00
ttcp.4 Hiten's patchset for section four manpages, slightly edited by me. 2003-06-28 23:53:39 +00:00
tty.4 mdoc(7): Use the new feature of the .In macro. 2003-09-08 19:57:22 +00:00
tun.4 mdoc(7): Use the new feature of the .In macro. 2003-09-08 19:57:22 +00:00
twe.4 Document the latest controllers from 3ware as being supported. 2003-07-16 05:49:40 +00:00
tx.4 Xref miibus(4). 2003-02-17 21:22:56 +00:00
txp.4 Xref miibus(4). 2003-02-15 17:12:53 +00:00
uart.4 o Properly spell my last name. Bad Hiten, no cookie :-) 2003-09-20 04:13:16 +00:00
uaudio.4 Add a manual page for the USB Audio support in FreeBSD, 2003-11-10 20:25:40 +00:00
ubsa.4 mdoc(7) police: overhaul. 2002-12-10 14:21:55 +00:00
ubsec.4 Describe the 5823 and why there's no AES support. 2003-03-01 00:50:09 +00:00
ubtbcmfw.4 Update Bluetooth code. 2003-10-12 22:04:24 +00:00
ucom.4 Replace /dev/tty with /dev/ucom. 2002-08-12 20:28:53 +00:00
udbp.4 Remove bogus advertising clauses. 2002-10-30 22:27:54 +00:00
udp.4 Hiten's patchset for section four manpages, slightly edited by me. 2003-06-28 23:53:39 +00:00
ufm.4 Mdoc Janitor: 2003-11-07 19:08:13 +00:00
uftdi.4 Add the uftdi ucom driver which supports the following adapters: 2002-08-11 23:32:33 +00:00
ugen.4 Make the fields in the text match dev/usb/usb.h too. 2003-09-24 05:55:59 +00:00
uhci.4 Remove bogus advertising clauses. 2002-10-30 22:27:54 +00:00
uhid.4 Remove usbhidaction(1) manual page under SEE ALSO section. This will be 2002-08-16 05:01:11 +00:00
uhidev.4 mdoc(7) police: minor markup fixes. 2002-05-30 12:59:52 +00:00
ukbd.4 Delete MAKEDEV references and update the text about /dev/foo control 2003-03-25 14:49:02 +00:00
ulpt.4 Fix width of first column in FILES table to account for longer device name. 2003-09-20 15:16:56 +00:00
umass.4 Update the manual page examples: use of bsdlabel(8) instead of 2003-10-10 18:40:41 +00:00
umodem.4 mdoc(7) police: minor markup fixes. 2002-05-30 12:59:52 +00:00
ums.4 Remove bogus advertising clauses. 2002-10-30 22:27:54 +00:00
unix.4 mdoc(7): Use the new feature of the .In macro. 2003-09-08 19:57:22 +00:00
uplcom.4 Add the following devices to the list of supported devices, to sync 2003-11-16 14:02:37 +00:00
urio.4 Correct spelling of "TracyChapman". 2003-06-30 03:16:41 +00:00
usb.4 Get rid of duplicates. 2003-09-14 13:41:59 +00:00
uscanner.4 USB scanner support for Mustek BearPaw scanner. 2003-07-01 12:16:46 +00:00
utopia.4 Fix Xr markup. 2003-10-26 19:42:55 +00:00
uvisor.4 mdoc(7) police: overhaul. 2002-12-10 14:21:55 +00:00
uvscom.4 mdoc(7) police: minor markup fixes. 2002-05-30 12:59:52 +00:00
vga.4 Remove obsolete information about 'conflicts' 2002-12-20 04:56:52 +00:00
vinum.4 Correct the path to the modules directory. 2003-03-03 22:48:49 +00:00
vlan.4 document auto-recognition of device capabilities 2002-11-15 00:25:33 +00:00
vpo.4 s/disklabel/bsdlabel where needed. 2003-10-11 08:24:07 +00:00
vr.4 Add VT6105/VT6105M Rhine III to the list of supported chips. [1] 2003-08-21 18:15:45 +00:00
watchdog.4 - Add a software watchdog facility. 2003-06-26 09:50:52 +00:00
wb.4 Xref miibus(4). 2003-02-15 17:12:53 +00:00
wi.4 Add a few wi-supported cards to get this manpage caught up with 2003-12-02 07:07:45 +00:00
witness.4 mdoc(7) police: s;BSD/OS;.Bsx; where appropriate. 2001-08-13 17:07:40 +00:00
wlan.4 o add information about the debugging tools 2003-09-25 23:56:20 +00:00
worm.4 Remove hard sentence breaks. 2003-09-06 17:46:16 +00:00
xe.4 Score one 'duh' point for me and replace all instances of scott@ with 2003-11-10 21:56:47 +00:00
xl.4 Note that the modem built into the xl cards (both CardBus and MiniPCI) 2003-10-10 05:27:29 +00:00
xpt.4
zero.4