History log of /src/share/man/man4/Makefile
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 1.749 24-Oct-2025 brad

A driver for the NXP SC16IS7xx family of UART chips. This family is
mostly a 16C450 with features from the 16C550, 16C650 and 16C750 and
makes use of src/sys/dev/ic/com.c for much of the heavy lifting.

A BIG difference is that the chip family is attached via a I2C or SPI
bus and is in no way, shape or form, attached to the computer via a
computer bus.

Since spin locks are not allowed to be held while calling to the I2C
or SPI framework com.c grew a new hw feature flag where it could be
run at something other than a hard IP level and doesn't hold spin lock
(for very long). In particular, IPL_SOFTSERIAL. This method is
enabled via a hw feature flag and should not effect any other use of
com.c. Other changes with this new method of use include the use of
workqueues and such.

A further feature added to com.c was the abilty to take advantage of
the MCR prescaler that is present in the SC16IS7xx family and likely
present in the 16C650. This prescaler is tried if the baud rate
requested can not be met with the frequency oscillator that the chip is
built with.

The chip family does not use any particular frequency oscillator for
the baud rate generator. In order to deal with this the frequency can
be set via sysctl, a kernel option or with a FDT overlay if that is
supported.

Most of the features of the chip family are supported including the
gpio pins via gpiobus(4) that are present with some of the family
members.

The chip can attach via I2C or SPI and can make sure of FDT if that is
present in the system.

This chip family has been around for quite some time and there are a
number of breakout boards on Amazon. It is also reasonably priced and
you can roll your own board if you can perform simple SMD soldering as
very few additional components are required.


# 1.748 28-Aug-2025 wiz

install genet(4)


Revision tags: perseant-exfatfs-base-20250801 netbsd-11-base
# 1.747 26-Jul-2025 martin

branches: 1.747.2;
PR 58681: add a port of the OpenBSD viogpu(4) driver written by
Joshua Stein <jcs@openbsd.org>.
Port by George Matsumura with help from Jiaxun Yang.


# 1.746 15-Apr-2025 nia

Add a man page for r128fb(4)


# 1.745 15-Apr-2025 nia

Add a man page for machfb(4)


# 1.744 15-Apr-2025 nia

Add a man page for radeonfb(4)


# 1.743 03-Apr-2025 bouyer

Add gscan(4), a driver for USB to CAN bus adapters.
This driver supports the Geschwister Schneider USB to CAN adapter, and
clones supported by the open-source candleLight firmware.

Add gscan to evbarm GENERIC (which already supports CAN family and the
sunxican(4) driver by default), and to amd64 ALL.


# 1.742 11-Mar-2025 brad

A driver and userland utility for a couple of families of the
Microchip Technology / SMSC fan controller chips.

The driver and utility supports the:

o EMC2101 and EMC2101-R
o EMC2103-1, EMC2102-2 and EMC2103-4
o EMC2104
o EMC2106
o EMC2301
o EMC2302
o EMC2303
o EMC2305

The EMC210X family supports 1 or 2 fans with tachometer. Depending on
the chip, it may support 2 additional fans without tach and might
support a high side attachment (i.e. a fan, usually 5v, driven
directly from the chip and not PWM or DAC). All versions of EMC210X
support internal temperature measurements, and depending on the chip,
may support up to 5 additional temperature zones. The tachometers and
temperature measurements are provided to the system via the envsys(4)
framework. Some chip types support GPIO pins and support is provided
via the gpio(4) framework.

The EMC230X family supports 1, 2, 3 or 5 fans with the same number of
tachometers. No temperature zone or GPIO support. The tachometers
are provided to the system via the envsys(4) framework. The fan
support can be provided by PWM signaling or DAC.

The two chip families mostly do PWM signaling for the fan speed, but a
number of them support DAC output, a 0 to 3v or so voltage. When the
chip supports external temperature zones, this is done usually by a
bipolar NPN or PNP transister configured as a diode, but some of the
chip varients support thermistors.

The emcfan(4) kernel driver provides a simple read / write / seek
device in /dev/ to the register set in the chip. The heavy lifting is
done in the userland utility emcfanctl(8) which provides the ability
to read and write to any valid register and provides some basic higher
level commands to control fan behavior. The output is simple text
lines, or JSON.

The kernel driver does not reset or other mess with the chip, aside
from reading registers. It is entirely possible that something else
in any particular system is the major manager of the fan controller
and it would not do for the kernel driver to mess too much with the
attached device. All interactions are intentional via the userland
utility.

It is known that a EMC2301 is present on the Raspberry PI 4 Compute IO
module (not to be confused with the Raspberry PI 4 Compute module
itself) and there is a breakout board from Adafruit with a EMC2101 on
it. The chips themselves are pretty inexpensive from Mouser or
Digi-key and can be soldered using the simpler SMD soldering
techniques. A number of the variants are QFN packages, but the pads
are exposed to the side of the chip. No other external components are
required to use these fan controllers.


# 1.741 26-Feb-2025 ryoon

Add amdgpio(4) device driver for AMD GPIO found on some HP laptops

This device driver enables power button and trackpad on
HP Envy 13 ay1000 and HP Envy 14 fa0000.
Touchscreen and stylus have no decodable HID descriptors and not enabled.

Based on qcomgpio(4) and OpenBSD's amdgpio(4).

Add the following to your kernel configuration file:

amdgpio* at acpi?


# 1.740 23-Jan-2025 brad

A driver for the DS28E17 1-Wire to I2C bridge chip.

This chip acts like a 1-Wire slave device and provides a iic(4) master
at the end of the 1-Wire bus. More or less it is the polar opposite
of the DS2482 [ds2482ow(4)] chip.

This device couples well with ds2482ow(4) and can be used to provide a
I2C bus at very great lengths from the controlling computer.

All features of the chip are supported, except for 1-Wire overdrive
support, which requires more work from the onewire(4) infrastructure.

The chip does not support Read without Stop. Attempts to do this will
get turned into a Read with Stop and one will have to hope for the
best. The chip also does not support zero length I2C reads or zero
length I2C writes. This has the side effect of making the default
mode, a zero length I2C write, for i2scan(8) return false positives.
The alternative mode that i2cscan(8) can use, the single byte read,
should work as expected.

The chip has automatic support for end devices that do I2C clock
stretching.

It was noticed that this chip does not work with the gpioow(4) driver.
That might be an interesting thing to debug if one has a good logic
analyzer on hand. While the presence pulse is detected, the gpioow(4)
driver is not able to complete the initial ROM enumeration. The
DS28E17 works flawlessly when driven by a DS2482 [ds2482ow(4)] driver
chip. Poke me if you want any more details.

The chip is pretty inexpensive and only requires a single cap to get
it hooked up. However, the package it comes in is only a 16-QFN
package, so it could provide to be hard to solider onto a board for
some. There are side tabs, so it was possible with a very small iron
and lots of flux. There is a slightly expensive breakout board sold
by Mikroe that probably works well -> https://www.mikroe.com/1-wire-i2c-click


# 1.739 20-Jan-2025 maya

Add ncm(4) a driver for USB Network Control Model

Seen on my Google Pixel 8, which implements ncm instead of urndis.


# 1.738 16-Dec-2024 brad

A driver for the MCP-2221 / 2221A multi-io chip. This is a USB to
UART / GPIO / I2C multi-io chip probably based upon a programmed PIC.
The end result is that simple gpio and i2c can exist on any system
that provides a USB port. This is everything from a RPI to a
Virtualbox VM.


o The UART presents itself as a umodem(4) device and pretty much works
as one would expect.

o There are 4 simple GPIO pins with multiple functions that attach to
gpio(4). Support for basic GPIO input and output exists with gpioctl,
the ADC, DAC and clock pulse functions exist as ALT functions. For
the ADC and DAC /dev/ devices are provided such that simple reads and
writes interact with the ADC and DAC. The IRQ function on pin GP1 and
bit banging the GPIO with gpiopps(4) and gpioow(4) are not really
supported. The short answer is that a spin lock is held while trying
to do USB transfers and that isn't allowed.

o There is a simple I2C engine that attaches to iic(4). This mostly
works as expected, except that a READ without STOP is not supported by
the engine which causes problems for some drivers. Most drivers do
not seem to use READ without STOP and seem to work as expected.
Support for changing the I2C speed is not supported, but nothing much
really does that.

o A userland utility called umcpmioctl(8) is provided that allows the
query of the status of the chip and allows for the query of the flash
memory and the setting of some of the flash memory parameters mostly
related to gpio. This utility interacts with a control device in
/dev/. The flash memory contents is copied to the sram on boot up of
the chip and can be used to adjust how the chip sets up the gpio pins,
among other things. Support for setting or entering the chip password
is not provided.

o A number of sysctls are provided to mess with various settings.
These are detailed in the man page.


While not perfect, the chip is reasonable, cheap, and has at least one
vendor making a breakout board. It is also one of the only ones in
this space that has enough documentation to write a driver.

Support for a related chip, the MCP-2210, which provides SPI and GPIO
may exist some day as the programming interface is very simular.


# 1.737 04-Nov-2024 brad

Add a driver for the Maxim DS2482-100 and DS2482-800 I2C to 1-Wire
bridge.

This chip provides a I2C device that then has 1 or 8 1-Wire busses on
the other side. The 1-Wire buses show up as onewire(4) buses in the
NetBSD.

The chip can be used in situations where:

* You have a I2C bus extended a long distance, say with a LTC4311
active terminator / extender or one of the differential I2C
extenders and you would like to have a 1-Wire device on the far end
and it isn't possible to add wiring to get to the far end.

* You are either out of GPIO pins or the GPIO pins are not reliable
enough to use gpioow(4), but you do have working I2C.

The DS2482 does all of the 1-Wire signals in hardware and provides for
a couple of pullup options for the 1-Wire devices.

All of the functions of the DS2482-100 and -800 are supported except
for overdrive speed support. To do this will likely require some API
changes to onewire(4).

Breakout boards exist for the DS2482 for both variants, but they
appear to be more expensive than expected. The chip itself is quiet
cheap and wasn't all that hard to SMD solder to a board. No other
components are really needed.

There are other members in the same family, the DS2482-101, DS2484 and
DS2485. The DS2482-101 has a sleep pin, but from the datasheet
appears to program the same as the -100 variant. The DS2484 has a
slightly different way to set configuration information and probably
won't quite work with the driver, but isn't far off. The DS2485 is
very different and would require a new driver to function.


# 1.736 20-Oct-2024 mlelstv

Add ietp(4) man page.


# 1.735 26-Aug-2024 riastradh

acpivmgenid(4): New driver for virtual machine generation ID.

Added to amd64/ALL and i386/ALL kernel configurations, and made
available as a loadable module acpivmgenid.kmod on x86, for now.

TBD: Add to all ACPI-supporting GENERIC kernels.

PR kern/58632: getentropy(2) and arc4random(3) do not reseed on VM
fork


# 1.734 19-Aug-2024 riastradh

apei(4), acpihed(4): Wire up man pages to build.

PR kern/58046: Missing APEI (ACPI Platform Error Interface) support


Revision tags: perseant-exfatfs-base-20240630 perseant-exfatfs-base
# 1.733 04-Oct-2023 rin

branches: 1.733.2;
igc(4): Add and hook manpage


# 1.732 30-Jun-2023 gutteridge

Add npflog.4 to sets


# 1.731 22-Dec-2022 nat

Driver for DaynaPORT SCSI/Link (dse.4).

Written by Hiroshi Noguchi, of which an updated version was posted to
port-mac68k in 2001.

Attachments were added to kernel configs for platforms that already had
the Cabletron (se.4) driver added, although other platorms may benefit.

Reviewed on tech-net by Izumi Tsutsui.


Revision tags: netbsd-10-base
# 1.730 21-Nov-2022 brad

branches: 1.730.2;


A driver for the Bosch BMP280 / BME280 temperature, humidity and
atmospheric pressure sensor. This is an inexpensive to moderately
expensive chip available from a large number of places. The driver
supports all aspects of the two chips, except for the repeating read
mode which would allow for sub-second queries, such as fall detection
or perhaps even as an altimeter. This driver also only supports the
I2C interface and not the SPI interface.

The BME280, the one with humidity, is not fully tested at this point,
awaiting upon a breakout board and may not show proper humidity.


# 1.729 17-Nov-2022 brad

A driver for the Aosong AHT20 temperature and humidity sensor. While
slow for an I2C sensor it is inexpensive and should work well enough
in most indoor conditions. All features of the chip are supported.


# 1.728 12-Aug-2022 riastradh

viocon(4): New virtio tty driver imported from OpenBSD.

viocon* at virtio?

/dev/ttyVI??

Tested under qemu with:

qemu-system-aarch64 ... \
-device virtio-serial \
-chardev socket,path=/tmp/ttyVI00,server=on,wait=off,id=ttyVI00 \
-device virtconsole,chardev=ttyVI00,name=org.NetBSD.dev.ttyVI00 \
...

I updated MAKEDEV.conf to create /dev/ttyVI?? on all ports where it
looks likely to work based on:
(a) having pci or a non-pci virtio attachment,
(b) `qemu-system-$ARCH -M ?' mentioned something resembling the port,
and
(c) `qemu-system-$ARCH -device virtio-serial' launched without
complaining about the virtio-serial device.

(Criterion (c) excluded sparc and sparc64.)


# 1.727 10-Jul-2022 nia

Add a manual page for udl(4)


# 1.726 08-Jul-2022 nia

Add a man page for slurm(4)


# 1.725 08-Jul-2022 nia

Add a manual page for uintuos(4)


# 1.724 12-Jun-2022 tsutsui

Add luna68k specific section 4 man pages.

Taken from mostly OpenBSD/luna88k and partially NetBSD/hp300.


# 1.723 24-Mar-2022 manu

Add documentatiion for Intel GPIO driver igpio(4)


# 1.722 17-Jan-2022 thorpej

Re-factor and overhaul the "mcp23s17gpio" driver as "mcpgpio", and
add support for 8-bit and I2C variants of the chip:
- MCP23008 / MCP23S08: 8-bit (I2C / SPI)
- MCP23017 / MCP23S17: 16-bit (I2C / SPI)
- MCP23018 / MCP23S18: 16-bit (I2C / SPI), open-drain outputs

The MCP23x17 and MCP23x18 are essentially identical, software-wise; we
merely report different GPIO pin capabilities (no push-pull output for
MCP23x18). Also, remove the tri-state capability that was previously
advertised by the old version of this driver; these chips have no way
to put the pin into a HI-Z mode.

All 3 I2C versions are supported, but the SPI front-end still only
supports the MCP23S17 for now (SPI autoconfiguration needs an overhaul).

mcp23s17gpio(4) remains present as a link to the new mcpgpio(4) man page.

XXX Still to-do: FDT integration, interrupt suppoort.


# 1.721 06-Jan-2022 nia

Add man pages for eqos(4), mcommphy(4)

lgtm jmcneill@


# 1.720 07-Dec-2021 brad

A driver and user land utility for the Sparkfun Serial Controlled Motor
Driver module as illustrated here:

https://www.sparkfun.com/products/13911

A SCMD module is a ARM SOC simular to a Arduino in front of a motor
driver chip. The single SCMD module can control two motors and up to
16 additional modules can be chained together using an internal I2C
bus. One can interface with the SCMD using tty uart commands, SPI or
I2C. The driver in this commit adds a kernel driver for the I2C and
SPI interfaces. The command line utility provides a set of
convenience commands that support most of the functions of the SCMD
and is able to use the tty uart mode, SPI user land or the included
kernel driver in a uniform manor.

The use of the SCMD module is mostly for small robots and the like,
but it can control anything that is controllable by voltage.


# 1.719 06-Nov-2021 brad

Driver for the Sensirion SHT30/SHT31/SHT35 temperature and humidity
sensor such as:

https://www.adafruit.com/product/2857

