2 .\" Bill Paul <wpaul@windriver.com>. All rights reserved.
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\" notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\" notice, this list of conditions and the following disclaimer in the
11 .\" documentation and/or other materials provided with the distribution.
12 .\" 3. All advertising materials mentioning features or use of this software
13 .\" must display the following acknowledgement:
14 .\" This product includes software developed by Bill Paul.
15 .\" 4. Neither the name of the author nor the names of any co-contributors
16 .\" may be used to endorse or promote products derived from this software
17 .\" without specific prior written permission.
19 .\" THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
20 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 .\" ARE DISCLAIMED. IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD
23 .\" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 .\" CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 .\" SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 .\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 .\" CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
29 .\" THE POSSIBILITY OF SUCH DAMAGE.
38 .Nd NDIS miniport driver wrapper
46 driver is a wrapper designed to allow binary
49 network drivers to be used with
53 driver is provided in source code form and must be combined with
56 driver supplied with your network adapter.
61 kernel subsystem to relocate and link the
64 that it can be used in conjunction with native code.
67 subsystem provides an interface between the NDIS API and the
69 networking infrastructure.
73 fooled into thinking it is running on
78 driver is only useful on x86 machines.
80 To build a functional driver, the user must have a copy of the
81 driver distribution media for his or her card.
82 From this distribution,
83 the user must extract two files: the
85 file containing the driver
86 binary code, and its companion
88 file, which contains the
89 definitions for driver-specific registry keys and other installation
90 data such as device identifiers.
91 These two files can be converted
92 into a kernel module file using the
95 This file contains a binary image of the driver plus
99 driver loads, it will create
101 nodes for each registry key extracted from the
107 driver is designed to support mainly Ethernet and wireless
108 network devices with PCI and PCMCIA bus attachments.
110 devices are also supported as a subset of PCI.)
112 support many different media types and speeds.
114 however, is that there is no consistent way to learn if an
115 Ethernet device is operating in full or half duplex mode.
116 The NDIS API allows for a generic means for determining link
117 state and speed, but not the duplex setting.
119 driver-specific registry keys to control the media setting
120 which can be configured via the
125 .It "ndis%d: watchdog timeout"
126 A packet was queued for transmission and a transmit command was
127 issued, however the device failed to acknowledge the transmission
128 before a timeout expired.
139 .%T "NDIS 5.1 specification"
140 .%O http://www.microsoft.com
145 device driver first appeared in
150 driver was written by
151 .An Bill Paul Aq wpaul@windriver.com .