This is a higher priced sensor with a lot of features, including the
ability to do sub-second periodic updates. The driver supports
everything about the sensor except for the alert pin.


# 1.718 14-Oct-2021 brad

A driver for the Sensirion SGP40 MOx gas sensor. An example of this
chip from Adafruit is:

https://www.adafruit.com/product/4829

This is a moderately priced gas sensor that can detect volatile
organic compounds in the air. The driver uses the 3-clause BSD
licensed VOC algorithm provided by Sensirion to turn the raw sensor
metric into a VOC index which can indicate the quality of the air in a
particular indoor environment. All published functions of the chip
are supported and one unpublished feature.


# 1.717 12-Oct-2021 msaitoh

Add hvn.4. OK'd by nonaka@.


# 1.716 03-Oct-2021 brad

A driver for the Sensirion SHT40/SHT41/SHT45 temperature and humidity
sensor. An example of this chip is:

https://www.adafruit.com/product/4885

This is a lower cost chip that provides higher then usual precision
according to the data sheet. This driver supports all of the published
functions that the chip has.


# 1.715 01-Aug-2021 andvar

add pcib(4), pceb(4), pcmb(4).
pcmb is a separate man page for i386 only, pceb and pcib are references to pci(4) only and mentioned in its bridges section.
ok riastradh


# 1.714 29-Jun-2021 nia

Remove uscanner(4) driver

This exists for compatibility with a Linux interface which was apparently
deprecated in Linux 2.6. There are various mailing list threads going
back to 2004 where the usefulness of this driver is discussed, but
the conclusion is that scanner software has all moved to using ugen(4)
instead, and enabling this driver will not help you scan things.


Revision tags: cjep_sun2x-base1 cjep_sun2x-base cjep_staticlib_x-base1
# 1.713 17-May-2021 yamaguchi

Add a new link-aggregation pseudo interface named lagg(4)

- FreeBSD's lagg(4) based implementation
- MP-safe and MP-scalable


Revision tags: cjep_staticlib_x-base
# 1.712 01-Mar-2021 jakllsch

branches: 1.712.2;
install rge(4) manual


# 1.711 27-Oct-2020 ryo

move vmt(4) from MD to MI, and add support vmt on aarch64. tested on ESXi-Arm Fling

- move from sys/arch/x86/x86/{vmt.c,vmtreg.h,vmtvar.h} to sys/dev/vmt/{vmt_subr.c,vmtreg.h,vmtvar.h},
and split the attach part of the cpufeaturebus and fdt
- add aarch64 vmware backdoor op
- add include guard to vmt{reg,var}.h
- Yet there is still some little-endian dependency. it needs to be fixed in order to work properly on aarch64eb


# 1.710 14-Oct-2020 ryo

vmx(4) should be MI. moved to sys/dev/pci from sys/arch/x86/pci


# 1.709 27-Sep-2020 roy

vether: Implement a virtual ethernet interface

The vether interface simulates a normal Ethernet interface by encapsulating
standard network frames with an Ethernet header, specifically for use as
a member in a bridge(4).

To use vether the administrator needs to configure an address onto the
interface so that packets can be routed to it. An Ethernet header will
be prepended and, if the vether interface is a member of a bridge(4),
the frame will show up there.

Taken from OpenBSD.


# 1.708 08-Sep-2020 yamaguchi

Added iavf(4) that is based on OpenBSD's iavf(4) implementation

reviewed by msaitoh@n.o and knakahara@n.o


# 1.707 20-Aug-2020 riastradh

Fill out WireGuard man pages.


# 1.706 26-Jul-2020 jdolecek

add rudimentary wwanc(4) manpage


# 1.705 16-May-2020 maya

Remove uyap, USB YAP phone firmware loader.

And the associated ezload EZ-USB code, which is only used by uyap.
It could theoretically be used by other drivers, but none of them are
in tree.

I suspect that this device isn't in use, as phone technology has improved
a lot since 2001 when uyap(4) was added to the tree.

Proposed with no objections on netbsd-users on 13 April 2020


Revision tags: phil-wifi-20200421
# 1.704 12-Apr-2020 simonb

Add uxrcom driver for Exar XR21V141x USB serial adapters. Based in part
on the OpenBSD single-port XR21V1410 uxrcom driver, but adds support
for multi-port chipsets and uses the common umodem framework instead of
being a standalone driver.

Thanks to skrll@ for much USB clue and mrg@ for financing the
development of this driver.


Revision tags: phil-wifi-20200411 phil-wifi-20200406
# 1.703 04-Apr-2020 jdolecek

remove SMBFS and nsmb/netsmb - userland part


Revision tags: is-mlppp-base
# 1.702 09-Feb-2020 jmcneill

Retire azalia(4).


# 1.701 29-Jan-2020 maya

remove urio(4), a driver for the Rio500 MP3 player.

At this point it is highly unlikely this 1999 device still has users,
but it still comes up in the context of maxv's USB-fuzzing (and any device
could pretend to be a urio(4)), so it's best to get rid of it.

Renamed all major entries to obsolete, as was done in previous removals.

This still requires an update to sanitizers, but they're located in
"external", perhaps it should be first committed upstream?

Proposed on tech-kern a month ago.


# 1.700 22-Jan-2020 thorpej

I overlooked the esh(4) man page when removing HIPPI support; remove it
now. Thanks maxv@ for noticing and pointing it out.


# 1.699 20-Jan-2020 thorpej

Remove FDDI support.


# 1.698 19-Jan-2020 riastradh

Remove filemon(4).

Discussed on tech-kern:
https://mail-index.NetBSD.org/tech-kern/2020/01/13/msg025938.html

This was never (intentionally) enabled by default, and the design has
some shortcomings. You can get mostly the same results with ktrace,
as in usr.bin/make/filemon/filemon_ktrace.c which is now used instead
of filemon for make's meta mode.

If applications require higher performance than ktrace, or nesting
that ktrace doesn't support, we might consider adding something back
into the vfs system calls themselves, without hijacking the syscall
table. (Might want a more reliable output format too, e.g. one that
can handle newlines in file names.)


# 1.697 19-Jan-2020 thorpej

Remove Token Ring support.


# 1.696 19-Jan-2020 thorpej

Remove the de(4) driver, which has long since been supplanted by the
tlp(4) driver, which supports more chips and more board variants.


# 1.695 19-Jan-2020 thorpej

Remove the strip(4) - Starmode Radio IP - pseudo-device driver. It is
long since obsolete.


# 1.694 17-Jan-2020 maya

Remove uyurex(4).

This is a driver for a "nonsense machine" made by the art group Maywa-Denki
in 2008. It was disabled by default.

Unfortunately even so it draws development attention (flaws found in the
code, MP-ification needs) and it is best not to continue to maintain this
driver.

Proposed without objections on tech-kern.


# 1.693 01-Jan-2020 ryo

add support Aquantia AQC seriese 10G network adapters.

this driver is based on the FreeBSD version https://github.com/Aquantia/aqtion-freebsd ,
but drastically rewritten for NetBSD.


# 1.692 23-Dec-2019 maxv

Revert the removal of filemon.


# 1.691 18-Dec-2019 maxv

Retire filemon, discussed on tech-kern@.


# 1.690 10-Dec-2019 yamaguchi

Ported driver for Intel Ethernet 700 series

reviewed by msaitoh and knakahara


# 1.689 20-Nov-2019 hikaru

Add opencrypto driver for Intel QuickAssist.


Revision tags: phil-wifi-20191119
# 1.688 01-Nov-2019 msaitoh

Port SMSC LAN87xx 10/100 Ethernet PHY driver from FreeBSD with some cleanup
and IFM_NONE support.


# 1.687 30-Oct-2019 msaitoh

Add jmphy(4) from OpenBSD.


# 1.686 28-Oct-2019 ozaki-r

Implement a front-end driver of virtio-9p called vio9p

In conjunction with mount_9p, it enables a NetBSD system running as a VM guest
to mount an exported filesystem by the host via virtio-9p. It exports a 9p
end-point of virtio-9p via a character device file for mount_9p.

Reviewed by yamaguchi@


# 1.685 25-Oct-2019 martin

Add support for Nuvoton NCT5104D GPIO chips, as found on PC Engines APU
systems. From Andrew Doran in PR kern/54648.


# 1.684 07-Oct-2019 msaitoh

Add support IC Plus IP1000* PHYs. PR/kern 42314 first reported by
Tomokazu HARADA and patch provided by Andrius V.


# 1.683 21-Sep-2019 jmcneill

Add support for Mellanox 5th generation ethernet devices. This driver
supports the ConnectX-4 Lx EN, ConnectX-4 EN, ConnectX-5 EN, and
ConnectX-6 EN adapters.

Driver ported from OpenBSD.


# 1.682 20-Sep-2019 mrg

add mos(4) driver for Moschip MCS7730/MCS7830/MCS7832 usb ethernet.
ported from openbsd. usbnet version loses about 40% of code.


# 1.681 30-Aug-2019 mrg

document usbnet diagnostics in usbnet(4). remove all the no longer
present messages in specific drivers for the usbnet drivers.


Revision tags: netbsd-9-base phil-wifi-20190609
# 1.680 26-Mar-2019 pgoyette

branches: 1.680.2;
Add a man page for srt(4). Thanks to wiz@ for reviewing.

This man page is just a simple beginning. It can definitely use some
more flesh on its bones.


# 1.679 17-Mar-2019 tnn

add ssdfb(4) manual page


# 1.678 23-Feb-2019 kamil

Add KCOV - kernel code coverage tracing device

The KCOV driver implements collection of code coverage inside the kernel.
It can be enabled on a per process basis from userland, allowing the kernel
program counter to be collected during syscalls triggered by the same
process.

The device is oriented towards kernel fuzzers, in particular syzkaller.

Currently the only supported coverage type is -fsanitize-coverage=trace-pc.

The KCOV driver was initially developed in Linux. A driver based on the
same concept was then implemented in FreeBSD and OpenBSD.

Documentation is borrowed from OpenBSD and ATF tests from FreeBSD.

This patch has been prepared by Siddharth Muralee, improved by <maxv>
and polished by myself before importing into the mainline tree.

All ATF tests pass.


# 1.677 06-Feb-2019 rin

Add ure(4): RealTek RTL8152/RTL8153 10/100/Gigabit USB Ethernet device.
Ported from OpenBSD. Support for RX/TX checksum offload added by myself.


Revision tags: pgoyette-compat-20190127 pgoyette-compat-20190118 pgoyette-compat-1226
# 1.676 12-Dec-2018 maxv

Add a NVMM(4) man page.


# 1.675 12-Dec-2018 maxv

Retire the LMC driver, and its associated lmcconfig tool. LMC has been
mentioned repeatedly as a non-MP-safe driver that is hard to maintain,
and no one is taking care of it.

LMC was removed from OpenBSD three years ago, and from FreeBSD a few
months ago.


# 1.674 01-Dec-2018 jdolecek

now that Jared fixed ena(4) to work, add manpage for it; adapted from FreeBSD


Revision tags: pgoyette-compat-1126
# 1.673 24-Nov-2018 bouyer

add a man page for the new mpii, mostly from OpenBSD.


Revision tags: pgoyette-compat-1020 pgoyette-compat-0930
# 1.672 23-Sep-2018 maxv

Remove ISDN from the kernel. It has remained unmaintained for a long time,
is of poor quality, and is now an obstacle to MP-ification. It was removed
ten years ago from FreeBSD for the same reason.

This retires a big user of the mbuf API, and will ease maintenance of the
kernel.


# 1.671 22-Sep-2018 maxv

Remove isic(4). It is part of ISDN, which we are now retiring.


# 1.670 22-Sep-2018 maxv

Remove iwic(4). It is part of ISDN, which we are now retiring. This driver
was still marked as experimental (its man page dates back to 2002).


# 1.669 22-Sep-2018 maxv

Remove ifpci(4). It is part of ISDN, which we are retiring.


# 1.668 21-Sep-2018 maxv

Remove iavc(4).


# 1.667 19-Sep-2018 maxv

Remove daic(4), it has never been functional.

ok martin@


# 1.666 06-Sep-2018 maxv

Retire the 'midway' driver. Discussed on tech-net@ recently and also three
years ago, part of removing the network ATM code.


Revision tags: pgoyette-compat-0906
# 1.665 25-Aug-2018 rin

Add mue(4), driver for Microchip LAN75xx/LAN78xx known as internal NIC of
Raspberry Pi 3 B+, from OpenBSD.

Tested on Raspberry Pi 3 B+ (LAN7800) and Z-TEK ZE582 (LAN7500).

* BUGS/TODO

- If the media type is set to something other than 1000baseT-FDX, data
transmission becomes quite unstable. Also, ukphy(4) recognize 1000baseT as
a supported media type, but it is not in fact.

- Catch up with changes made to usmsc(4) in nick-nhusb branch, i.e.,
make the driver MP-safe.

- Support RX/VLAN/TX chekcsum offloading.


# 1.664 14-Aug-2018 maxv

Retire EtherIP, we have L2TP instead.


# 1.663 08-Aug-2018 maya

Remove nsp(4) documentation following the removal of code.


# 1.662 31-Jul-2018 rjs

Add man page for sctp(4).


# 1.661 31-Jul-2018 khorben

Add a port of the umb(4) driver from OpenBSD

The umb(4) driver provides support for USB MBIM (Mobile Broadband
Interface Model) devices.

MBIM devices establish connections via cellular networks such as GPRS,
UMTS, and LTE. They appear as a regular point-to-point network interface, transporting raw IP frames.

Required configuration parameters like PIN and APN have to be set with
umbctl(8), a new tool specific to this driver. The IP address is configured
automatically; the default route and DNS server information have to be set
separately.

The driver is not fully functional yet, it is therefore still marked as
experimental and disabled by default. Any help welcome to complete it!

Tested on NetBSD/amd64, with a Sierra Wireless EM7345 LTE modem on a Lenovo
ThinkPad T440s. No functional change expected otherwise.


Revision tags: pgoyette-compat-0728
# 1.660 27-Jul-2018 gson

Add missing backslash to unbreak the build


# 1.659 27-Jul-2018 rkujawa

Add TEA5767 FM radio driver. From Karuna Grewal.


# 1.658 15-Jul-2018 maxv

Retire ipkdb entirely. The option was removed from the config files
yesterday.

ok kamil christos


# 1.657 10-Jul-2018 maya

Remove viadrm(4), superseded by viadrmums.

Aside from viadrm using older drm code, it's also dysfunctional right now.
See PR port-i386/53364.


Revision tags: phil-wifi-base pgoyette-compat-0625
# 1.656 13-Jun-2018 ozaki-r

branches: 1.656.2;
Retire fast_ipsec.4

We switched to Fast IPsec at NetBSD 6.0 and that's the IPsec implementation of
us now. So we don't need to have a separate manual. Merge fast_ipsec.4 into
ipsec.4 and remove fast_ipsec.4.


# 1.655 27-May-2018 thorpej

Add a driver for the Taos TSL256x light sensors.


Revision tags: pgoyette-compat-0521
# 1.654 20-May-2018 thorpej

Add a 1PPS-over-GPIO driver, originally by Brad Spencer, with changes by
me to adapt to the new GPIO interrupt interface and support a wider variety
of GPIO pin configuations.

PR kern/51676


# 1.653 19-May-2018 thorpej

Add an example "gpioirq" driver that demonstrates interrupts on GPIO
pins. Will be enhanced in the future to support sending events to
user space on edge-triggered interrupt events.

Based on initial work by Brad Spencer.
PR kern/51676


# 1.652 09-May-2018 msaitoh

Add ixv.4.


Revision tags: pgoyette-compat-0502 pgoyette-compat-0422 pgoyette-compat-0415 pgoyette-compat-0407 pgoyette-compat-0330 pgoyette-compat-0322 pgoyette-compat-0315 pgoyette-compat-base
# 1.651 24-Jan-2018 skrll

branches: 1.651.2;
Remove port-acorn26

OK core@


# 1.650 10-Jan-2018 knakahara

add ipsec(4) interface man as ipsecif.4.


# 1.649 29-Dec-2017 kre

Make a \ go away...


# 1.648 28-Dec-2017 christos

PR/52848: Brad Spencer: Man pages for new drivers


# 1.647 19-Dec-2017 christos

add missing man page from FreeBSD


# 1.646 10-Dec-2017 bouyer

Add man pages for new ihidev and ims drivers.


# 1.645 28-Nov-2017 wiz

Install qemufwcfg(4) and mount_qemufwcfg(8).


# 1.644 26-Oct-2017 maya

Add man page for bwfm(4)

Wireless driver for Broadcom and some now sold by Cypress.


# 1.643 30-Sep-2017 sevan

Add a manual for uipad(4)


# 1.642 12-Sep-2017 wiz

Remove scc(4), driver was replaced by zs(4).

Fixes PR 52539 by Miod Vallat.


Revision tags: perseant-stdc-iso10646-base
# 1.641 16-Jun-2017 pgoyette

Add gpio support for Xscale

From Stephan Meisenger in PR/52163


# 1.640 16-Jun-2017 pgoyette

Oooppss, pxagpio.4 isn't ready yet.


# 1.639 16-Jun-2017 pgoyette

Split a couple of over-long lines. NFC


# 1.638 13-Jun-2017 nat

Add wsbell.

Found by wiz@.


Revision tags: matt-nb8-mediatek-base netbsd-8-base
# 1.637 27-May-2017 bouyer

branches: 1.637.2;
merge the bouyer-socketcan branch to HEAD.

CAN stands for Controller Area Network, a broadcast network used
in automation and automotive fields. For example, the NMEA2000 standard
developped for marine devices uses a CAN network as the link layer.

This is an implementation of the linux socketcan API:
https://www.kernel.org/doc/Documentation/networking/can.txt
you can also see can(4).

This adds a new socket family (AF_CAN) and protocol (PF_CAN),
as well as the canconfig(8) utility, used to set timing parameter of
CAN hardware. Also inclued is a driver for the CAN controller
found in the allwinner A20 SoC (I tested it with an Olimex lime2 board,
connected with PIC18-based CAN devices).

There is also the canloop(4) pseudo-device, which allows to use
the socketcan API without CAN hardware.

At this time the CANFD part of the linux socketcan API is not implemented.
Error frames are not implemented either. But I could get the cansend and
canreceive utilities from the canutils package to build and run with minimal
changes. tcpudmp(8) can also be used to record frames, which can be
decoded with etherreal.


Revision tags: prg-localcount2-base3
# 1.636 16-May-2017 jdolecek

add vioscsi(4) manpage


Revision tags: prg-localcount2-base2 prg-localcount2-base1 prg-localcount2-base pgoyette-localcount-20170426 bouyer-socketcan-base1
# 1.635 19-Apr-2017 riastradh

branches: 1.635.2;
Offering for the wiz daemon.


Revision tags: pgoyette-localcount-20170320
# 1.634 06-Mar-2017 pgoyette

Add pxaip(4) man page from Stephan Meisinger in PR misc/52033


# 1.633 16-Feb-2017 knakahara

add man for l2tp(4).


# 1.632 21-Jan-2017 jdolecek

add skeleton manpage for xhci(4)


Revision tags: bouyer-socketcan-base pgoyette-localcount-20170107
# 1.631 20-Nov-2016 macallan

branches: 1.631.2;
add driver for Permedia 3 based graphics devices
from Naruaki Etomi, via PR 49518


Revision tags: pgoyette-localcount-20161104
# 1.630 02-Oct-2016 jdolecek

make symlink ahci.4 -> ahcisata.4


Revision tags: localcount-20160914
# 1.629 11-Aug-2016 christos

TURBOchannel usb/gpio driver from Felix Deichmann


Revision tags: pgoyette-localcount-20160806 pgoyette-localcount-20160726 pgoyette-localcount-base
# 1.628 01-May-2016 nonaka

branches: 1.628.2;
Added nvme(4) for Non-Volatile Memory Host Controller Interface devices.
Ported from OpenBSD.


# 1.627 18-Jan-2016 kamil

Add full.4


# 1.626 05-Jan-2016 msaitoh

Port FreeBSD's ismt(4) driver. ismt(4) supports Intel Chipset internal
SMBus 2.0 controller with DMA. It's different from ichsmb(4). Supported
chipsets are S1200 and C2000.


# 1.625 16-Dec-2015 jdc

Add manual page for ADM1026.


# 1.624 14-Oct-2015 nonaka

PR/50261: Add valz(4) man page.


# 1.623 27-Aug-2015 nonaka

Added rtwn(4) for Realtek RTL8188CE/RTL8192CE PCIe 802.11b/g/n wireless network
devices. Ported from OpenBSD.


# 1.622 23-Aug-2015 rkujawa

Add man page for mcp48x1dac driver.


# 1.621 18-Aug-2015 phx

MI driver for the Microchip 3x0x series of SAR analog to digital converters.


# 1.620 13-May-2015 mlelstv

Add documentation for the drvctl driver and add reference.
Fixes PR 49895.


# 1.619 08-Feb-2015 wiz

Add man page for iwm(4).


# 1.618 26-Oct-2014 tls

Build and install virtio(4) manual page - missed in previous commit.


# 1.617 25-Aug-2014 tsutsui

Add a man page for arcofi(4) driver. From OpenBSD.


Revision tags: netbsd-7-base tls-earlyentropy-base tls-maxphys-base
# 1.616 24-Jul-2014 alnsn

branches: 1.616.2;
man 4 bpfjit


# 1.615 13-Jul-2014 mbalmer

Add a man page for asus(4), written by Leonardo Taccari as part of PR/39932.


# 1.614 18-May-2014 kardel

add HYT-221/271/939 humidity/temperature I2C sensor
extend envsys(4) framework by %rH (relative humidity)


Revision tags: yamt-pagecache-base9
# 1.613 23-Apr-2014 kardel

move mcp23s17gpio.4 to MI SPI drivers section


# 1.612 06-Apr-2014 kardel

add Microchip MCP23S17 GPIO driver
(via SPI interface)


Revision tags: riastradh-xf86-video-intel-2-7-1-pre-2-21-15
# 1.611 19-Mar-2014 nonaka

branches: 1.611.2;
Add a driver for Realtek RTS5209/RTS5229 Card Reader.
Ported from OpenBSD.


Revision tags: riastradh-drm2-base3
# 1.610 16-Mar-2014 martin

Add umcs(4)


# 1.609 03-Mar-2014 ozaki-r

Add micphy.4


# 1.608 24-Feb-2014 skrll

Rename NetBSD/hp700 to NetBSD/hppa.

Unfortunately our VCS isn't very helpful here.


# 1.607 21-Jan-2014 mlelstv

Add igmafb man page.


# 1.606 26-Oct-2013 nonaka

Add driver for ASIX AX88178a and AX88179 Ethernet interface.
Ported from OpenBSD.


# 1.605 24-Oct-2013 mbalmer

link the lua(4) man page


# 1.604 15-Oct-2013 jdc

Add lmenv.4 to the manual page makefile and to the set list.


# 1.603 15-Oct-2013 skrll

Basic man page for dwctwo.


# 1.602 08-Sep-2013 rkujawa

Add mpl115a(4) man page for the new MPL115A2 pressure sensor driver.


# 1.601 06-Aug-2013 soren

Build orphaned man pages.


Revision tags: riastradh-drm2-base2 riastradh-drm2-base1 riastradh-drm2-base
# 1.600 08-May-2013 pgoyette

Fix the build


# 1.599 07-May-2013 rkujawa

Add mcp980x(4) man page.


# 1.598 26-Apr-2013 rkujawa

Add man page for TPS65217 PMIC.


# 1.597 30-Mar-2013 christos

patches for new wifi devices.


Revision tags: agc-symver-base
# 1.596 01-Mar-2013 joerg

Retire OSI network stack. OK core@


Revision tags: yamt-pagecache-base8
# 1.595 11-Jan-2013 skrll

Install the smsc(4) man page.


# 1.594 17-Dec-2012 mbalmer

Adding ibmcd(4), a device driver for the IBM 4810 BSP cash drawer port as
found e.g. in SurePOS 300 series point of sale terminals. The driver
provides a gpio(4) device with three pins: pin 0 to open drawer, pin 1
to read the status and pin 2 to read whether a cash drawer is connected or
not.


# 1.593 16-Dec-2012 mbalmer

ptcd(4) is a device driver for the cash drawer port found on Protech PS3100
point of sale terminals. It controls the cash drawer using a gpio(4) device
that attaches at ptcd0: Pin 0 controls the drawer, pin 1 reports the current
state. For details read the manual page.


Revision tags: yamt-pagecache-base7
# 1.592 14-Nov-2012 rkujawa

Add man page for recently added msm6242b driver.


Revision tags: yamt-pagecache-base6
# 1.591 05-Aug-2012 riastradh

branches: 1.591.2;
Add man page for uatp(4).


# 1.590 30-Jul-2012 degroote

Add malo(4)@pci driver for Marvell Libertas wireless adaptor

Ported from OpenBSD
Known issues :
- contrary to OpenBSD one, only support pci at the moment, because I don't
have the necessary hardware to test PCMCIA / CARDUS Marvell Card
- not connected to pmf(9) (unable to test it)


# 1.589 19-Jul-2012 rkujawa

Add man page for recently introduced tdvfb(4).


# 1.588 13-Jul-2012 abs

Adjust some wording based on suggestion from Snader_LB, plus install a link to wedge.4


# 1.587 13-Jul-2012 rkujawa

Add voodoofb man page. This time trying to use the "the" word more.


# 1.586 30-May-2012 wiz

Install urtw(4).


# 1.585 30-May-2012 nonaka

Add a driver for Ralink Technology RT2700U/RT2800U/RT3000U USB IEEE
802.11a/b/g/n wireless network devices, ported from OpenBSD by FUKAUMI Naoki,
arranged by me.


Revision tags: yamt-pagecache-base5
# 1.584 19-Apr-2012 bouyer

Add mpii(4), a driver for LSI Logic Fusion-MPT Message Passing Interface II
SAS controllers. Ported from OpenBSD.


Revision tags: yamt-pagecache-base4
# 1.583 25-Mar-2012 nonaka

Added urtwn(4), a driver for Realtek RTL8188CU/RTL8192CU USB IEEE 802.11b/g/n wireless network devices.


# 1.582 22-Mar-2012 drochner

remove KAME IPSEC, replaced by FAST_IPSEC


Revision tags: netbsd-6-base
# 1.581 14-Feb-2012 plunky

branches: 1.581.2;
add aubtfwl.4 to the build


# 1.580 22-Jan-2012 christos

add a tpm driver from bsssd.sourceforge.net


# 1.579 17-Jan-2012 mbalmer

Remove trailing whitespace. Reported by Brad Harder.


# 1.578 17-Jan-2012 christos

PR/45850: Pierre Pronchery: USB multi-touch panels are not supported


# 1.577 09-Jan-2012 drochner

Make FAST_IPSEC the default IPSEC implementation which is built
into the kernel if the "IPSEC" kernel option is given.
The old implementation is still available as KAME_IPSEC.
Do some minimal manpage adjustment -- kame_ipsec(4) is a copy
of the old ipsec(4) and the latter is now a copy of fast_ipsec(4).


# 1.576 04-Jan-2012 yamt

install tprof related commands and man pages.


# 1.575 26-Nov-2011 minoura

Add vioif(4) and viomb(4).


# 1.574 13-Nov-2011 mbalmer

Add documentation for gpiopwm(4).


Revision tags: yamt-pagecache-base3 yamt-pagecache-base2
# 1.573 05-Nov-2011 hannken

Document virtio(4).


Revision tags: yamt-pagecache-base
# 1.572 18-Oct-2011 wiz

branches: 1.572.2;
Move vmt(4) to x86 subdir.
No obsolete entries added for set lists since original import was just an
hour ago.


# 1.571 18-Oct-2011 wiz

Add vmt(4) from OpenBSD.


# 1.570 29-Sep-2011 sjg

Install the man page for filemon(4).


# 1.569 30-Aug-2011 jruoho

Install the emdtv(4) manual page, based on earlier feedback from jmcneill@
(includes some XXX comments; should be updated alongside with the driver).
Also use the new dtviic(4) links to build a list of supported cards.


# 1.568 30-Aug-2011 jruoho

Deprecate the tuner(4) page (link to bktr(4)), as the name is too general
and nowadays misleading.


# 1.567 30-Aug-2011 jruoho

As discussed with wiz@ and jmcneill@, move the dtvi2c(4) page to dtviic(4)
(to match iic(4)) and install it by default. Also, and in particular, build
and install MLINKS for all supported demodulators and tuners.


# 1.566 29-Aug-2011 jruoho

Install the dtv(4) manual page. (The stub man-pages are commented out ATM.)


# 1.565 14-Aug-2011 wiz

Install irmce(4) after review by jmcneill.
Sort set lists while there.


# 1.564 12-Aug-2011 dyoung

Install the ixg(4) manual page.


# 1.563 11-Aug-2011 mbalmer

pwdog(4) is a device driver for QUANCOM Electronic PWDOG1 PCI
attached watchdog timers.


# 1.562 20-Jul-2011 jakllsch

Add urndis(4) manual page.


# 1.561 13-Jul-2011 jruoho

A driver for HP 3D DriverGuard; a LIS3LV02DL-based accelerometer. Tested on
HP NC4400. Like aps(4), this is commented out in the GENERIC kernels.


# 1.560 22-Jun-2011 jruoho

Add a small summary page for altq. From the list in PR # kern/21345.


# 1.559 22-Jun-2011 jruoho

Add a small summary page for sysmon. From the list in PR # kern/21345.


Revision tags: cherry-xenmp-base
# 1.558 05-Apr-2011 phx

Add man page for s390rtc(4).


# 1.557 04-Apr-2011 bouyer

Add a man page for rdcpcib(4). While there move rdcide.4 to i386/


# 1.556 27-Mar-2011 fair

The mr(4) driver was replaced by gtp(4) in 2002, but the documentation
did not follow; fix PR kern/40070


Revision tags: bouyer-quota2-nbase
# 1.555 26-Feb-2011 ahoka

Import the Flash and NAND subsytem code contributed by the University
of Szeged, Hungary.

The commit includes:
- Flash layer, which gives a common API to access flash devices
- NAND controller subsystem for the flash layer
- An example OMAP driver which is used on BeagleBoard or alike ARM boards


# 1.554 23-Feb-2011 jruoho

Move coretemp(4) to man4.x86.


# 1.553 23-Feb-2011 jmcneill

add alc(4) man page


# 1.552 20-Feb-2011 jruoho

Split fujbp(4) and fujhk(4) to separate instances from fujitsu(4). Allows
modularization and takes care of tsutsui@'s justified concern over the too
generic name "fujitsu". Ok gsutre@.


Revision tags: uebayasi-xip-base7 bouyer-quota2-base
# 1.551 16-Feb-2011 jruoho

Add a skeleton driver for Asus EeePC acpiwmi(4) mappings.


# 1.550 14-Feb-2011 hannken

Initial implementation of ibmhawk(4) driver for sensors behind the IBM Hawk
on-board Integrated Systems Management Processor found on some eServers.

Tested on an IBM eServer x335.


# 1.549 09-Feb-2011 tsutsui

Don't forget to build and install MI HIL man pages.


# 1.548 26-Jan-2011 bouyer

Add a driver for the RDC Semiconductor RDC R6040 10/100 Ethernet controller,
as found in the vortex86 SoCs (http://www.vortex86dx.com).
Ported from freebsd.
Not added to amd64's GENERIC because this CPU is 32bit only.

thanks to DM&P Electronics, Inc for providing documentation and sample
devices for this work.


# 1.547 26-Jan-2011 nisimura

introduce sandpoint satmgr(4) and altboot(8) man page entries.


# 1.546 26-Jan-2011 pooka

Add support for the Extensible MIPS ("eMIPS") platform. The
NetBSD/emips port runs on Xilinx and Beecube FPGA systems and the
Giano system simulator.

eMIPS is a platform developed at Microsoft Research for researching
reconfigurable computing. eMIPS allows dynamic loading and scheduling
of application-specific circuits for the purpose of accelerating
computations based on the current workload.

NetBSD eMIPS support for NetBSD 4.x was written at Microsoft Research
by Alessandro Forin and Neil Pittman. Microsoft Corporation has
donated full copyright to The NetBSD Foundation.

Platform support for eMIPS is the first part of Microsoft's
contribution. The second part includes the hardware accelerator
framework and will be proposed on tech-kern soon.


# 1.545 24-Jan-2011 jakllsch

Add pcf8563rtc(4) manual page. Derived from rs5c372rtc(4).


# 1.544 17-Jan-2011 jmcneill

branches: 1.544.2;
add acpiwdrt(4) man page


# 1.543 11-Jan-2011 jym

Add man pages for Xen devices:
pciback.4 xbd.4 xbdback.4 xenbus.4 xennet.4 xpci.4 xvif.4

Blessed by bouyer@


# 1.542 09-Jan-2011 jruoho

Add a dummy-driver for ACPI fans.


# 1.541 05-Jan-2011 jruoho

Add a driver for ACPI power meters.


Revision tags: matt-mips64-premerge-20101231
# 1.540 27-Dec-2010 jmcneill

add auvitek(4) man page


# 1.539 14-Dec-2010 jruoho

By majority vote, move module(4) to the section 7.


# 1.538 12-Dec-2010 pgoyette

Add module(4) man page by popular request.

XXX Major portions copied shamelessly from cgd's earlier lkm(4) man page,
XXX so his original copyright/license is retained.


# 1.537 28-Nov-2010 christos

Add ihphy


# 1.536 15-Nov-2010 pooka

document shmif, or at least what's implemented so far


# 1.535 15-Nov-2010 skrll

Add a man page for nside(4).


# 1.534 15-Nov-2010 pooka

Exploit the fact that wizd is currently running and add a manpage
for the rump virtif.


Revision tags: uebayasi-xip-base6
# 1.533 13-Nov-2010 jnemeth

PR/39094 - Kaspar Brand -- Add et (Agere ET1310/ET1301) network driver

The et(4) driver supports PCI Express Ethernet adapters based on
the Agere/LSI ET1310/ET1301 integrated MAC/PHY.

The et(4) driver was written by Sepherosa Ziehau for DragonFlyBSD,
ported to OpenBSD by Jonathan Gray and subsequently ported to NetBSD
by Kaspar Brand.


Revision tags: uebayasi-xip-base5
# 1.532 07-Nov-2010 jakllsch

Add schide(4) man page.


Revision tags: uebayasi-xip-base4
# 1.531 05-Nov-2010 gsutre

Merge ACPI Fujitsu Driver. Provides support for hotkeys and other
built-in components through vendor-specific ACPI devices.

ok jruoho@


# 1.530 03-Nov-2010 christos

add otus.


# 1.529 24-Oct-2010 jruoho

Link wmimsi(4) to acpiwmi(4).


Revision tags: uebayasi-xip-base3
# 1.528 19-Oct-2010 pgoyette

Build the new swsensor(4) device and add to set lists


# 1.527 12-Oct-2010 gsutre

Add acpivga(4).


# 1.526 02-Oct-2010 kiyohara

Add g760a fan speed controller driver.


Revision tags: uebayasi-xip-base2
# 1.525 06-Aug-2010 jruoho

Move fwhrng(4) and ichlpcib(4) to the right category.


# 1.524 05-Aug-2010 jruoho

Add acpicpu(4). Describes the basic functionality (will be adjusted as the
functionality grows). Contains a big list of caveats as a TODO.


# 1.523 29-Jul-2010 jruoho

Add fwhrng(4). Ok jakllsch@.


# 1.522 08-Jul-2010 christos

man page for balloon driver from Cherry


# 1.521 04-Jul-2010 tsutsui

Add upgt(4), a driver for Conexant/Intersil PrismGT SoftMAC USB
IEEE 802.11b/g WLAN device, ported from OpenBSD by FUKAUMI Naoki:
http://mail-index.NetBSD.org/current-users/2010/05/28/msg013570.html
Slightly modified by me to use recently added config_mountroot(9)
to defer some device initialization until mountroot for firmload(9).

Tested on Sharp W-ZERO3 WS003SH with internal WLAN.

Note currently we cannot redistribute firmware files for upgt(4) so
they have to be downloaded and copied into /libdata/firmware/upgt manually.
See upgt(4) man page about firmware details.


# 1.520 29-Jun-2010 kefren

add mpls(4) manpage created with great help from wiz@


# 1.519 08-Jun-2010 riz

Create a manpage for igphy(4). kern/35398.


# 1.518 30-May-2010 wiz

Add man page for uark(4) from OpenBSD.


# 1.517 22-May-2010 plunky

add Magic Mouse driver and manpage btmagic(4)


Revision tags: uebayasi-xip-base1
# 1.516 10-Apr-2010 jruoho

branches: 1.516.2;
Move vald(4) to sys/dev/acpi. This is MI and should work also on amd64.

ok jmcneill@

XXX: This is broken: it calls methods with absolute pathnames (almost
guaranteed not to be portable across models), it accesses methods
that are in the domain of other drivers, it walks the namespace on
its own, it contains plenty of magic constants, it does not
integrate with existing KPIs, etc. Summa summarum: this should be
rewritten as a more generic toshiba_acpi(4).


# 1.515 08-Apr-2010 jruoho

Fix build failure noted by tnn@.


# 1.514 08-Apr-2010 jruoho

Add wmihp(4).


# 1.513 08-Apr-2010 jruoho

Add acpiwmi(4).


# 1.512 19-Mar-2010 cnst

Remove aiboost(4) as obsolete and redundant since the introduction of aibs(4).

http://mail-index.netbsd.org/tech-kern/2010/03/06/msg007458.html

Reviewed by <pgoyette>, <cegger>, <jruoho>, <tech-kern>.


# 1.511 11-Mar-2010 enami

Port uyurex(4) from OpenBSD. There is some XXX but works enough to
play with it.


# 1.510 06-Mar-2010 plunky

Add uhso(4) driver and manpage for Option N.V. Wireless WAN modems


# 1.509 27-Feb-2010 jruoho

Link acpiecdt to acpiec(4).


# 1.508 22-Feb-2010 jnemeth

smcsmon.4 -> smscmon.4


# 1.507 22-Feb-2010 jnemeth

remove accidentally committed et.4/etphy.4


# 1.506 22-Feb-2010 jnemeth

fix build breakage -- add new smscmon.4 man page


# 1.505 21-Feb-2010 cnst

New wbsio(4) driver for Winbond Super I/O attachment of lm(4) on any port.

http://mail-index.netbsd.org/tech-kern/2010/02/17/msg007338.html

Reviewed by <pgoyette>, <tech-kern>.


# 1.504 09-Feb-2010 cnst

New aibs(4) driver for ASUSTeK AI Booster (ACPI ATK0110) hardware monitor
with limit support.

http://thread.gmane.org/gmane.os.netbsd.devel.kernel/35654

Reviewed by <pgoyette>, <jruoho> and <tech-kern>.


# 1.503 06-Feb-2010 pgoyette

Add man page and cross-refs for experimental acpismbus(4)


# 1.502 06-Feb-2010 tonio

Add uthum(4) man page


# 1.501 07-Jan-2010 jdc

Add cas(4) manual page.


# 1.500 04-Jan-2010 haad

Add device-mapper manual page to build and add it to apropriate lists.


Revision tags: matt-premerge-20091211
# 1.499 30-Sep-2009 jmcneill

add wb(4) man page.


# 1.498 06-Sep-2009 sborrill

hdaudio(4) is a standards-compliant driver for Intel High Definition Audio.
It will replace azalia(4) after testing.

To use, comment out azalia in your kernel configuration and uncomment the
hdaudio and hdafg lines so it reads:

# Intel High Definition Audio
hdaudio* at pci? dev ? function ?
hdafg* at hdaudiobus?

You should also:
cd /dev
sh MAKEDEV audio


# 1.497 14-Aug-2009 mbalmer

Add support for multi-position electro-mechanical keylocks. An example
driver, gpiolock(4), is provided as an example how to interface real hardware.
A new securemodel, securemodel_keylock, is provided to show how this can
be used to tie keylocks to overall system security. This is experimental
code. The diff has been on tech-kern for several weeks.

Reviewed by many, kauth(9) integration reviewed by Elad Efrat; approved by
tonnerre@ and tron@. Thanks to everyone who provided feedback.


# 1.496 09-Aug-2009 mbalmer

Add the manual page for the gpioiic(4) driver.


# 1.495 09-Aug-2009 kiyohara

Support SMSC LAN9118 Family Ethernet interfaces device driver.
It tested on GUMSTIX only.


# 1.494 01-Aug-2009 mbalmer

Add a manual page for the gpiosim(4) pseudo-device.


# 1.493 27-Jul-2009 kiyohara

Support Marvell Hercules-I/II SATA Controllers.


# 1.492 05-Jun-2009 hubertf

Add iic(4) manpage, partly taken from OpenBSD.


Revision tags: jym-xensuspend-nbase jym-xensuspend-base
# 1.491 09-May-2009 pgoyette

Initial implementation of sdtemp(4) driver for on-DIMM temp sensor.

(These optional sensors are specified by JEDEC Standard No. 21-C
Section 4-7 and implemented by multiple vendors. Tested on my
amd64 machine with Kingston KVR1066D3E7S/2G memory which includes
a STMicro STTS424E02 sensor.)


# 1.490 21-Apr-2009 pgoyette

Add man pages for recently imported SD/MMC drivers.


# 1.489 20-Apr-2009 cegger

add manpage for ale(4) driver


# 1.488 12-Mar-2009 jmcneill

Add altmem(4) man page.


# 1.487 05-Feb-2009 sborrill

branches: 1.487.2;
Add bwi(4) man page based on Dragonfly man page


# 1.486 16-Jan-2009 cegger

manpages for new age(4) and atphy(4) drivers.


# 1.485 04-Jan-2009 wiz

Add man page for gcscaudio driver.


# 1.484 12-Nov-2008 ad

Remove LKMs and switch to the module framework, pass 1.

Proposed on tech-kern@.


# 1.483 02-Nov-2008 jnemeth

add new nsp.4 manpage


Revision tags: netbsd-5-base
# 1.482 29-Oct-2008 jkunz

branches: 1.482.2;
Ported alipm(4) and admtemp(4) from OpenBSD.


Revision tags: matt-mips64-base2
# 1.481 18-Oct-2008 jmcneill

Add thinkpad(4) man page.


# 1.480 11-Oct-2008 bouyer

jme(4), a driver for JMicron Technologies JME250 Gigabit Ethernet and
JME260 Fast Ethernet PCI Express controllers.
Written with a lot of cut-n-paste from the FreeBSD jme(4) driver.
No support for jumbo ethernet frames yet (but should come soon).
Thanks to JMicron Technologies for providing me sample boards and
documentation for this work.


# 1.479 10-Oct-2008 joerg

Add u3g(4) driver from FreeBSD. This driver provides better support for
3G datacards than ugensa and will replace the latter for the supported
devices.


# 1.478 08-Oct-2008 pgoyette

Since I nuked the old adt7467c driver, I might as well nuke the man page.


Revision tags: mjf-devfs2-base
# 1.477 02-Oct-2008 pgoyette

Remove reference to sdtemp.4 - committed in error


# 1.476 02-Oct-2008 pgoyette

Add new driver for dbCool(tm) family of Thermal Monitor and Fan Controller.
Supported chips: ADM1027, ADM1030, ADT7463, ADT7466, ADT7467, ADT7468,
ADT7473, ADT7475, and ADT7476. Notably missing is the ADT7490, and fan
controller support on the ADT7466 is still on the to-do list.

Tested by myself and njoly@
Reviewed by garbled@
Commit approved by christos@, bouyer@, cube@, and matt@


# 1.475 30-Sep-2008 jmcneill

Remove esl(4)


# 1.474 21-Sep-2008 hannken

Obsolete fssbs(4). The kernel thread is named fssN now.


Revision tags: wrstuden-revivesa-base-3
# 1.473 09-Sep-2008 jmcneill

uvideo(4) man page


Revision tags: wrstuden-revivesa-base-2
# 1.472 06-Sep-2008 jmcneill

Add man page for pseye(4)


# 1.471 06-Sep-2008 jmcneill

Add video(4) and video(9) man pages.


# 1.470 03-Sep-2008 ober

Updates to enable the iwn man page


# 1.469 31-Jul-2008 simonb

Add Greg Oster's man page for WAPBL. Still a work in progress,
expect updates.

Thanks a lot to Greg for cribbing together the info and getting
this going.


# 1.468 31-Jul-2008 simonb

Wrap long lines, break lines on start of new letter.


Revision tags: wrstuden-revivesa-base-1 yamt-pf42-base4 yamt-pf42-base3 wrstuden-revivesa-base
# 1.467 26-May-2008 christos

A manual page.


# 1.466 23-May-2008 jnemeth

Import siisata(4) by Jonathan A. Kollasch.

The siisata driver supports the Silicon Image SteelVine family of SATA-II
controllers, interfacing the hardware with the ata(4) and atapi(4) sub-
systems.

The following controllers are supported by the siisata driver:

Silicon Image SiI3124 4-port PCI/PCI-X
Silicon Image SiI3132 2-port PCI-Express x1
Silicon Image SiI3531 1-port PCI-Express x1

SATA Native Command Queueing is not yet supported.
Device hot swapping is not yet supported.
Silicon Image's Software RAID is not yet supported by the
ataraid(4) driver.

Approved by: core (christos), releng (bouyer)


Revision tags: hpcarm-cleanup-nbase
# 1.465 18-May-2008 cegger

acpidalb(4): Driver for PNP0C32 Hotkeys aka "Direct Application Launch Buttons".
"awesome" jmcneill


Revision tags: yamt-pf42-base2
# 1.464 01-May-2008 cegger

branches: 1.464.2;
hpqlb(4): driver for HP Quick Launch buttons - found on HP Pavilion Notebooks


# 1.463 22-Apr-2008 cegger

amdtemp(4): Driver for AMD CPU Temperature Sensors. Adopted from OpenBSD's kate(4).
Changes beyond OpenBSD's driver:
- Improved support for AMD K8
- Added support for AMD Barcelona, AMD Phenom and AMD Griffin
Tested on various single and multi-socket machines.
Review and OK xtreame


Revision tags: yamt-pf42-baseX yamt-pf42-base
# 1.462 03-Apr-2008 xtraeme

branches: 1.462.2; 1.462.4;
Add the finsio(4) driver. This driver supports the Hardware Monitor
device in the Fintek LPC Super I/O chips, this includes the following
list:

- F71805F
- F71806F
- F71862FG
- F71872F
- F71882
- F71883F

This has been adapted from the fins(4) driver available in OpenBSD, which
only supported F71805F.

Tobias Nygren <tnn> and myself added support for the other chips; thanks go
to Tobias for testing the driver with a Fintek F71882 chip.


# 1.461 02-Apr-2008 dyoung

Certain misguided people have complained, NetBSD only runs rare or
"retro" computers, but NetBSD also runs a growing number of rare
and retro add-on cards. With this patch, NetBSD supports the IDEC
Supervision/16, a black&white image capture board for the 16-bit
ISA bus. Approximate date of manufacture: 1991. Total instances
known to be in use throughout the world: one.

Coming soon; isvctl(8), the utility program for capturing 8-bit,
512x480 images at speeds of up to 6 frames per second.


# 1.460 29-Mar-2008 mjf

Include lii(4).


# 1.459 25-Mar-2008 reed

Add some MLINKS for man pages (no new content).

lpa(4) (Man page was removed about 14 years ago. Now link to lpt.4
on acorn32, i386, and mvme68k.)

audioctl(4)

random(4)
urandom(4)

tuner(4)
vbi(4)

wsmuxctl(4)

As mentioned on netbsd-docs list. (Many, many more man pages to do.)


# 1.458 25-Mar-2008 apb

Install the stuirda.4 man page, which was created in June 2007.


Revision tags: keiichi-mipv6-nbase keiichi-mipv6-base matt-armv6-nbase hpcarm-cleanup-base
# 1.457 21-Jan-2008 ichiro

branches: 1.457.2;
add full support device driver for Huawei E220 wireless modem

PR/37692 from Yojiro UO
---
uhmodem: device driver for huawei 3G wireless modem

* what it is?

A device driver for huawei 3G wireless modem, E220 and its valiations.

The devices are very simuler to ubsa device, but they need special care
to use as modem device.
This patch introduce "uhmodem (USB Huawei modem)" for the devices.
A uhmodem device has two com devices and one USB mass strage device.
The driver enable to use all of them.

* dmesg:
uhmodem0 at uhub0 port 1 configuration 1 interface 0
uhmodem0: HUAWEI Technologies HUAWEI Mobile, rev 1.10/0.00, addr 2
uhmodem0: mass storage only mode, reattach to enable modem
uhmodem0: at uhub0 port 1 (addr 2) disconnected
uhmodem0 detached
uhmodem0 at uhub0 port 1 configuration 1 interface 0
uhmodem0: HUAWEI Technologies HUAWEI Mobile, rev 1.10/0.00, addr 2
ucom0 at uhmodem0 portno 0: modem
ucom1 at uhmodem0 portno 1: monitor
umass0 at uhub0 port 1 configuration 1 interface 2
umass0: HUAWEI Technologies HUAWEI Mobile, rev 1.10/0.00, addr 2
umass0: using SCSI over Bulk-Only
scsibus0 at umass0: 2 targets, 1 lun per target
cd0 at scsibus0 target 0 lun 0: <HUAWEI, Mass Storage, 2.31> cdrom removable


# 1.456 09-Jan-2008 simonb

Remove support for NetBSD/pc532.


Revision tags: pc532-eol-2008 matt-armv6-base
# 1.455 31-Dec-2007 ad

Remove systrace. Ok core@.


# 1.454 23-Dec-2007 jmcneill

Move sony.4 from i386 to MD man page directory


# 1.453 12-Dec-2007 xtraeme

Rename battery(4) to battery_pmu(4), because at least we know that is
only specific to pmu.


# 1.452 12-Dec-2007 macallan

add a simple battery(4) man page


Revision tags: cube-autoconf-base
# 1.451 05-Dec-2007 xtraeme

Rename the Areca RAID driver (known as arc(4) to arcmsr(4) to avoid
namespace conflict with NetBSD/arc.

Found by tsutsui@.


# 1.450 04-Dec-2007 xtraeme

Areca Technology Corporation SATA RAID controller driver, ported
from OpenBSD.

arc0 at pci2 dev 14 function 0: interrupting at ioapic0 pin 18 (irq 5)
arc0: Areca ARC-1210 Host Adapter RAID controller
arc0: 4 ports, 256MB SDRAM, firmware <V1.43 2007-4-17>
scsibus0 at arc0: 16 targets, 8 luns per target
[...]
scsibus0: waiting 2 seconds for devices to settle...
sd0 at scsibus0 target 0 lun 0: <Areca, ARC-1210-VOL#00, R001> disk fixed
sd0: 465 GB, 56514 cyl, 36 head, 480 sec, 512 bytes/sect x 976562176 sectors
sd1 at scsibus0 target 0 lun 1: <Areca, ARC-1210-VOL#01, R001> disk fixed
sd1: 465 GB, 56514 cyl, 36 head, 480 sec, 512 bytes/sect x 976562176 sectors

bioctl(4) output with two RAID0 volumes:

Volume Status Size Device
arc0 0 Online 466G ARC-1210-VOL#00 RAID0
0 Online 234G 0:0.0 noencl <WDC WD2500YS-01SHB1 20.06C06>
1 Online 234G 0:1.0 noencl <WDC WD2500YS-01SHB1 20.06C06>
arc0 1 Online 466G ARC-1210-VOL#01 RAID0
0 Online 234G 0:2.0 noencl <WDC WD2500YS-01SHB1 20.06C06>
1 Online 234G 0:3.0 noencl <WDC WD2500YS-01SHB1 20.06C06>

The driver still needs changes related to locking and talking to the
firmware, which sometimes is unable to answer...

Raid card donated by Areca Technology Corporation via Trent George.
Disks used for testing were contributed by TNF.

Thank you very much.


# 1.449 21-Nov-2007 pooka

A very terse manual for pud(4) (it leaves almost everything as
an exercise to the reader).


# 1.448 15-Nov-2007 xtraeme

Rename it(4) to itesio(4) to accomodate for the following changes:

- The driver now uses the Super I/O address port as port argument in
the configuration file. The Environmental Controller base address is
fetched by the Super I/O EC LDN configuration registers.

- Invalidate voltage sensors if data returned is 0xff.

- Use the Super I/O Global Configuration Registers Chip ID[12] and Device
Revision to store/print the correct information.

- Use only the Fan Extended Tachometer registers on IT871[68]F for now;
this gives us correct data for IT8705/IT8712F again.

Inspired by the smsc(4) driver. The UPDATING file has been updated to
reflect the rename.


# 1.447 11-Nov-2007 jmcneill

Add man page for pseudo-audio device driver.


# 1.446 29-Oct-2007 xtraeme

Add coretemp(4). A new driver for Intel Core's on-die thermal sensor,
available on Intel Core or newer CPUs.

Ported from FreeBSD. Tested by rmind on i386 and joerg on amd64.

Enabled with "options INTEL_CORETEMP".


# 1.445 25-Oct-2007 christos

PR/37210: Jonathan Kollasch: Add seeprom man page.


# 1.444 17-Oct-2007 garbled

Remove the man4.pmppc but move the contents over to man4.evbppc as they
still contain worthwhile information.


# 1.443 30-Sep-2007 kiyohara

Add bcsp(4).


# 1.442 25-Sep-2007 wiz

Add piixpcib(4), based on the one provided by Stephan Meisinger in
PR 37021.


# 1.441 11-Sep-2007 xtraeme

New aps(4) driver for IBM Thinkpad Active Protection System.
Exports some sensors through the envsys(4) framework available
in some Thinkpad laptops.

Ported by Pierre Pronchery from OpenBSD, via PR port-i386/36852.

Tweaks, LKM and misc improvements by me. Added into i386/GENERIC
commented out.


# 1.440 03-Sep-2007 tshiozak

add manpage for uchcom(4).


# 1.439 26-Aug-2007 xtraeme

branches: 1.439.2;
Add a manpage for the ichlpcib(4) driver. This needs some wizd-ification.


# 1.438 20-Aug-2007 kiyohara

Add support for AnyCom BlueCard.


# 1.437 19-Aug-2007 tnn

Move spdmem.4 to the i2c section.


# 1.436 18-Aug-2007 tnn

Add spdmem(4) driver. This decodes technical specifications stored in
the eeprom on common types of memory modules. The specifications are
displayed during boot and can later be queried in the hw.spdmemN sysctl
subtree. Stub driver written by Nicolas Joly and greatly improved upon by
Paul Goyette. From PR 36745, with additional improvements by Paul and me.


Revision tags: matt-mips64-base
# 1.435 28-Jul-2007 kiyohara

branches: 1.435.4;
Add support for Intel ICH SMBus controller.


# 1.434 11-Jul-2007 kiyohara

Add support for NVIDIA nForce 2/3/4 SMBus controller and SMBus driver.


# 1.433 20-Jun-2007 tsutsui

sn(4) driver on mac68k has been switched to using MI SONIC driver,
so prepare MI sn(4) man page. Also improve some descriptions.


# 1.432 09-Jun-2007 kiyohara

Add zyd(4).


# 1.431 01-Jun-2007 uwe

Add smsc.4 (hi, brett!)


# 1.430 01-Jun-2007 jnemeth

note new xirc manpage


# 1.429 20-May-2007 dogcow

Add uslsa.4, as per PR kern/33496


# 1.428 15-May-2007 bouyer

add jmide(4), a driver for the JMicron Technology JMB36x PCIe to SATA II/PATA
controllers. These controllers can be found on add-on PCIe cards, or
on some motherboards to provide the PATA connectivity (e.g. some intel
ICH8-based motherboards).

Thanks to JMicron Technology for providing me documentation and
different sample boards for this work.


# 1.427 15-May-2007 macallan

add a couple man pages for the new ADB subsystem


# 1.426 01-May-2007 bouyer

Add bio(4) and associated bioctl(8) from OpenBSD, a driver control block
device controllers, and more specifically raid controllers.
Add a new sensor type, ENVSYS_DRIVE, to report drive status. From OpenBSD.
Add bio and sysmon support to mfi(4). This allow userland to query
status for drives and logical volumes attached to a mfi(4) controller. While
there fix some debug printfs in mfi so they compile.
Add bio(4) to amd64 and i386 GENERIC.


# 1.425 21-Apr-2007 plunky

add 'lost' manpages to build:

acorn26/iobus(4)
mac68k/zsc(4)
pc532/intro(4)
sparc/autoconf(4)
sun3/autoconf(4)
vax/mtc(4)
vax/rl(4)
iee(4)


# 1.424 12-Apr-2007 macallan

Add chipsfb.4 and genfb.4


# 1.423 25-Mar-2007 wiz

Add basic drm(4) man page, and link it to drivers.
Feel free to improve it!


# 1.422 14-Mar-2007 xtraeme

aiboost(4) manpage.


# 1.421 01-Mar-2007 garbled

Add man4.prep subdir


# 1.420 20-Feb-2007 kiyohara

Supprot Bluetooth HCI UART (H4) driver and daemon.


# 1.419 20-Jan-2007 xtraeme

Updated viaenv(4) driver:

* Support for the VIA VT8231 Hardware monitor.
* Power Management Timer available for timecounters in both
VT86C686A and VT8231 (code simplified thanks to dev/ic/acpipmtimer).
* Remove viapm(4) code and manpage (which was a link to viaenv.4 anyway).

From OpenBSD, tested by some users.


# 1.418 07-Jan-2007 xtraeme

ug(4): manual page for the Abit uGuru hardware system monitor
(wiz please review, thanks).


# 1.417 17-Dec-2006 bouyer

Add bnx(4), a driver for Broadcom NetXtreme II 10/100/1000 Ethernet device.
Ported from OpenBSD by cube@, with some bus_dma fixes by me.
Tested on i386 and amd64.


# 1.416 17-Dec-2006 bouyer

Add mfi(4), a driver for LSI Logic & Dell MegaRAID SAS RAID controller.
Ported from OpenBSD, tested on i386 and amd64.


Revision tags: netbsd-4-base
# 1.415 30-Nov-2006 bouyer

branches: 1.415.2;
Add ahcisata(4), a driver for AHCI 1.0 and 1.1 controllers. Tested on the sata
ports of a Intel 63xxESB chipset. Does not support NCQ yet.


# 1.414 23-Nov-2006 rpaulo

New EtherIP driver based on tap(4) and gif(4) by Hans Rosenfeld.
Notable changes:
* Fixes PR 34268.
* Separates the code from gif(4) (which is more cleaner).
* Allows the usage of STP (Spanning Tree Protocol).
* Removed EtherIP implementation from gif(4)/tap(4).

Some input from Christos.


# 1.413 09-Nov-2006 pooka

initial documentation for the puffs message interface


# 1.412 31-Oct-2006 joerg

Add rum(4) for newer USB Ralink devices. Obtained from OpenBSD.
Special thanks to Sepherosa Ziehau for helping debugging USB issues.
Hook up rum(4) for i386 config files.


# 1.411 26-Oct-2006 bjh21

At wiz's suggestion, replace the two MD podulebus(4) pages with a single MI
one, modelled somewhat on pci(4).


# 1.410 22-Oct-2006 bjh21

ei(4) is MI, shared by acorn26 and acorn32. Pull its man page up out of the
acorn26 directory.


# 1.409 21-Oct-2006 bouyer

Add support for the Intel 80003 Gigabit Ethernet controller (found e.g. in
newer server chipsets) to wm(4), from the FreeBSD em(4) driver.
While there, add a few other Intel Ethernet controller that should work as
is.
Properly update the RX error and TX collision counters.
Add ikphy(4), a driver for the Intel i82563 Kumeran 10/100/1000 Ethernet PHYs


# 1.408 09-Oct-2006 gdamore

Add man pages for SPI, m25p flash, and tm121temp devices. I'm holding off
creating an spiflash man page until the framework settles, and I'd
ultimately like to create section 9 pages for SPI.


# 1.407 01-Oct-2006 bouyer

Add manpage for new ipmi driver.


# 1.406 01-Oct-2006 bjh21

Add a sec(4) manual page.


# 1.405 10-Sep-2006 plunky

update to bluetooth device attachment:

remove pseudo-device btdev(4) and inherent limitations

add bthub(4) which autoconfigures at bluetooth controllers as they
are enabled. bluetooth devices now attach here.

btdevctl(8) and its cache is updated to handle new semantics

etc/rc.d/btdevctl is updated to configure devices from a list
in /etc/bluetooth/btdevctl.conf


# 1.404 09-Sep-2006 riz

Add msk(4) info to the sk(4) manpage, and install links (from OpenBSD).

Also, add msk to DEVNAMES.


# 1.403 07-Sep-2006 itohy

Workbit NinjaATA-32 busmastering PIO IDE controller driver (njata)

This driver supports NinjaATA-32Bi and NPATA-32 chips,
which are used for CardBus ATA interface cards and
CardBus CompactFlash adapters.


# 1.402 02-Sep-2006 wiz

Remove some ns(4)-related man pages.


# 1.401 26-Aug-2006 matt

Remove XNS protocol man page.


# 1.400 19-Aug-2006 plunky

The ubtbcmfw(4) driver fails to compile, as noted by PR kern/34219.

While it can be made to compile, the paradigm is not quite right because
it attempts to contact the filesystem during autoconfig which sometimes
causes a panic. Even if that was fixed, there is another potential problem
in that the driver tries/sleeps/tries/sleeps and the sleep could
theoretically sleep past the rc.d/btconfig stage and the controller
would remain unconfigured.

So, I have prepared a different method for loading the firmware to
Broadcom BCM2033 chip based devices. A package 'sysutils/bcmfw' will load
the firmware files via a ugen(4) device interface.

This update removes the ubtbcmfw(4) driver and adds a table to the ubt(4)
driver so that it will not attach to Broadcom BCM2033 based devices before
the firmware was loaded.

This fixes kern/34219


# 1.399 13-Aug-2006 wiz

Add dk(4) manpage written by Jonathan A. Kollasch, provided in PR 34193.


# 1.398 13-Aug-2006 simonb

Add a port of the OpenBSD Intel 3945ABG wpi(4) wireless driver, by
Jean-Baptiste Campesato.

From PR kern/33778.


Revision tags: abandoned-netbsd-4-base
# 1.397 29-Jul-2006 wiz

branches: 1.397.2;
Install twa(4) and add it to set list.


# 1.396 26-Jul-2006 tron

Bluetooth fixes by Iain Hibbert:
Remove bthset(4) device and add btsco(4) in its place. This is an
improved version which is not just for headsets, as it can receive
incoming connections (eg for Hands Free Profile). Update bthset(1)
control utlitiy to relate to new device.


# 1.395 26-Jul-2006 tron

Bluetooth fixes by Iain Hibbert:
Change the way in which bluetooth devices attach to system. The
new way is for devices to attach directly to a btdevN device via
its own control file /dev/btdevN.
- bthub(4) is replaced by btdev(4).
- /dev/bthubctl is replaced by /dev/btdevN.
- configuration now uses proplib(3) property lists.
- btcontrol(8) updated to use new API, and now uses private
- XML config file /var/db/btdev.xml.


# 1.394 08-Jul-2006 tsutsui

Misc fixes for sl(4) and slattach(8) man pages:
- note that ifconfig(8) create subcommand is required before slattach(8)
- network addresses aren't defined by slattach(8) but ifconfig(8)
- Add a BUGS section in slattach(8) to note that currently there is no way to
specify/see an interface name to be attached
- move description about link[0-2] flags from slattach(8) to sl(4)
(rather than adding a new description...)
- move description about SLIP limitations to a new BUGS section in sl(4)
- remove inappropriate MLINKS of slip.8 to slattach.8
- create MLINKS of slip.4 to sl.4 instead
- add some more xrefs

Ok'ed by christos, and closes PR kern/33672 and PR bin/33923.


# 1.393 05-Jul-2006 martin

Add man page for ugensa


# 1.392 30-Jun-2006 xtraeme

Enable kse(4).


# 1.391 27-Jun-2006 peter

Add man4.hpcarm. Pointed out by Hisashi T Fujinaka.


# 1.390 24-Jun-2006 kardel

move geodecntr.4 into i386 section where it actually belongs


# 1.389 24-Jun-2006 kardel

add description for geodecntr


# 1.388 19-Jun-2006 gdamore

Initial import of bluetooth stack on behalf of Iain Hibbert. (plunky@,
NetBSD Foundation Membership still pending.) This stack was written by
Iain under sponsorship from Itronix Inc.

The stack includes support for rfcomm networking (networking via your
bluetooth enabled cell phone), hid devices (keyboards/mice), and headsets.

Drivers for both PCMCIA and USB bluetooth controllers are included.


Revision tags: chap-midi-nbase chap-midi-base
# 1.387 18-May-2006 liamjfoy

Integrate Common Address Redundancy Procotol (CARP) from OpenBSD

'pseudo-device carp'

Thanks to: joerg@ christos@ riz@ and others who tested
Ok: core@


# 1.386 17-May-2006 kiyohara

Add man page for lmtemp(4).


# 1.385 13-May-2006 xtraeme

Driver for iTE IT87xxF and compatibles hardware monitor. Add
commented out entries on GENERIC and GENERIC_LAPTOP.

Adapted from OpenBSD.


# 1.384 11-May-2006 gdamore

Add preliminary documentation for DDC and EDID subsystem.


# 1.383 07-May-2006 jmcneill

Man page for the Intel PIIX4 power management driver.


# 1.382 07-Apr-2006 riz

Dallas Semiconductor 1-Wire bus support, from OpenBSD. Currently includes
gpioow(4), attaching a bit-banging driver via a GPIO pin. Also,
owtemp(4) which supports some of the 1-Wire temperature sensors, including
the DS18b20 and DS1920 - temperatures are returned via the envsys(4)
framework.

Original drivers by Alexander Yurchenko (grange@openbsd), with envsys(4)
support and a fix to the 1-wire search algorithm (for discovering
devices on the bus) by me.

As discussed on tech-kern earlier this week.


# 1.381 03-Apr-2006 scw

Add a kernel driver and userland program for the Topfield TF5000PVR range
of digital video recorders popular in Europe and Australia.

These devices have a USB client port which can be used to upload and
download recordings (and other files, such as MIPS binaries for execution
on the DVR's CPU) to/from their internal hard disk, in addition to some
other operations on files and directories.


# 1.380 28-Mar-2006 riz

Since the swcrypto pseudo-device is now needed for using the crypto
framework without a hardware accelerator card, make sure it has
some accessible documentation.


# 1.379 25-Mar-2006 xtraeme

Add basic rgephy(4) manpage, from OpenBSD.


# 1.378 23-Mar-2006 xtraeme

Enable ciss(4) manpage.


# 1.377 12-Mar-2006 chs

add nfe driver and manpage from OpenBSD.


# 1.376 06-Mar-2006 bouyer

Add svwsata(4), a driver for Serverworks K2 SATA controllers. From
OpenBSD via Joerg Sonnenberger.


# 1.375 25-Feb-2006 christos

remove vinum


# 1.374 10-Feb-2006 gdamore

Added evbmips section, including intro and aupci man pages.


# 1.373 17-Jan-2006 jmmv

The tb(4) driver is gone, so should be the manual page.


# 1.372 04-Jan-2006 xtraeme

Add rlphy(4) (Realtek 8139/8201L PHY) from OpenBSD.


# 1.371 27-Sep-2005 jmcneill

Add man page for gpio framework (from OpenBSD)


# 1.370 15-Sep-2005 nonaka

Added rs5c372rtc, shpcic man pages.


# 1.369 12-Sep-2005 wiz

Add adt7467c.4.


# 1.368 09-Sep-2005 ragge

Add man page for the xge driver.


# 1.367 31-Jul-2005 augustss

Add ucycom.4


# 1.366 31-Jul-2005 nakayama

Add man page for teliosio(4).


# 1.365 18-Jul-2005 augustss

Add uipaq(4). From OpenBSD.


# 1.364 17-Jul-2005 rpaulo

Add rtw.4


# 1.363 14-Jul-2005 drochner

add a manpage for the ral (at pci/cardbus/uhub) wlan driver,
mostly from OpenBSD


# 1.362 11-Jul-2005 kiyohara

ieee1394 import from FreeBSD.


# 1.361 28-Jun-2005 kent

remove pss(4) driver. It has never been workable and has not been
compilable for a long time.


# 1.360 21-Jun-2005 wiz

Add ac97(4) man page from OpenBSD, written by Constantine Sapuntzakis.
Suggested by kent@.


# 1.359 21-Jun-2005 kent

add azalia(4) man page


# 1.358 20-Jun-2005 briggs

Add an initial man page for ataraid(4).


# 1.357 17-Jun-2005 peter

Install vinum(4) manpage.


# 1.356 25-Apr-2005 blymn

Remove outdated verifiedexec(4) man page, add veriexec(4) to makefile


# 1.355 24-Apr-2005 dyoung

Add IEEE 802.11 manual pages from FreeBSD to both the Makefiles
and the set lists.


# 1.354 15-Apr-2005 itohy

ukyopon(4): Kyocera AIR-EDGE PHONE driver

Close NetBSD PR #25954 in a different way.


# 1.353 03-Apr-2005 jdolecek

add tra(4) manpage


# 1.352 25-Mar-2005 cube

Add a manpage for attimer(4), and cross-reference it from pcppi(4).


# 1.351 18-Mar-2005 yamt

add agr(4), a pseudo network device driver for link aggregation.


Revision tags: netbsd-3-base
# 1.350 20-Feb-2005 jdolecek

branches: 1.350.2;
add vge(4) manpage, obtained from FreeBSD


# 1.349 20-Feb-2005 jdolecek

add ciphy(4) manpage


# 1.348 24-Jan-2005 joff

Add atu(4) manpage: 802.11b USB wifi dongle. From OpenBSD.


# 1.347 22-Jan-2005 briggs

Add sem.4 from FreeBSD.


# 1.346 12-Jan-2005 reinoud

Add documentation for the new auixp(4) driver.


# 1.345 11-Jan-2005 skrll

Add iwi.4


# 1.344 09-Jan-2005 smb

Add a software watchdog timer facility. Because this slightly
changes the "tickle" model of wdogctl(8), it was modified as well;
while I was in there, I cleaned up the argument parsing.

The code was reviewed by simonb@.


# 1.343 08-Jan-2005 cube

Add and install a manual page for tap(4).


# 1.342 23-Dec-2004 he

Add manual page for the ahd driver. Taken from FreeBSD and adapted
to the NetBSD port of the driver.

OK'ed by fvdl.


# 1.341 20-Dec-2004 christos

revert previous change while discussion is in progress


# 1.340 20-Dec-2004 itojun

RFC cannot be used as manpage regarding to the ISOC copyright boilerplate.
remove it until someone writes it up from scratch/freely-redistributable
text is found.


# 1.339 06-Dec-2004 cube

Add a manual page for ixpide(4).


# 1.338 01-Dec-2004 grant

add iteide(4) driver for ITE8212-based IDE controllers. from
OpenBSD, ported to NetBSD by me.

ok'd by bouyer@, thorpej@.


# 1.337 24-Nov-2004 wiz

Remove netsmb(4); nsmb(4) replaces it (and is linked to it for now).
Sort MLINKS lines in Makefile.


# 1.336 24-Nov-2004 bouyer

pdcsata(4), a driver for the Promise SATA150 (aka PDC203xx) serie of
controllers. Tested with a PDC20375 (2 SATA, one PATA) controller on sparc64.
Added to all kernel config file which had pdcide(4).


# 1.335 14-Nov-2004 yamt

merge after importing pf from openbsd 3.6. (userland part)

some files were imported to the different places from the previous version.
v3_5:
etc/pf.conf
etc/pf.os
etc/spamd.conf
share/man/man4/pf.4
share/man/man4/pflog.4
share/man/man5/pf.conf.5
share/man/man5/pf.os.5
share/man/man5/spamd.conf.5
v3_6:
dist/pf/etc/pf.conf
dist/pf/etc/pf.os
dist/pf/etc/spamd.conf
dist/pf/share/man/man4/pf.4
dist/pf/share/man/man4/pflog.4
dist/pf/share/man/man5/pf.conf.5
dist/pf/share/man/man5/pf.os.5
dist/pf/share/man/man5/spamd.conf.5


# 1.334 23-Oct-2004 augustss

s/uax/axe/


# 1.333 22-Oct-2004 augustss

Add the cdce(4) man page. This also gives the correct history of the
driver. It's only based on Bill Pauls work, the CDC part is by
Daniel Hartmeier.


# 1.332 10-Oct-2004 augustss

Add auacer.


# 1.331 24-Sep-2004 wiz

Install sti(4) and descend into man4.hp700.


# 1.330 04-Sep-2004 manu

Documentation on the PIM kernel options and on multicast, from Pavlin
Radoslavov, imported from FreeBSD.


# 1.329 26-Aug-2004 itohy

Add njs.4


# 1.328 23-Aug-2004 wiz

Move ipw(4) from usr.sbin/ipwctl to share/man/man4.


# 1.327 24-Jul-2004 mrg

install spif(4).


# 1.326 20-Jul-2004 wiz

Add ptm(4). Christos thinks it's minimal but ok :)


# 1.325 09-Jul-2004 bouyer

Add geodeide(4), a driver for the AMD Geode CS5530A IDE controller.
Tested by Ian Zagorskih (ianzag at megasignal.com).


# 1.324 22-Jun-2004 itojun

add pf manpage for installation


# 1.323 31-May-2004 toshii

Add re(4) manpage, from FreeBSD.


# 1.322 25-May-2004 tsarna

basic uep(4) manpage.

kill -HUP `cat /var/run/wizd.pid`


# 1.321 10-May-2004 wiz

Do not install ppi(4) -- drochner says that there's no driver for it.
(hp300/ppi.4 is something different and has its own man page.)


# 1.320 05-May-2004 dyoung

Build and install atppc(4), plip(4), ppbus(4), ppi(4) manual pages.


# 1.319 03-May-2004 kochi

Move spic.4 from man4 to man4.i386.


# 1.318 29-Apr-2004 jonathan

Make new hifn(4) and ubsec(4) manual pages visible to system, after
review, proofing, and bug-fixing by Thomas Klausner (wiz):
1. add hifn(40 and ubsec(4) to share/man/man4/Makefile and the distrib set lists.
2. Restore commented-out cross-references to hifn(40 and ubsec(4) in crypto(4).

No change made to hifn.4 or ubsec.4; commit forced for cross-reference
and for pullup-request purposes.


# 1.317 27-Apr-2004 jonathan

Commit first draft of a manpage for crypto(4), the user-mode API
to opencrypto(9).


# 1.316 27-Apr-2004 jonathan

Add fast_ipsec.4 to Makefile. Thanks to Klaus Klein for the reminder.


# 1.315 03-Apr-2004 uwe

Add kloader(4).


# 1.314 31-Mar-2004 mrg

install man pages for be(4) qe(4) qec(4) xbox(4) ie(4) pnozz(4) tctrl(4)
xd(4) and xy(4)


Revision tags: netbsd-2-0-base
# 1.313 27-Mar-2004 uwe

branches: 1.313.2;
Add shb(4).


# 1.312 18-Mar-2004 ragge

Manpage for the dge card.


# 1.311 01-Mar-2004 perry

re-format the main list of man pages -- it was getting ugly.


# 1.310 01-Mar-2004 perry

add ath.4


# 1.309 11-Jan-2004 hannken

Update the file system snapshot driver:
- Document the kernel thread.
- Rename some functions and variables.
- Return EROFS where appropriate.
- Use shifts instead of 64-bit divide.
- Use a simple_lock to make it MP-safe.
- Add M_CANFAIL to malloc to avoid panic on large cluster size.
- Allow sparse file for backing store and use VOP_BALLOC() to allocate
space. Default size of backing store is the size of the file system.


# 1.308 07-Jan-2004 augustss

Remove accidental extra stuff.


# 1.307 07-Jan-2004 augustss

Make usbtask(4) be usb(4).


# 1.306 14-Dec-2003 thorpej

Split the Artisea bits out of piixide(4) into artsata(4).


# 1.305 14-Dec-2003 thorpej

Split the SATALink bits out of the cmdide(4) manpage into the satalink(4)
manpage.


# 1.304 10-Dec-2003 hannken

The file system snapshot pseudo driver.

Uses a hook in spec_strategy() to save data written from a mounted
file system to its block device and a hook in dounmount().

Not enabled by default in any kernel config.

Approved by: Frank van der Linden <fvdl@netbsd.org>


# 1.303 05-Nov-2003 uwe

Descend into man4.hpcsh.
Install adc(4) and j6x0tp(4) manual pages.


# 1.302 31-Oct-2003 nisimura

Added stpcide(4) driver for STMicroelectronics STPC IDE controllers.


# 1.301 30-Oct-2003 wiz

Descend into man4.sparc64 and install man pages there.


# 1.300 08-Oct-2003 bouyer

Add man page for per-chip pciide drivers.


# 1.299 08-Oct-2003 bouyer

Add a ata(4) man page, with a symlink to atabus(4), and xref where
appropriate.


# 1.298 28-Sep-2003 wiz

Add man page for bce(4), and xref it from bge(4).


# 1.297 26-Sep-2003 mbw

Combine mac68k and macppc mc.4 man page into an MI man page.


# 1.296 26-Sep-2003 mbw

Alex Zepeda <zipzippy@sonic.net> created some nice new ADB man pages
based loosely on the mac68k adb.4. These pages are MI (mac68k and macppc).


# 1.295 25-Sep-2003 pooka

build iavc.4 and isdncapi.4


# 1.294 25-Sep-2003 pooka

move iwic.4 to the same place with its isdn friends


# 1.293 04-Sep-2003 dan

build atw.4


# 1.292 30-Aug-2003 jdolecek

add sk(4) manpage, adapted from OpenBSD by Stephen Degler

followup to PR kern/22511


# 1.291 22-Aug-2003 itojun

manpage for udav*


# 1.290 01-Aug-2003 tsutsui

Add spc(4) man page for Fujitsu MB87030/MB89352 SCSI Protocol Controller
(SPC) driver.


# 1.289 04-Jul-2003 drochner

add a manpage for the "txp" driver (3c990), from OpenBSD


# 1.288 02-Jun-2003 gmcgarry

GPIB manpages.


# 1.287 01-Jun-2003 uwe

Add igsfb(4).


# 1.286 14-May-2003 drochner

opms(4) is long gone


# 1.285 02-May-2003 fair

Add a full list of config(8) lines from sys/arch/*/conf/GENERIC
Add ms(4) and kbd(4) to SEE ALSO.
Correct Ud -> Ux in HISTORY.
Add links to zs.4 and zsc.4 to make this easier to find.
Mention "Zilog 8530" in the Nd so that the permuted index will find
this driver.


# 1.284 01-May-2003 gmcgarry

Manpage for amr(4) from FreeBSD. Addresses PR#17110.


# 1.283 29-Apr-2003 gmcgarry

arc and cobalt directories


# 1.282 29-Apr-2003 augustss

Add more (skeleton) missing man pages.


# 1.281 29-Apr-2003 augustss

Add some man pages that were missing. The pages are empty, but has the
email address of the person who added the driver. ;-)


# 1.280 28-Apr-2003 augustss

Link opms to pms.


# 1.279 17-Apr-2003 wiz

Install oak(4), and descend into man4.acorn32 instead of man4.arm32.


# 1.278 16-Apr-2003 thorpej

Manual page for the LSI Fusion-MPT SCSI/Fibre Channel driver.


# 1.277 06-Apr-2003 tsutsui

Build and install oosiop(4).


# 1.276 16-Feb-2003 augustss

Add uax(4) man page.


# 1.275 09-Feb-2003 tron

Add manual page for Broadcom BCM570x family Gigabit Ethernet driver.


# 1.274 05-Jan-2003 jmcneill

Add man pages for the ACPI Thermal Zone driver.


Revision tags: fvdl_fs64_base
# 1.273 17-Nov-2002 itohy

Add man4.dreamcast


# 1.272 11-Nov-2002 wiz

Add mtd(4) man page by Martin Husemann and Peter Bex, with some
improvements by me.


# 1.271 30-Oct-2002 agc

Might as well install the veriexec(4) man page.


# 1.270 08-Oct-2002 augustss

Add ubsa(4).


# 1.269 04-Oct-2002 elric

Install documentation about cgd(4).


# 1.268 24-Sep-2002 pooka

add man page for iwic

from FreeBSD


# 1.267 11-Aug-2002 soren

Install slhci(4).


# 1.266 06-Aug-2002 drochner

add manpage for the PC87366 superI/O chip, temperature monitor part,
driver


# 1.265 03-Aug-2002 thorpej

Descend into man4.evbarm.


# 1.264 02-Aug-2002 thorpej

Manual page for pseudo-device access to hardware-assisted data movers.


# 1.263 09-Jul-2002 wiz

Add man page for gem(4). OK'd by eeh.


# 1.262 18-Jun-2002 enami

Add brief manpage for amdpm(4).


# 1.261 17-Jun-2002 christos

don't forget to install systrace.


# 1.260 31-May-2002 wiz

Descend into man4.pmppc.


Revision tags: netbsd-1-6-RELEASE netbsd-1-6-RC3 netbsd-1-6-RC2 netbsd-1-6-RC1 netbsd-1-6-base
# 1.259 19-May-2002 pooka

branches: 1.259.2;
add man4.sgimips


# 1.258 26-Apr-2002 ad

Add a driver for Adaptec FSA RAID controllers, as often found in Dell
servers. Based on the FreeBSD/OpenBSD versions.


# 1.257 23-Apr-2002 bouyer

Add a man page for esiop. While I'm there remove references to ncr(4).


# 1.256 23-Apr-2002 augustss

Add skeleton man pages for acpi drivers.


# 1.255 22-Apr-2002 ad

Add a driver for ICP-Vortex GDT and Intel Storage RAID controllers. Parts
taken from OpenBSD. Test hardware kindly provided by Intel. This still needs
management bits, and doesn't support older controllers, but that shouldn't
be hard to fix.


# 1.254 02-Apr-2002 augustss

Xref urlphy.


# 1.253 28-Mar-2002 ichiro

add url(4)


# 1.252 28-Mar-2002 thorpej

Manual page for the Intel i8254x Gigabit Ethernet driver.


# 1.251 25-Mar-2002 martin

Add man page for the Fritz!PCI ISDN card driver


# 1.250 24-Mar-2002 bjh21

Move manual pages, man[48].arm26 -> man[48].acorn26.


# 1.249 19-Mar-2002 augustss

Add uvscom(4).


# 1.248 16-Mar-2002 martin

Move man pages of renamed devices and adapt them to their new name.


# 1.247 14-Mar-2002 uwe

Add audiocs(4) and ebus(4).


# 1.246 04-Mar-2002 sommerfeld

The "gif*" tunnelling interface does everything ipip does.
Move usage example from ipip.4 to gif.4
Excise ipip and stitch up the scars.


# 1.245 06-Feb-2002 jdolecek

Move the joy(4) manpage to MI location, too - it's not i386-only.
Pointed out by Thomas Klausner, thanks :)


# 1.244 06-Jan-2002 jmcneill

Add manual page for esa(4)


# 1.243 03-Jan-2002 augustss

Add ustir(4) man page.


# 1.242 02-Jan-2002 augustss

Add udsbr(4).


# 1.241 01-Jan-2002 augustss

Add radio(4) man pages.


# 1.240 28-Dec-2001 augustss

Update for uhidev(4).


# 1.239 12-Dec-2001 augustss

Add uirda(4).


# 1.238 10-Dec-2001 martin

Add documentation for the in-kernel pppoe implementation.


# 1.237 03-Dec-2001 augustss

Add a man page for the IrDA line discipline driver.


# 1.236 02-Dec-2001 augustss

Make a link from irda to irframe.


# 1.235 02-Dec-2001 augustss

Add cir(4) and oboe(4) man pages.


# 1.234 02-Dec-2001 augustss

Add irframe(4) man page.


# 1.233 18-Nov-2001 augustss

Add autri(4) man page.


# 1.232 16-Nov-2001 augustss

Add a man page for ehci(4) despite the driver not being finished yet.


# 1.231 07-Nov-2001 tsutsui

Add trm(4) man page.


# 1.230 20-Oct-2001 manu

Added clockctl.4


# 1.229 18-Oct-2001 jdolecek

Add emuxki manpage


# 1.228 29-Sep-2001 augustss

Add the esl driver.


# 1.227 22-Sep-2001 ad

Add manual page for dpti.


# 1.226 21-Sep-2001 ad

Tweak tc fb manual pages.


# 1.225 21-Sep-2001 gmcgarry

Add missing pages for NetBSD/alpha and co-ordinate pages between
NetBSD/alpha and NetBSD/pmax. Some other minor fixes.


# 1.224 10-Sep-2001 gmcgarry

Add agp(4) man page.


# 1.223 27-Aug-2001 thorpej

Manual page for the new pcn driver.


# 1.222 25-Aug-2001 thorpej

Typo in a revious reg.


# 1.221 25-Aug-2001 thorpej

Manual page for the amhphy driver.


# 1.220 25-Aug-2001 thorpej

Manual page for the pnaphy HomePNA PHY driver.


# 1.219 24-Aug-2001 thorpej

Add manual page for the Altima AC101 PHY driver.


# 1.218 17-Aug-2001 thorpej

Manual page for the bridge driver.


# 1.217 17-Aug-2001 wiz

Descend into man4.sun2


# 1.216 30-Jul-2001 ad

Add a driver for Mylex AcceleRAID and eXtremeRAID controllers with v6
firmware. Based off the FreeBSD driver, and re-worked by tls, erh and I.


# 1.215 25-Jul-2001 thorpej

Manual page for the makphy driver.


# 1.214 25-Jul-2001 thorpej

Add a manual page for the dmphy driver.


# 1.213 25-Jul-2001 thorpej

Add a manual page for the bmtphy driver.


# 1.212 25-Jul-2001 thorpej

Add a manual page for the glxtphy driver.


# 1.211 25-Jul-2001 thorpej

Add a manual page for the gentbi driver.


# 1.210 25-Jul-2001 thorpej

Manual page for the Sundance/Tamarack TC9021 Gigabit Ethernet driver.


# 1.209 09-Jul-2001 wiz

Since ncr(4) isn't in-tree anymore, dump its man page too.


# 1.208 01-Jul-2001 gmcgarry

In-kernel device configuration manager - allows modification
of device locators at run-time.

Written by Mats O Jansson <moj@stacken.kth.se>. Reworked by
Jun-ichiro itojun Hagino <itojun@netbsd.org>.


# 1.207 28-Jun-2001 fredette

Document the `sc' SCSI driver.


# 1.206 19-Jun-2001 thorpej

Manual page for the ste(4) driver.


# 1.205 18-Jun-2001 thorpej

Add sf(4) manual page.


# 1.204 13-Jun-2001 bjh21

Add hcide(4).


# 1.203 09-Jun-2001 bjh21

Like the driver, dtide(4) is now MI.


# 1.202 04-Jun-2001 tsutsui

Add man page for iha(4). From OpenBSD.


# 1.201 01-Jun-2001 thorpej

Manual page for the brgphy driver.


# 1.200 31-May-2001 thorpej

Add nsphyter(4) and gphyter(4) manual pages.


# 1.199 27-May-2001 pk

Add an sbus(4) page.


# 1.198 18-May-2001 thorpej

Add manual pages for the sip(4) and gsip(4) Ethernet drivers.


# 1.197 12-May-2001 tsutsui

Add a manual page for osiop(4).


# 1.196 21-Apr-2001 jdolecek

Add a hack to install i386/ed(4) link to edc(4) manpage. This seems
to work okay and doesn't have any install ordering problems.


# 1.195 20-Apr-2001 jdolecek

Merge arm32-specific bits of com(4) manpage to i386 com(4) manpage
and form a MI com(4) manpage.


# 1.194 19-Apr-2001 jdolecek

Use "edc" instead of "dasd". As pointed out by Soren, dasd doesn't
mean anything special in IBM-talk. And edc better matches prior art, too.


# 1.193 19-Apr-2001 jdolecek

Add very simplistic dasd(4) manpage. Link ed(4) to dasd(4) for i386 (is there
a better way?)


# 1.192 10-Apr-2001 bjh21

Create MI manpages for ea(4) and eb(4) and remove the arm{26,32}-specific ones.


# 1.191 09-Apr-2001 wiz

Rename i4bisp.4 to i4bisppp.4.


# 1.190 06-Apr-2001 wiz

Every man section begins with a single page:
Add share/man/{cat,man}4/macppc, and intro.{0,4} there.
Thanks to Tsubai Masanari for help in writing it.


# 1.189 03-Apr-2001 jdolecek

build se(4) manpage and add it do distrib lists


# 1.188 30-Mar-2001 minoura

Manual page for Yamaha YMF724/740/744/754 PCI audio driver.


# 1.187 30-Mar-2001 kleink

Add a strawman hme(4) manual page; with input from Matthew Green.


# 1.186 28-Mar-2001 ichiro

add man file of umct driver


# 1.185 21-Mar-2001 mjacob

Corrects PR misc/11479- add an ses(4) man page.


# 1.184 16-Mar-2001 jdolecek

add elmc(4) manpage, and xref it from ai(4), ef(4), ix(4)


# 1.183 04-Feb-2001 ad

Add a driver for the Mylex DAC960 family (including DEC SWXCR).


# 1.182 31-Jan-2001 augustss

Add umidi(4).


# 1.181 28-Jan-2001 nathanw

Edit pcppi(4) for clarity.
Make spkr(4) link to the speaker man page, not the pcppi man page.


# 1.180 23-Jan-2001 augustss

Add and xfer uplcom(4).


# 1.179 22-Jan-2001 augustss

Add clct(4) man page.


# 1.178 11-Jan-2001 augustss

Add usscanner(4).


# 1.177 08-Jan-2001 rh

Add manpage for 'esm' PCI audio driver


# 1.176 05-Jan-2001 martin

Enable new imported ISDN4BSD man pages.


# 1.175 02-Jan-2001 augustss

Add uyap(4) man page.


# 1.174 14-Dec-2000 onoe

add an.4


# 1.173 28-Nov-2000 thorpej

Manual page for the auich(4) driver.


# 1.172 26-Nov-2000 ad

lsu -> ld, by popular request.


# 1.171 08-Nov-2000 ad

Add documentation for iop and iopsp drivers. XXX Needs more beef.


# 1.170 05-Nov-2000 thorpej

Manual page for the NeoMagic 256 driver.


# 1.169 04-Nov-2000 thorpej

Manual page for the PC-Weasel driver.


# 1.168 23-Oct-2000 enami

Add lsu.4 actually.


# 1.167 19-Oct-2000 ad

- ca -> lsu
- Document twe.


# 1.166 28-Sep-2000 thorpej

Manual page for the vlan(4) interface.


# 1.165 23-Sep-2000 augustss

Add uscanner(4) man page.


# 1.164 26-Jul-2000 augustss

Add an ofisa(4) man page. (Who is it that adds all these drivers, but no
man pages? :)
XXX Why are com(4), joy(4), and lpt(4) in the i386 subdirectory?


# 1.163 25-Jul-2000 pk

Add driver man pages for Mostek MK48TXX and Intersil7170 time-of-day clocks.


# 1.162 24-Jul-2000 ad

Install ioat.4.


# 1.161 13-Jul-2000 mycroft

Link dty.4 to tty.4.


Revision tags: netbsd-1-5-base
# 1.160 16-Jun-2000 msaitoh

branches: 1.160.2;
remove netconfig.4 and rpc.4


# 1.159 10-Jun-2000 veego

One eisa.4 entry is enough.
Only noticed because make failed with:
install -r -c -o bin -g bin -m 444 eisa.cat4 eisa.cat4 /usr/share/man/cat4/eisa.


# 1.158 05-Jun-2000 gmcgarry

New driver for Xircom CreditCard PCMCIA Ethernet. Replaces xe driver which
didn't work. Renamed to avoid clash with next68k network driver.


# 1.157 03-Jun-2000 veego

Add netconfig.4 and rpc.4.
And format the entries a little bit.


# 1.156 28-May-2000 augustss

Add mca(4) man page. Xref and add some tr(4) info.


Revision tags: minoura-xpg4dl-base
# 1.155 17-May-2000 thorpej

branches: 1.155.2;
Manual page for the Cyclades-Z mutli-port serial adapter driver.


# 1.154 15-May-2000 bouyer

Add a man page for siop and xref it.


# 1.153 09-May-2000 bjh21

Initial commit of arm26 port


# 1.152 08-May-2000 joda

VIA VT82C686A hardware monitor


# 1.151 07-May-2000 wiz

add man page for bktr(4)


# 1.150 06-May-2000 augustss

Add pas(4) man page.


# 1.149 03-May-2000 augustss

Make some more links.


# 1.148 03-May-2000 augustss

Move bba(4) man page since it works for both alpha and pmax.


# 1.147 02-May-2000 augustss

Add a very short man page for mainbus (following my philosophy that
every device in the config file should have a man page).


# 1.146 01-May-2000 augustss

Add cms(4) man page.


# 1.145 30-Apr-2000 augustss

Add cmpci(4) man page.


# 1.144 27-Apr-2000 msaitoh

rl.4 -> rtk.4


# 1.143 19-Apr-2000 itojun

add stf(4), for stf (6to4) pseudo interface.


# 1.142 16-Apr-2000 perry

add uftdi.4 (it was missing from the makefile)


# 1.141 14-Apr-2000 augustss

Add urio(4) man page.


# 1.140 09-Apr-2000 augustss

Add upl(4) man page.


# 1.139 31-Mar-2000 tsarna

Man page for auvia(4). Also xref fms(4) from audio(4).


# 1.138 30-Mar-2000 augustss

Add uvisor(4).


# 1.137 28-Mar-2000 ws

Provide some form of documentation for IPKDB.


# 1.136 18-Mar-2000 augustss

Add a rudimentary man page for the nca driver.
(Why do people not do this when they add drivers?)


# 1.135 16-Mar-2000 ad

Documentation for cac/ca devices.


# 1.134 27-Feb-2000 groo

Addition of lm.4 and envsys.4


# 1.133 12-Feb-2000 fair

split out pcic.4 tcic.4 from pcmcia.4
add pcmcom.4 and adjust Makefile to suit
all per PR 7603


# 1.132 12-Feb-2000 fair

Link le.4 with bicc.4 depca.4 and nele.4 - ISA le variants


# 1.131 11-Feb-2000 fair

PR 7603 contained half a dozen new man pages. Big thanks to Gregory McGarry
for doing the intial leg work. I did a little driver reading and modified
the pages some more, plus merged in a little stuff for de.4. This isn't all
of it yet - I'm just gonna commit what I've got done, and get the rest after
I've had some sleep.


# 1.130 11-Feb-2000 fair

Intial commit of a de.4 man page to answer PR 5759.
This page is a quick job which should be reviewed for accuracy.


# 1.129 09-Feb-2000 drochner

add manpage for the if_ti Gigabit Ethernet driver, from FreeBSD,
with slight modifications


# 1.128 07-Feb-2000 bouyer

Add man page for realtek and rhine ethernet drivers, update the thunderlan
one to current reality.


# 1.127 03-Feb-2000 dante

Add adw driver man page


# 1.126 25-Jan-2000 augustss

Update for the ucom(4) addition.


# 1.125 24-Jan-2000 ad

Install dpt(4).


# 1.124 24-Jan-2000 augustss

Add ray(4).


# 1.123 23-Jan-2000 drochner

speaker(4) is MI


# 1.122 16-Jan-2000 augustss

Add man pages for Bill Paul's USB-Ethernet adapter drivers.
The actual drivers should appear within a few days.


# 1.121 05-Jan-2000 chopps

Add man page for ntwoc


Revision tags: wrstuden-devbsize-19991221 wrstuden-devbsize-base
# 1.120 21-Dec-1999 fair

Merged le.4 man pages from amiga, hp300, i386, pmax, sparc, and sun3.
This solves PR 7142

Added configuration information from other GENERIC kernels, including
news68k, newsmips, atari, alpha, and vax.

Added text explaining "dropping chained buffer" diagnostic in more detail;
this solves PR 6230 and partially deals with PR 6475


# 1.119 20-Dec-1999 itojun

add ip6(4) and icmp6(4).


# 1.118 11-Dec-1999 augustss

Fix some typos and xrefs.
Add CS4280 man page. Drier will be added shortly.


# 1.117 29-Nov-1999 itojun

sync cnw(4) manpage with reality on NetBSD.


# 1.116 28-Nov-1999 scw

Add man4.mvme68k subdirectory.


# 1.115 15-Nov-1999 augustss

Fix spelling of mhzc


# 1.114 14-Nov-1999 augustss

Add mbe man page.


# 1.113 14-Nov-1999 augustss

Add cardbus.4


# 1.112 14-Nov-1999 augustss

Provide a rudimentary man page for the mhzc driver.


# 1.111 07-Nov-1999 dmcmahill

add zero(4)


Revision tags: comdex-fall-1999-base
# 1.110 05-Nov-1999 thorpej

branches: 1.110.2;
Manual page for the `tlp' driver. Extremely verbose. But, it's worth
a read just in case you're curious why the driver is so complicated.


# 1.109 04-Nov-1999 sommerfeld

Add awi(4) man page.


# 1.108 01-Nov-1999 augustss

Add Forte Media FM801 man page.


# 1.107 16-Sep-1999 augustss

branches: 1.107.2;
Update MIDI man page a little.


# 1.106 13-Sep-1999 augustss

Make uhub(4) a link to usb(4).


# 1.105 13-Sep-1999 augustss

Add ohci(4) and uhci(4) man pages that have existed for a year.


# 1.104 08-Sep-1999 hubertf

Add phy.4 as a link to mii.4


# 1.103 08-Sep-1999 soren

Sync with dev/mii.


# 1.102 08-Sep-1999 soren

Sync with dev/mii.


# 1.101 05-Sep-1999 soren

Add iophy.4 and tqphy.4.


# 1.100 29-Aug-1999 augustss

Note addition of umass driver.


# 1.99 23-Aug-1999 augustss

Make atapi(4) a link to scsi(4).


# 1.98 16-Aug-1999 augustss

Make and install the wi(4) man page.


# 1.97 16-Aug-1999 augustss

Add umodem device.


# 1.96 01-Aug-1999 augustss

Add mpu(4) man page.


# 1.95 29-Jul-1999 augustss

Add the wsmux pseudo device.


# 1.94 17-Jul-1999 itojun

add manpage for faith pseudo interface (which is for
IPv6-to-IPv4 tcp relay translation).


# 1.93 12-Jul-1999 kleink

Add a driver for the ESS Technology Solo-1 PCI AudioDrive line of chips.


# 1.92 01-Jul-1999 itojun

add IPv6/IPsec manpage into MAN


# 1.91 27-Jun-1999 augustss

Make links from audio to sound and mixer.


# 1.90 29-Apr-1999 bad

Add a basic man page for the tr driver.


# 1.89 21-Apr-1999 drochner

-pckbc0 -> pckbc*
-add pckbc(4) and pcppi(4) manpages
-split pms(4i386) driver manpage into an opms(4i386) and an mi pms(4)
-add some MLINKS
-various fixes/additions


# 1.88 07-Apr-1999 fair

Create an ex(4) man page from a little driver reading. Very bare bones;
needs to have the diagnostic list explained, and the media support
list filled out before it gets pulled up to the 1.4 branch.

However, it's here to answer PR#6870


Revision tags: netbsd-1-4-base
# 1.87 28-Mar-1999 hwr

branches: 1.87.2;
Enable ipip.4


# 1.86 22-Mar-1999 drochner

add some manpages for wscons framework and devices


# 1.85 16-Mar-1999 jwise

Add pcscp (AMD PCscsi) man page from Izumi Tsutsui <tsutsui@ceres.dti.ne.jp>
closes PR misc/7026


# 1.84 16-Dec-1998 christos

Add Byte Runner Technologies TC-400 and TC-800 driver doc from Eric S. Hvozda


# 1.83 10-Dec-1998 augustss

Add sv man page.


# 1.82 13-Nov-1998 oster

RAIDframe, version 1.1, from the Parallel Data Laboratory at
Carnegie Mellon University. Full RAID implementation, including
levels 0, 1, 4, 5, 6, parity logging, and a few other goodies.
Ported to NetBSD by Greg Oster.

First cut at a reasonable man-page.


# 1.81 04-Nov-1998 bouyer

Make this man page MI (model from the esp man page).
Decription for ISA, ISApnp, pcmcia controllers as well as arm32 and atari
specific controllers. Please correct if I missed some !


# 1.80 04-Nov-1998 thorpej

Manual pages for the PHY drivers.


# 1.79 04-Nov-1998 thorpej

Manual page for the MAC-independent MII framework.


# 1.78 03-Nov-1998 thorpej

Manual page for fxp driver.


# 1.77 19-Oct-1998 bouyer

New man pages for the ide drivers. More verbose notes about ATAPI in
scsi(4).
The wdc(4) man page is i386-only. Other ports with a wdc front end should
add a manual page as well.


# 1.76 30-Sep-1998 jonathan

Copy man/man4.vax/mtio.4 to man4/mtio.4, keeping revision history this time.
Update Makefiles to match.
Remove man4.vax/mtio.4.


# 1.75 29-Sep-1998 jonathan

Add missing ess.4 man page (used in comp set)


# 1.74 13-Sep-1998 hwr

Manpage for gre network interface.


# 1.73 18-Aug-1998 augustss

Add OPL man page.


# 1.72 09-Aug-1998 thorpej

First cut at ifmedia documentation.


# 1.71 06-Aug-1998 augustss

Add a midi(4) man page.


# 1.70 26-Jul-1998 augustss

Fix wscons installation.


# 1.69 26-Jul-1998 augustss

Add wscons(4) man page and xref it from USB driver pages.


# 1.68 12-Jul-1998 augustss

Add USB support. Supported so far:
* UHCI and OHCI host controllers on PCI
* Hubs
* HID devices withe special drivers for mouse and keyboard
* Printers


# 1.67 09-Jul-1998 mjacob

add isp(4) man page


# 1.66 01-Jul-1998 cgd

add a quickly-thrown-together manual page for 'puc'


# 1.65 19-Jun-1998 fair

add scsi.4 ss.4 ch.4 to Makefile (I forgot)


# 1.64 06-Jun-1998 augustss

Add Aria driver.


# 1.63 27-May-1998 matt

fix botch I made when adding fta.4


# 1.62 27-May-1998 matt

Add fta.4 link


# 1.61 21-May-1998 augustss

Add ym.4 man page.


# 1.60 14-May-1998 kml

Added man page for the RoadRunner HIPPI driver.


# 1.59 07-May-1998 fair

document si & sw drivers


# 1.58 06-May-1998 augustss

Add eap.4 (and reformat the lines)


# 1.57 11-Feb-1998 gwr

Remove man?.sun3x


# 1.56 24-Dec-1997 jeremy

Added sun3x subdirectory.


# 1.55 15-Nov-1997 wrstuden

Don't forget to make atalk.4 now that we have it


# 1.54 11-Nov-1997 augustss

Add a first version of a PCMCIA man page.


# 1.53 11-Nov-1997 thorpej

Add a manual page for the "en" driver.


# 1.52 11-Nov-1997 thorpej

Add a manual page for the "lc" driver.


# 1.51 11-Nov-1997 thorpej

Add manual page for the "sm" device driver.


# 1.50 10-Nov-1997 thorpej

Manual pages for "ec" and "we" drivers.


# 1.49 31-Oct-1997 gwr

Add zstty.4


# 1.48 30-Oct-1997 bouyer

Add a man page for the thunderlan driver.


Revision tags: netbsd-1-3-base
# 1.47 20-Oct-1997 thorpej

branches: 1.47.2;
Add a manual page for the "ne" driver.


# 1.46 15-Oct-1997 explorer

build rnd(4)


# 1.45 11-Oct-1997 mycroft

Use bsd.man.mk and bsd.subdir.mk as appropriate.


# 1.44 08-Oct-1997 augustss

Build the guspnp man page.


# 1.43 06-Oct-1997 hubertf

imp.4 deleted


# 1.42 23-Jun-1997 jtk

add esp.4


# 1.41 22-Jun-1997 mrg

move man pages into share/man.


# 1.40 27-Apr-1997 jonathan

Add isapnp(4) man page.


# 1.39 11-Apr-1997 mikel

add md(4) page for memory disk pseudo-device


# 1.38 24-Feb-1997 jonathan

Make WD-7000 manpage.


# 1.37 24-Feb-1997 jonathan

Build isa, pci manpages.


# 1.36 23-Feb-1997 jonathan

* Move man pages for machine-independent ISA device drivers (that
don't conflict with other MD manpages) from src/share/man/man4/man4.i386
to src/share/man/man4.
Leave drivers with conflicting names (com, ed, ie, le lpt, wd) in
man4.i386/ for now.
* Remove i386 title tag; leave dates untouched, as contents hasn't changed..
* RCSid police


# 1.35 18-Feb-1997 jonathan

Section 4 EISA summary manual page.


# 1.34 18-Feb-1997 jonathan

Move manpages for MI ahb, bha, ep, and uha from man4/man4.i36 to man4.
Add RCS ids.


# 1.33 17-Feb-1997 jonathan

Section 4 manual page for Matt Thomas' Digital PDQ (PCI fpa, EISA fea)
FDDI drivers. From Matt, without revision info.


# 1.32 15-Jan-1997 mikel

move ncr.4 from man4.i386 to MI man4


# 1.31 30-Dec-1996 mikel

Install tun(4); fixes PR misc/3068.


# 1.30 21-Oct-1996 perry

Add options(4), and re-jigger the MAN and SUBDIR lines in the file.


# 1.29 17-Oct-1996 perry

removed tahoe refs because we have no tahoe port


# 1.28 16-Oct-1996 explorer

Add st.4, edited by Jon Buller <jonb@metronet.com>


# 1.27 13-Aug-1996 explorer

Add man pages for cd, uk, and sd scsi devices. More on the way, and these
could still use a little bit of touchup. I don't think there is any
misinformation in these, but you never know. FreeBSD has a better MI
scsi than we do. Partial fix for misc/2008. The author of that pr
is willing to help a bit as well.


# 1.26 11-Aug-1996 jonathan

Create man4.pmax.
Note: Some manpages are for drivers shared with Alpha; should rewrite
accordingly and move to a better location.


# 1.25 10-Aug-1996 explorer

add somewhat simple man pages for ppp(4) and sl(4). Closes a few pr's and
makes the world a better place.


# 1.24 10-Jul-1996 explorer

Add man page aic7xxx driver ; from pr port-i386/2600
That pr put this file in man4.i386, but since the driver isn't i386
specific, I thought it should go here instead.


# 1.23 26-Jun-1996 jonathan

Add manual page for STRIP driver for Metricom radios.
Add strip.4 to src/share/man/man4 Makefile.


Revision tags: netbsd-1-2-BETA netbsd-1-2-base
# 1.22 28-Mar-1996 mark

branches: 1.22.4;
Make the man4.arm32 subdirectory.


# 1.21 30-Dec-1995 thorpej

Add a vnd(4) manual page and make vnconfig(8) reference it. Fixes
PR #445.


# 1.20 28-Nov-1995 jtc

merge in changes from 1.1 release branch


# 1.19 12-Nov-1995 pk

audio(4) man page from John Kohl (submitted in PR#1752).


Revision tags: netbsd-1-1-base
# 1.18 08-Aug-1995 gwr

branches: 1.18.2;
Add man4.sun3


# 1.17 22-Jun-1995 phil

Adding man4.pc532 and contents.


# 1.16 22-Dec-1994 cgd

specify man pages the new way.


# 1.15 30-Nov-1994 jtc

Merged with 4.4lite.
Changed to conform to NetBSD's new RCS Id convention.


# 1.14 16-Sep-1994 mycroft

Add man4.amiga.


# 1.13 04-Aug-1994 mycroft

Install ccd(4).


Revision tags: netbsd-1-0-base
# 1.12 01-Jul-1994 deraadt

branches: 1.12.2;
sparc man pages from 4.4-lite


# 1.11 09-Apr-1994 glass

found a man page for tb(4)...moved from 4.vax to 4.general


# 1.10 14-Feb-1994 briggs

Put SUBDIR in alphabetical order.


# 1.9 14-Feb-1994 briggs

Add man4.mac68k to subdirs.


# 1.8 31-Jul-1993 mycroft

Add RCS indentifiers.


# 1.7 21-Jul-1993 brezak

kadb is depricated. See ddb instead.


Revision tags: netbsd-0-9-RELEASE netbsd-0-9-BETA netbsd-0-9-ALPHA2 netbsd-0-9-ALPHA netbsd-0-9-base
# 1.6 15-Jul-1993 brezak

Man page for DDB


# 1.5 08-Jun-1993 cgd

add LKM man pages


# 1.4 27-Apr-1993 glass

adding man page that was in ftp.uu.net:bsd-sources


Revision tags: netbsd-0-8 netbsd-alpha-1
# 1.3 09-Apr-1993 cgd

fixed typo


# 1.2 09-Apr-1993 cgd

fixed epsilon problem in tp man page, added bpf man page.


# 1.1 21-Mar-1993 cgd

branches: 1.1.1;
Initial revision