CVS log for src/share/man/man4/Makefile
Up to [cvs.NetBSD.org] / src / share / man / man4
Request diff between arbitrary revisions
Keyword substitution: kv
Default branch: MAIN
Revision 1.737: download - view: text, markup, annotated - select for diffs
Mon Nov 4 20:43:37 2024 UTC (5 weeks, 1 day ago) by brad
Branches: MAIN
CVS tags: HEAD
Diff to: previous 1.736: preferred, colored
Changes since revision 1.736: +3 -3
lines
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.
Revision 1.736: download - view: text, markup, annotated - select for diffs
Sun Oct 20 14:22:37 2024 UTC (7 weeks, 2 days ago) by mlelstv
Branches: MAIN
Diff to: previous 1.735: preferred, colored
Changes since revision 1.735: +3 -2
lines
Add ietp(4) man page.
Revision 1.730.2.4: download - view: text, markup, annotated - select for diffs
Wed Oct 9 13:25:11 2024 UTC (2 months ago) by martin
Branches: netbsd-10
Diff to: previous 1.730.2.3: preferred, colored; branchpoint 1.730: preferred, colored; next MAIN 1.731: preferred, colored
Changes since revision 1.730.2.3: +3 -2
lines
Pull up following revision(s) (requested by riastradh in ticket #939):
distrib/sets/lists/debug/module.md.amd64: revision 1.18
sys/modules/Makefile: revision 1.292
lib/libc/gen/arc4random.c: revision 1.34
lib/libc/gen/arc4random.c: revision 1.35
lib/libc/gen/arc4random.c: revision 1.36
lib/libc/gen/arc4random.c: revision 1.37
sys/kern/kern_entropy.c: revision 1.70
lib/libc/gen/arc4random.c: revision 1.38
sys/kern/kern_entropy.c: revision 1.71
lib/libc/gen/getentropy.3: revision 1.8
distrib/sets/lists/modules/md.amd64: revision 1.103
share/man/man4/rnd.4: revision 1.42
share/man/man4/rnd.4: revision 1.44
lib/libc/include/arc4random.h: revision 1.1
distrib/sets/lists/man/mi: revision 1.1786
sys/arch/i386/conf/GENERIC: revision 1.1258
sys/modules/acpivmgenid/acpivmgenid.ioconf: revision 1.1
sys/arch/amd64/conf/ALL: revision 1.190
distrib/sets/lists/debug/mi: revision 1.446
sys/arch/i386/conf/ALL: revision 1.521
lib/libc/gen/Makefile.inc: revision 1.219
distrib/sets/lists/debug/module.md.i386: revision 1.12
sys/dev/acpi/acpi_vmgenid.c: revision 1.1
sys/dev/acpi/acpi_vmgenid.c: revision 1.2
lib/libc/include/reentrant.h: revision 1.22
sys/arch/evbarm/conf/GENERIC64: revision 1.219
share/man/man4/Makefile: revision 1.735
distrib/sets/lists/modules/md.i386: revision 1.100
distrib/sets/lists/tests/mi: revision 1.1334
lib/libc/gen/arc4random.3: revision 1.22
sys/dev/acpi/files.acpi: revision 1.133
lib/libc/gen/arc4random.3: revision 1.23
tests/lib/libc/gen/t_arc4random.c: revision 1.1
sys/sys/entropy.h: revision 1.6
sys/arch/amd64/conf/GENERIC: revision 1.614
sys/modules/acpivmgenid/Makefile: revision 1.1
share/man/man4/acpivmgenid.4: revision 1.1
lib/libc/gen/Makefile.inc: revision 1.220
tests/lib/libc/gen/Makefile: revision 1.56
share/man/man4/acpivmgenid.4: revision 1.2
share/man/man4/acpivmgenid.4: revision 1.3
(all via patch)
Catch up with all the lint warnings since exit on warning was disabled.
Disable 'missing header declaration' and 'nested extern' warnings for now.
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
entropy(9): Factor out subroutines to reset and gather entropy.
`Reset' means we keep the data in the pool, but assume it had zero
entropy. `Gather' means we request samples from all on-demand
sources and wait for the synchronous ones to complete.
No functional change intended, other than to expose new symbols --
just preparation to expose these to acpivmgenid(4), so it can use
these when the VM host notifies us that we, the guest, have been
cloned.
PR kern/58632: getentropy(2) and arc4random(3) do not reseed on VM
fork
acpivmgenid(4): Reset and gather entropy on VM clone notification.
PR kern/58632: getentropy(2) and arc4random(3) do not reseed on VM
fork
arc4random(3): Reseed if system entropy epoch changes.
This can happen, for example, if the system is a VM instance, and the
VM is cloned.
This incurs the cost of a system call on every arc4random call, which
is unfortunate, but
1. we don't currently have a (machine-independent) mechanism for
exposing a read-only page to userland shared by the kernel to
enable a cheaper access path to the entropy epoch; and
2. the algorithm here -- a simple application of ChaCha -- is likely
also a bottleneck and could be much cheaper by
(a) using sys/crypto/chacha for machine-dependent vectorized
ChaCha code, and
(b) filling a buffer (somewhere between a cipher block and a page)
in a batch at a time, instead of running ChaCha to generate
only 32 bytes at a time.
So although this might be a performance hit, the security benefit is
worthwhile and we have a clear path to do better than reversing the
performance hit later.
PR kern/58632: getentropy(2) and arc4random(3) do not reseed on VM
fork
acpivmgenid(4): Nix BUGS that have been squashed.
Reference kern.entropy.epoch for the remaining bug (which is a
performance issue, not a security issue).
PR kern/58632: getentropy(2) and arc4random(3) do not reseed on VM
fork
entropy(9): Allow unprivileged reads of sysctl kern.entropy.epoch.
Applications need this in order to know when to reseed. (We should
also expose it through a page shared read-only with userland for
cheaper access, but until we do, let's let applications get at it
through sysctl.)
PR kern/58632: getentropy(2) and arc4random(3) do not reseed on VM
fork
arc4random.c: Fix test program.
This isn't wired up anywhere, but let's reduce the bitrot. It was
helpful in reminding me that kern.entropy.epoch was, for reasons I
can't remember, restricted to privileged access.
PR kern/58632: getentropy(2) and arc4random(3) do not reseed on VM
fork
amd64, evbarm, i386: Add acpivmgenid(4) to GENERIC.
PR kern/58632: getentropy(2) and arc4random(3) do not reseed on VM
fork
rnd(4): Document kern.entropy.epoch is unprivileged and elaborate.
Cross-reference acpivmgenid(4).
PR kern/58632: getentropy(2) and arc4random(3) do not reseed on VM
fork
arc4random(3): Note that arc4random respects kern.entropy.epoch.
PR kern/58632: getentropy(2) and arc4random(3) do not reseed on VM
fork
Add debug info for new acpivmgenid module
arc4random(3): Add automatic tests.
This verifies that:
- arc4random zeroes its state and reseeds itself on fork
- arc4random reseeds itself on entropy consolidation (e.g., VM clone)
- arc4random falls back to global state if it can't allocate local
state because address space limits cause mmap to fail
NOTE: This adds a new libc symbol __arc4random_global, but it's in
the reserved namespace and only used by t_arc4random, so no libc
minor bump.
PR kern/58632: getentropy(2) and arc4random(3) do not reseed on VM
fork
getentropy(3): Note intent to reseed on VM clone, and caveats.
Tidy markup and pacify some mandoc -Tlint complaints while here.
PR kern/58632: getentropy(2) and arc4random(3) do not reseed on VM
fork
Bump dates on man pages recently updated to mention VM clones.
PR kern/58632: getentropy(2) and arc4random(3) do not reseed on VM
fork
arc4random(3): Pacify some of lint's complaints.
PR kern/58632: getentropy(2) and arc4random(3) do not reseed on VM
fork
arc4random: suppress another lint warning
Revision 1.730.2.3: download - view: text, markup, annotated - select for diffs
Wed Oct 9 13:00:13 2024 UTC (2 months ago) by martin
Branches: netbsd-10
Diff to: previous 1.730.2.2: preferred, colored; branchpoint 1.730: preferred, colored
Changes since revision 1.730.2.2: +3 -2
lines
Pull up following revision(s) (requested by riastradh in ticket #936):
sys/dev/acpi/apei_einjvar.h: revision 1.1
sys/dev/acpi/apei_cper.h: revision 1.2
distrib/sets/lists/debug/module.md.i386: revision 1.9
sys/dev/acpi/apei_hest.c: revision 1.1
sys/modules/apei/Makefile: revision 1.1
sys/dev/acpi/apei_hest.c: revision 1.2
distrib/sets/lists/modules/md.amd64: revision 1.101
sys/dev/acpi/apei_hest.c: revision 1.3
distrib/sets/lists/modules/md.amd64: revision 1.102
sys/modules/apei/apei.ioconf: revision 1.1
sys/dev/acpi/apei_bert.c: revision 1.1
distrib/sets/lists/man/mi: revision 1.1785
sys/dev/acpi/apei_bertvar.h: revision 1.1
sys/dev/acpi/apei.c: revision 1.1
sys/dev/acpi/apei.c: revision 1.2
sys/dev/acpi/apei.c: revision 1.3
sys/modules/Makefile: revision 1.283
sys/modules/Makefile: revision 1.284
sys/dev/acpi/apei_reg.c: revision 1.1
sys/dev/acpi/apei_hestvar.h: revision 1.1
distrib/sets/lists/debug/module.md.i386: revision 1.10
sys/dev/acpi/apei_reg.c: revision 1.2
sys/dev/acpi/apei_reg.c: revision 1.3
sys/dev/acpi/apei_reg.h: revision 1.1
sys/dev/acpi/apei_reg.h: revision 1.2
sys/dev/acpi/apei_reg.h: revision 1.3
sys/dev/acpi/acpi_hed.c: revision 1.1
sys/dev/acpi/apei_einj.c: revision 1.1
sys/dev/acpi/apeivar.h: revision 1.1
sys/dev/acpi/apei_einj.c: revision 1.2
sys/dev/acpi/apei_einj.c: revision 1.3
sys/dev/acpi/apei_einj.c: revision 1.4
sys/dev/acpi/apei_einj.c: revision 1.5
share/man/man4/Makefile: revision 1.734
sys/dev/acpi/apei_einj.c: revision 1.6
sys/dev/acpi/apei_einj.c: revision 1.7
sys/dev/acpi/files.acpi: revision 1.131
sys/dev/acpi/files.acpi: revision 1.132
sys/dev/acpi/apei_interp.c: revision 1.1
sys/dev/acpi/apei_interp.c: revision 1.2
share/man/man4/acpihed.4: revision 1.1
sys/dev/acpi/apei_mapreg.c: revision 1.1
sys/dev/acpi/apei_interp.c: revision 1.3
share/man/man4/acpihed.4: revision 1.2
distrib/sets/lists/modules/md.i386: revision 1.98
sys/dev/acpi/apei_mapreg.c: revision 1.2
sys/dev/acpi/apei_interp.h: revision 1.1
sys/dev/acpi/apei_interp.c: revision 1.4
distrib/sets/lists/modules/md.i386: revision 1.99
sys/modules/acpihed/Makefile: revision 1.1
sys/dev/acpi/apei_mapreg.c: revision 1.3
sys/dev/acpi/apei_interp.h: revision 1.2
sys/arch/amd64/conf/ALL: revision 1.185
sys/dev/acpi/apei_mapreg.h: revision 1.1
sys/dev/acpi/apei_mapreg.c: revision 1.4
sys/arch/amd64/conf/ALL: revision 1.186
sys/dev/acpi/apei_erstvar.h: revision 1.1
sys/dev/acpi/apei_erst.c: revision 1.1
sys/dev/acpi/apei_erst.c: revision 1.2
sys/dev/acpi/apei_erst.c: revision 1.3
sys/arch/i386/conf/ALL: revision 1.516
share/man/man4/apei.4: revision 1.1
sys/arch/i386/conf/ALL: revision 1.517
share/man/man4/apei.4: revision 1.2
distrib/sets/lists/debug/module.md.amd64: revision 1.15
sys/modules/acpihed/acpihed.ioconf: revision 1.1
sys/dev/acpi/apei_hed.h: revision 1.1
distrib/sets/lists/debug/module.md.amd64: revision 1.16
sys/dev/acpi/apei_cper.h: revision 1.1
(all via patch)
apei(4): New driver for ACPI Platform Error Interfaces.
For now it is wired up only in x86 ALL kernels, and built as a module
for x86 and Arm. Once it gets a little more testing on machines with
APEI, I would like to flip it on by default.
PR kern/58046
apei(4): Pacify -Wsign-compare.
Assert that the parsing made forward progress too while here.
PR kern/58046
apei(4): Tweak some comments about the APEI interpreter language.
No functional change intended.
PR kern/58046
apei(4): Fix parsing checks for TRIGGER_ERROR action table.
The TableSize is size of the header plus the body, not just the body.
PR kern/58046
apei(4): Note some TODOs for EINJ and HEST.
No functional change intended, comments only.
PR kern/58046
acpihed(4): New driver for PNP0C33 to notify apei(4).
PNP0C33 denotes the ACPI Hardware Error Device, which exists only to
be a vector for event notifications.
PR kern/58046
acpihed(4): fix name in Dt, use Ql
apei(4): Plug memory leak on teardown of instruction interpreter.
PR kern/58046
apei(4): Fix indexing of multi-unit register access.
PR kern/58046
apei(4): Fix register chunk counting.
Now it will actually read and write the registers!
Have been updating and reloading the wrong module to test this, oops.
PR kern/58046
apei(4): Allow pre-mapping I/O registers too.
PR kern/58046
apei(4): Pre-map registers when compiling interpreter.
This way we don't have to worry about mapping them in nasty contexts
where access to uvm_km_alloc may not be allowed. Paves the way to
use ERST for saving dmesg on crash.
Exception: ACPI_ERST_MOVE_DATA still needs to do AcpiOsMapMemory.
We'll need to reserve a couple pages to avoid that.
PR kern/58046
apei(4): Simplify EINJ/ERST register access now that it's pre-mapped.
PR kern/58046
apei(4): Make sure to initialize *fatalp in apei_gesb_report.
PR kern/58046
apei: fix typos in comments
apei: fix typos in comments and snprintb bitfmt
apei(4): Fix uninitialized stack access in error branch.
PR kern/58046
apei(4), acpihed(4): Wire up man pages to build.
PR kern/58046: Missing APEI (ACPI Platform Error Interface) support
Revision 1.735: download - view: text, markup, annotated - select for diffs
Mon Aug 26 13:38:28 2024 UTC (3 months, 2 weeks ago) by riastradh
Branches: MAIN
Diff to: previous 1.734: preferred, colored
Changes since revision 1.734: +3 -2
lines
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
Revision 1.734: download - view: text, markup, annotated - select for diffs
Mon Aug 19 15:04:05 2024 UTC (3 months, 3 weeks ago) by riastradh
Branches: MAIN
Diff to: previous 1.733: preferred, colored
Changes since revision 1.733: +3 -2
lines
apei(4), acpihed(4): Wire up man pages to build.
PR kern/58046: Missing APEI (ACPI Platform Error Interface) support
Revision 1.730.2.2: download - view: text, markup, annotated - select for diffs
Sun Oct 8 13:19:33 2023 UTC (14 months ago) by martin
Branches: netbsd-10
CVS tags: netbsd-10-0-RELEASE,
netbsd-10-0-RC6,
netbsd-10-0-RC5,
netbsd-10-0-RC4,
netbsd-10-0-RC3,
netbsd-10-0-RC2,
netbsd-10-0-RC1
Diff to: previous 1.730.2.1: preferred, colored; branchpoint 1.730: preferred, colored
Changes since revision 1.730.2.1: +6 -6
lines
Pull up following revision(s) (requested by rin in ticket #393):
sys/dev/pci/igc/if_igc.c up to 1.3
sys/dev/pci/igc/if_igc.h up to 1.2
sys/dev/pci/igc/igc_api.c up to 1.2
sys/dev/pci/igc/igc_api.h up to 1.2
sys/dev/pci/igc/igc_base.c up to 1.2
sys/dev/pci/igc/igc_base.h up to 1.2
sys/dev/pci/igc/igc_defines.h up to 1.2
sys/dev/pci/igc/igc_evcnt.h up to 1.1
sys/dev/pci/igc/igc_hw.h up to 1.2
sys/dev/pci/igc/igc_i225.c up to 1.2
sys/dev/pci/igc/igc_i225.h up to 1.2
sys/dev/pci/igc/igc_mac.c up to 1.2
sys/dev/pci/igc/igc_mac.h up to 1.2
sys/dev/pci/igc/igc_nvm.c up to 1.2
sys/dev/pci/igc/igc_nvm.h up to 1.2
sys/dev/pci/igc/igc_phy.c up to 1.2
sys/dev/pci/igc/igc_phy.h up to 1.2
sys/dev/pci/igc/igc_regs.h up to 1.2
distrib/sets/lists/man/mi: revision 1.1766
sys/arch/amd64/conf/GENERIC: revision 1.606
sys/arch/evbppc/conf/DHT: revision 1.5
sys/arch/evbarm/conf/GENERIC64: revision 1.213
share/man/man4/Makefile: revision 1.733
sys/arch/amd64/conf/ALL: revision 1.181
share/man/man4/igc.4: revision 1.1
sys/dev/pci/files.pci: revision 1.447
sys/arch/amd64/conf/XEN3_DOM0: revision 1.200
doc/CHANGES (apply patch)
Add igc(4) for Intel I225/I226 series ethernet devices
Revision 1.733: download - view: text, markup, annotated - select for diffs
Wed Oct 4 07:51:36 2023 UTC (14 months, 1 week ago) by rin
Branches: MAIN
CVS tags: perseant-exfatfs-base-20240630,
perseant-exfatfs-base,
perseant-exfatfs
Diff to: previous 1.732: preferred, colored
Changes since revision 1.732: +6 -6
lines
igc(4): Add and hook manpage
Revision 1.730.2.1: download - view: text, markup, annotated - select for diffs
Thu Jul 13 09:07:37 2023 UTC (16 months, 4 weeks ago) by martin
Branches: netbsd-10
Diff to: previous 1.730: preferred, colored
Changes since revision 1.730: +2 -2
lines
Pull up following revision(s) (requested by gutteridge in ticket #230):
share/man/man4/npflog.4: revision 1.1
share/man/man4/npflog.4: revision 1.2
share/man/man4/Makefile: revision 1.732
distrib/sets/lists/man/mi: revision 1.1762
npflog.4: add a man page for the npflog device
Addresses PR misc/57441 from Taylor R Campbell. (Not yet hooked into
source sets, will be done separately.)
(Borrows heavily from the equivalent pflog.4 man page already in tree,
and so retains the original copyright attribution as well.)
npflog.4: add and adjust some details
Add details about the header structure (though the if_npflog.h file is
not presently installed and has a _KERNEL guard). Also adjust some
sentences (requested by riastradh@), and include the original OpenBSD
RCS ID, since much of this content shares that origin.
Add npflog.4 to sets
Revision 1.732: download - view: text, markup, annotated - select for diffs
Fri Jun 30 00:48:03 2023 UTC (17 months, 1 week ago) by gutteridge
Branches: MAIN
Diff to: previous 1.731: preferred, colored
Changes since revision 1.731: +2 -2
lines
Add npflog.4 to sets
Revision 1.731: download - view: text, markup, annotated - select for diffs
Thu Dec 22 11:05:54 2022 UTC (23 months, 2 weeks ago) by nat
Branches: MAIN
Diff to: previous 1.730: preferred, colored
Changes since revision 1.730: +3 -2
lines
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 1.730: download - view: text, markup, annotated - select for diffs
Mon Nov 21 21:24:00 2022 UTC (2 years ago) by brad
Branches: MAIN
CVS tags: netbsd-10-base
Branch point for: netbsd-10
Diff to: previous 1.729: preferred, colored
Changes since revision 1.729: +2 -2
lines
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.
Revision 1.729: download - view: text, markup, annotated - select for diffs
Thu Nov 17 19:20:05 2022 UTC (2 years ago) by brad
Branches: MAIN
Diff to: previous 1.728: preferred, colored
Changes since revision 1.728: +2 -2
lines
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.
Revision 1.728: download - view: text, markup, annotated - select for diffs
Fri Aug 12 11:15:41 2022 UTC (2 years, 4 months ago) by riastradh
Branches: MAIN
Diff to: previous 1.727: preferred, colored
Changes since revision 1.727: +2 -2
lines
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.)
Revision 1.727: download - view: text, markup, annotated - select for diffs
Sun Jul 10 19:49:24 2022 UTC (2 years, 5 months ago) by nia
Branches: MAIN
Diff to: previous 1.726: preferred, colored
Changes since revision 1.726: +5 -5
lines
Add a manual page for udl(4)
Revision 1.726: download - view: text, markup, annotated - select for diffs
Fri Jul 8 16:50:10 2022 UTC (2 years, 5 months ago) by nia
Branches: MAIN
Diff to: previous 1.725: preferred, colored
Changes since revision 1.725: +3 -3
lines
Add a man page for slurm(4)
Revision 1.725: download - view: text, markup, annotated - select for diffs
Fri Jul 8 08:59:33 2022 UTC (2 years, 5 months ago) by nia
Branches: MAIN
Diff to: previous 1.724: preferred, colored
Changes since revision 1.724: +2 -2
lines
Add a manual page for uintuos(4)
Revision 1.724: download - view: text, markup, annotated - select for diffs
Sun Jun 12 03:51:13 2022 UTC (2 years, 6 months ago) by tsutsui
Branches: MAIN
Diff to: previous 1.723: preferred, colored
Changes since revision 1.723: +2 -2
lines
Add luna68k specific section 4 man pages.
Taken from mostly OpenBSD/luna88k and partially NetBSD/hp300.
Revision 1.723: download - view: text, markup, annotated - select for diffs
Thu Mar 24 14:00:19 2022 UTC (2 years, 8 months ago) by manu
Branches: MAIN
Diff to: previous 1.722: preferred, colored
Changes since revision 1.722: +2 -2
lines
Add documentatiion for Intel GPIO driver igpio(4)
Revision 1.722: download - view: text, markup, annotated - select for diffs
Mon Jan 17 16:31:23 2022 UTC (2 years, 10 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.721: preferred, colored
Changes since revision 1.721: +4 -2
lines
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.
Revision 1.721: download - view: text, markup, annotated - select for diffs
Thu Jan 6 21:55:23 2022 UTC (2 years, 11 months ago) by nia
Branches: MAIN
Diff to: previous 1.720: preferred, colored
Changes since revision 1.720: +4 -4
lines
Add man pages for eqos(4), mcommphy(4)
lgtm jmcneill@
Revision 1.720: download - view: text, markup, annotated - select for diffs
Tue Dec 7 17:39:54 2021 UTC (3 years ago) by brad
Branches: MAIN
Diff to: previous 1.719: preferred, colored
Changes since revision 1.719: +2 -2
lines
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.
Revision 1.719: download - view: text, markup, annotated - select for diffs
Sat Nov 6 13:34:39 2021 UTC (3 years, 1 month ago) by brad
Branches: MAIN
Diff to: previous 1.718: preferred, colored
Changes since revision 1.718: +4 -4
lines
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.
Revision 1.718: download - view: text, markup, annotated - select for diffs
Thu Oct 14 13:54:45 2021 UTC (3 years, 1 month ago) by brad
Branches: MAIN
Diff to: previous 1.717: preferred, colored
Changes since revision 1.717: +3 -3
lines
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.
Revision 1.717: download - view: text, markup, annotated - select for diffs
Tue Oct 12 04:55:19 2021 UTC (3 years, 2 months ago) by msaitoh
Branches: MAIN
Diff to: previous 1.716: preferred, colored
Changes since revision 1.716: +2 -2
lines
Add hvn.4. OK'd by nonaka@.
Revision 1.716: download - view: text, markup, annotated - select for diffs
Sun Oct 3 17:27:02 2021 UTC (3 years, 2 months ago) by brad
Branches: MAIN
Diff to: previous 1.715: preferred, colored
Changes since revision 1.715: +2 -2
lines
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.
Revision 1.715: download - view: text, markup, annotated - select for diffs
Sun Aug 1 21:56:27 2021 UTC (3 years, 4 months ago) by andvar
Branches: MAIN
Diff to: previous 1.714: preferred, colored
Changes since revision 1.714: +3 -1
lines
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
Revision 1.714: download - view: text, markup, annotated - select for diffs
Tue Jun 29 10:22:37 2021 UTC (3 years, 5 months ago) by nia
Branches: MAIN
Diff to: previous 1.713: preferred, colored
Changes since revision 1.713: +2 -2
lines
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 1.712.2.1: download - view: text, markup, annotated - select for diffs
Mon May 31 22:15:08 2021 UTC (3 years, 6 months ago) by cjep
Branches: cjep_staticlib_x
Diff to: previous 1.712: preferred, colored; next MAIN 1.713: preferred, colored
Changes since revision 1.712: +2 -2
lines
sync with head
Revision 1.713: download - view: text, markup, annotated - select for diffs
Mon May 17 04:07:42 2021 UTC (3 years, 6 months ago) by yamaguchi
Branches: MAIN
CVS tags: cjep_sun2x-base1,
cjep_sun2x-base,
cjep_sun2x,
cjep_staticlib_x-base1
Diff to: previous 1.712: preferred, colored
Changes since revision 1.712: +2 -2
lines
Add a new link-aggregation pseudo interface named lagg(4)
- FreeBSD's lagg(4) based implementation
- MP-safe and MP-scalable
Revision 1.712: download - view: text, markup, annotated - select for diffs
Mon Mar 1 18:01:05 2021 UTC (3 years, 9 months ago) by jakllsch
Branches: MAIN
CVS tags: cjep_staticlib_x-base
Branch point for: cjep_staticlib_x
Diff to: previous 1.711: preferred, colored
Changes since revision 1.711: +2 -2
lines
install rge(4) manual
Revision 1.711: download - view: text, markup, annotated - select for diffs
Tue Oct 27 08:57:10 2020 UTC (4 years, 1 month ago) by ryo
Branches: MAIN
Diff to: previous 1.710: preferred, colored
Changes since revision 1.710: +3 -2
lines
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
Revision 1.710: download - view: text, markup, annotated - select for diffs
Wed Oct 14 10:19:11 2020 UTC (4 years, 1 month ago) by ryo
Branches: MAIN
Diff to: previous 1.709: preferred, colored
Changes since revision 1.709: +2 -2
lines
vmx(4) should be MI. moved to sys/dev/pci from sys/arch/x86/pci
Revision 1.709: download - view: text, markup, annotated - select for diffs
Sun Sep 27 13:31:04 2020 UTC (4 years, 2 months ago) by roy
Branches: MAIN
Diff to: previous 1.708: preferred, colored
Changes since revision 1.708: +2 -2
lines
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.
Revision 1.708: download - view: text, markup, annotated - select for diffs
Tue Sep 8 10:05:47 2020 UTC (4 years, 3 months ago) by yamaguchi
Branches: MAIN
Diff to: previous 1.707: preferred, colored
Changes since revision 1.707: +4 -4
lines
Added iavf(4) that is based on OpenBSD's iavf(4) implementation
reviewed by msaitoh@n.o and knakahara@n.o
Revision 1.707: download - view: text, markup, annotated - select for diffs
Thu Aug 20 21:36:00 2020 UTC (4 years, 3 months ago) by riastradh
Branches: MAIN
Diff to: previous 1.706: preferred, colored
Changes since revision 1.706: +2 -2
lines
Fill out WireGuard man pages.
Revision 1.706: download - view: text, markup, annotated - select for diffs
Sun Jul 26 15:13:09 2020 UTC (4 years, 4 months ago) by jdolecek
Branches: MAIN
Diff to: previous 1.705: preferred, colored
Changes since revision 1.705: +3 -1
lines
add rudimentary wwanc(4) manpage
Revision 1.680.2.5: download - view: text, markup, annotated - select for diffs
Tue Jul 7 10:29:05 2020 UTC (4 years, 5 months ago) by martin
Branches: netbsd-9
CVS tags: netbsd-9-4-RELEASE,
netbsd-9-3-RELEASE,
netbsd-9-2-RELEASE,
netbsd-9-1-RELEASE
Diff to: previous 1.680.2.4: preferred, colored; branchpoint 1.680: preferred, colored; next MAIN 1.681: preferred, colored
Changes since revision 1.680.2.4: +2 -2
lines
Pull up following revision(s) (requested by jmcneill in ticket #980):
sys/dev/pci/if_aq.c: revision 1.4
sys/dev/pci/if_aq.c: revision 1.5
sys/arch/amd64/conf/GENERIC: revision 1.553
sys/dev/pci/files.pci: revision 1.419
sys/arch/amd64/conf/XEN3_DOM0: revision 1.170
sys/dev/pci/if_aq.c: revision 1.9
share/man/man4/Makefile: revision 1.693
sys/dev/pci/pcidevs: revision 1.1411
share/man/man4/aq.4: revision 1.1
share/man/man4/aq.4: revision 1.3
sys/arch/i386/conf/ALL: revision 1.479
share/man/man4/aq.4: revision 1.4
sys/dev/pci/if_aq.c: revision 1.10
sys/dev/pci/files.pci: revision 1.421
sys/dev/pci/if_aq.c: revision 1.11
sys/dev/pci/if_aq.c: revision 1.12
sys/dev/pci/if_aq.c: revision 1.13
sys/dev/pci/if_aq.c: revision 1.14
sys/dev/pci/if_aq.c: revision 1.15
sys/dev/pci/if_aq.c: revision 1.16
sys/dev/pci/pcidevs: revision 1.1408
sys/arch/amd64/conf/ALL: revision 1.135
sys/net/ethertypes.h: revision 1.19
sys/arch/i386/conf/GENERIC: revision 1.1218
distrib/sets/lists/man/mi: revision 1.1668
sys/dev/pci/if_aq.c: revision 1.1
sys/dev/pci/if_aq.c: revision 1.2
sys/dev/pci/pcidevs: revision 1.1395
sys/dev/pci/if_aq.c: revision 1.3
sys/arch/evbarm/conf/GENERIC64: revision 1.125
Add the ETHERTYPE_QINQ for 802.1ad VLAN stacking
add Aquantia AQC 10G network adapters
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.
add aq(4)
Add Aquantia AQC100, AQC100S and D100.
add support VLAN HW filter
set/clear IFF_OACTIVE flag only on txring 0
make counters per queue
support internal PHY temperature sensor
Found by kUBSan:
- Use unsigned to avoid undefined behavior in aq_hw_init().
- Cast to unsigned to avoid undefined behavior in aq_set_mac_addr().
fix descriptions of register map in comment
return the ifmedia active status correctly even while the link is not up after attach.
pointed out by msaitoh@. thanks.
On FIBRE devices, there are times when linkstat interrupt doesn't occur?
reported from Andrius V. thanks.
- use polling instead of linkstat interrupt when FIBRE
- add AQ_FORCE_POLL_LINKSTAT options (not by default)
sort product table, and tabify
add support AQC100S and D100.
not tested, but they are probably the same as the AQC100.
Revision 1.705: download - view: text, markup, annotated - select for diffs
Sat May 16 13:46:10 2020 UTC (4 years, 6 months ago) by maya
Branches: MAIN
Diff to: previous 1.704: preferred, colored
Changes since revision 1.704: +2 -2
lines
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 1.656.2.3: download - view: text, markup, annotated - select for diffs
Tue Apr 21 18:42:01 2020 UTC (4 years, 7 months ago) by martin
Branches: phil-wifi
Diff to: previous 1.656.2.2: preferred, colored; branchpoint 1.656: preferred, colored; next MAIN 1.657: preferred, colored
Changes since revision 1.656.2.2: +2 -2
lines
Sync with HEAD
Revision 1.656.2.2: download - view: text, markup, annotated - select for diffs
Mon Apr 13 08:03:25 2020 UTC (4 years, 7 months ago) by martin
Branches: phil-wifi
Diff to: previous 1.656.2.1: preferred, colored; branchpoint 1.656: preferred, colored
Changes since revision 1.656.2.1: +26 -26
lines
Mostly merge changes from HEAD upto 20200411
Revision 1.680.2.4: download - view: text, markup, annotated - select for diffs
Sun Apr 12 08:44:42 2020 UTC (4 years, 8 months ago) by martin
Branches: netbsd-9
Diff to: previous 1.680.2.3: preferred, colored; branchpoint 1.680: preferred, colored
Changes since revision 1.680.2.3: +3 -4
lines
Pull up following revision(s) (requested by simonb in ticket #828):
share/man/man4/uxrcom.4: revision 1.1
distrib/sets/lists/man/mi: revision 1.1687
share/man/man4/uxrcom.4: revision 1.2
share/man/man4/ucom.4: revision 1.28
sys/dev/usb/uxrcom.c: revision 1.1
sys/dev/usb/umodem.c: revision 1.74
sys/dev/usb/umodem_common.c: revision 1.33
sys/dev/usb/ukyopon.c: revision 1.26
sys/dev/usb/files.usb: revision 1.173
share/man/man4/Makefile: revision 1.704
sys/dev/usb/usbdevs: revision 1.781
sys/dev/usb/usbdevices.config: revision 1.38
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.
Add NetBSD CVS tag.
Revision 1.704: download - view: text, markup, annotated - select for diffs
Sun Apr 12 01:10:54 2020 UTC (4 years, 8 months ago) by simonb
Branches: MAIN
CVS tags: phil-wifi-20200421
Diff to: previous 1.703: preferred, colored
Changes since revision 1.703: +3 -3
lines
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 1.703: download - view: text, markup, annotated - select for diffs
Sat Apr 4 15:39:13 2020 UTC (4 years, 8 months ago) by jdolecek
Branches: MAIN
CVS tags: phil-wifi-20200411,
phil-wifi-20200406
Diff to: previous 1.702: preferred, colored
Changes since revision 1.702: +2 -3
lines
remove SMBFS and nsmb/netsmb - userland part
Revision 1.702: download - view: text, markup, annotated - select for diffs
Sun Feb 9 16:06:17 2020 UTC (4 years, 10 months ago) by jmcneill
Branches: MAIN
CVS tags: is-mlppp-base,
is-mlppp
Diff to: previous 1.701: preferred, colored
Changes since revision 1.701: +2 -2
lines
Retire azalia(4).
Revision 1.701: download - view: text, markup, annotated - select for diffs
Wed Jan 29 18:39:04 2020 UTC (4 years, 10 months ago) by maya
Branches: MAIN
Diff to: previous 1.700: preferred, colored
Changes since revision 1.700: +2 -2
lines
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.
Revision 1.700: download - view: text, markup, annotated - select for diffs
Wed Jan 22 14:01:50 2020 UTC (4 years, 10 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.699: preferred, colored
Changes since revision 1.699: +2 -2
lines
I overlooked the esh(4) man page when removing HIPPI support; remove it
now. Thanks maxv@ for noticing and pointing it out.
Revision 1.699: download - view: text, markup, annotated - select for diffs
Mon Jan 20 18:38:17 2020 UTC (4 years, 10 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.698: preferred, colored
Changes since revision 1.698: +2 -3
lines
Remove FDDI support.
Revision 1.698: download - view: text, markup, annotated - select for diffs
Sun Jan 19 20:41:18 2020 UTC (4 years, 10 months ago) by riastradh
Branches: MAIN
Diff to: previous 1.697: preferred, colored
Changes since revision 1.697: +2 -2
lines
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.)
Revision 1.697: download - view: text, markup, annotated - select for diffs
Sun Jan 19 20:00:35 2020 UTC (4 years, 10 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.696: preferred, colored
Changes since revision 1.696: +2 -2
lines
Remove Token Ring support.
Revision 1.696: download - view: text, markup, annotated - select for diffs
Sun Jan 19 17:53:15 2020 UTC (4 years, 10 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.695: preferred, colored
Changes since revision 1.695: +2 -2
lines
Remove the de(4) driver, which has long since been supplanted by the
tlp(4) driver, which supports more chips and more board variants.
Revision 1.695: download - view: text, markup, annotated - select for diffs
Sun Jan 19 01:25:03 2020 UTC (4 years, 10 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.694: preferred, colored
Changes since revision 1.694: +2 -2
lines
Remove the strip(4) - Starmode Radio IP - pseudo-device driver. It is
long since obsolete.
Revision 1.694: download - view: text, markup, annotated - select for diffs
Fri Jan 17 15:00:20 2020 UTC (4 years, 10 months ago) by maya
Branches: MAIN
Diff to: previous 1.693: preferred, colored
Changes since revision 1.693: +1 -2
lines
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.
Revision 1.693: download - view: text, markup, annotated - select for diffs
Wed Jan 1 10:11:21 2020 UTC (4 years, 11 months ago) by ryo
Branches: MAIN
Diff to: previous 1.692: preferred, colored
Changes since revision 1.692: +2 -2
lines
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.
Revision 1.692: download - view: text, markup, annotated - select for diffs
Mon Dec 23 06:45:37 2019 UTC (4 years, 11 months ago) by maxv
Branches: MAIN
Diff to: previous 1.691: preferred, colored
Changes since revision 1.691: +2 -2
lines
Revert the removal of filemon.
Revision 1.691: download - view: text, markup, annotated - select for diffs
Wed Dec 18 07:37:18 2019 UTC (4 years, 11 months ago) by maxv
Branches: MAIN
Diff to: previous 1.690: preferred, colored
Changes since revision 1.690: +2 -2
lines
Retire filemon, discussed on tech-kern@.
Revision 1.690: download - view: text, markup, annotated - select for diffs
Tue Dec 10 12:08:52 2019 UTC (5 years ago) by yamaguchi
Branches: MAIN
Diff to: previous 1.689: preferred, colored
Changes since revision 1.689: +2 -2
lines
Ported driver for Intel Ethernet 700 series
reviewed by msaitoh and knakahara
Revision 1.680.2.3: download - view: text, markup, annotated - select for diffs
Mon Nov 25 20:47:25 2019 UTC (5 years ago) by martin
Branches: netbsd-9
CVS tags: netbsd-9-0-RELEASE,
netbsd-9-0-RC2,
netbsd-9-0-RC1
Diff to: previous 1.680.2.2: preferred, colored; branchpoint 1.680: preferred, colored
Changes since revision 1.680.2.2: +4 -3
lines
Pull up following revision(s) (requested by msaitoh in ticket #478):
sys/dev/mii/smscphy.c: revision 1.1
sys/arch/amd64/conf/ALL: revision 1.127
sys/arch/amd64/conf/ALL: revision 1.128
sys/dev/mii/files.mii: revision 1.52
sys/dev/mii/files.mii: revision 1.53
sys/arch/i386/conf/ALL: revision 1.473
share/man/man4/mii.4: revision 1.29
sys/arch/i386/conf/ALL: revision 1.474
sys/arch/amd64/conf/GENERIC: revision 1.543
sys/arch/amd64/conf/GENERIC: revision 1.544
sys/dev/mii/jmphyreg.h: revision 1.1
share/man/man4/Makefile: revision 1.687
share/man/man4/smscphy.4: revision 1.1
share/man/man4/Makefile: revision 1.688
sys/dev/mii/jmphy.c: revision 1.1
sys/dev/DEVNAMES: revision 1.324
sys/dev/DEVNAMES: revision 1.325
distrib/sets/lists/man/mi: revision 1.1661
sys/arch/i386/conf/GENERIC: revision 1.1214
distrib/sets/lists/man/mi: revision 1.1662
sys/arch/i386/conf/GENERIC: revision 1.1215
share/man/man4/jmphy.4: revision 1.1
share/man/man4/jme.4: revision 1.8
Add jmphy(4) from OpenBSD.
Add jmphy.4.
Port SMSC LAN87xx 10/100 Ethernet PHY driver from FreeBSD with some cleanup
and IFM_NONE support.
Revision 1.680.2.2: download - view: text, markup, annotated - select for diffs
Mon Nov 25 16:44:31 2019 UTC (5 years ago) by martin
Branches: netbsd-9
Diff to: previous 1.680.2.1: preferred, colored; branchpoint 1.680: preferred, colored
Changes since revision 1.680.2.1: +2 -2
lines
Pull up following revision(s) (requested by msaitoh in ticket #476):
sys/dev/pci/if_stgereg.h: revision 1.6
sys/arch/amd64/conf/ALL: revision 1.124
sys/dev/mii/files.mii: revision 1.51
share/man/man4/vge.4: revision 1.8
share/man/man4/vge.4: revision 1.9
distrib/sets/lists/man/mi: revision 1.1656
sys/arch/i386/conf/ALL: revision 1.471
share/man/man4/mii.4: revision 1.28
sys/dev/pci/if_stge.c: revision 1.71
sys/dev/mii/ipgphy.c: revision 1.1
sys/dev/mii/ipgphy.c: revision 1.2
share/man/man4/Makefile: revision 1.684
sys/dev/mii/ipgphy.c: revision 1.3
sys/dev/mii/ipgphyreg.h: revision 1.1
sys/dev/mii/ipgphy.c: revision 1.4
sys/dev/mii/ipgphyreg.h: revision 1.2
sys/dev/mii/ipgphy.c: revision 1.5
sys/dev/mii/ipgphyreg.h: revision 1.3
sys/dev/DEVNAMES: revision 1.322
sys/arch/i386/conf/GENERIC: revision 1.1211
sys/arch/amd64/conf/GENERIC: revision 1.537
share/man/man4/ipgphy.4: revision 1.1
share/man/man4/ipgphy.4: revision 1.2
Add support IC Plus IP1000* PHYs. PR/kern 42314 first reported by
Tomokazu HARADA and patch provided by Andrius V.
New sentence, new line.
Fix date. Add RCS Id.
KNF. No functional change.
STGE_PhyCtrl is not PHY register but MAC register, so use ukphy_status()
for IP1000A device.
- Use auto-negotiation when forcing 1000BASE-T.
- Add XXX comment for strange pause setting code. I suspect this is wrong.
- On my environments, 1000BASE-T half duplex doesn't work, so we might remove
IFM_1000T_HDX from this device in future.
- Define IPGPHY_SCR's address.
- Whitespace fix.
Add missing NetBSD RCS Id. Reported by Andrius V.
Revision 1.689: download - view: text, markup, annotated - select for diffs
Wed Nov 20 09:37:45 2019 UTC (5 years ago) by hikaru
Branches: MAIN
Diff to: previous 1.688: preferred, colored
Changes since revision 1.688: +2 -2
lines
Add opencrypto driver for Intel QuickAssist.
Revision 1.688: download - view: text, markup, annotated - select for diffs
Fri Nov 1 02:53:23 2019 UTC (5 years, 1 month ago) by msaitoh
Branches: MAIN
CVS tags: phil-wifi-20191119
Diff to: previous 1.687: preferred, colored
Changes since revision 1.687: +3 -2
lines
Port SMSC LAN87xx 10/100 Ethernet PHY driver from FreeBSD with some cleanup
and IFM_NONE support.
Revision 1.687: download - view: text, markup, annotated - select for diffs
Wed Oct 30 12:06:25 2019 UTC (5 years, 1 month ago) by msaitoh
Branches: MAIN
Diff to: previous 1.686: preferred, colored
Changes since revision 1.686: +2 -2
lines
Add jmphy(4) from OpenBSD.
Revision 1.686: download - view: text, markup, annotated - select for diffs
Mon Oct 28 02:56:40 2019 UTC (5 years, 1 month ago) by ozaki-r
Branches: MAIN
Diff to: previous 1.685: preferred, colored
Changes since revision 1.685: +4 -4
lines
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@
Revision 1.685: download - view: text, markup, annotated - select for diffs
Fri Oct 25 17:39:57 2019 UTC (5 years, 1 month ago) by martin
Branches: MAIN
Diff to: previous 1.684: preferred, colored
Changes since revision 1.684: +2 -2
lines
Add support for Nuvoton NCT5104D GPIO chips, as found on PC Engines APU
systems. From Andrew Doran in PR kern/54648.
Revision 1.684: download - view: text, markup, annotated - select for diffs
Mon Oct 7 11:53:40 2019 UTC (5 years, 2 months ago) by msaitoh
Branches: MAIN
Diff to: previous 1.683: preferred, colored
Changes since revision 1.683: +2 -2
lines
Add support IC Plus IP1000* PHYs. PR/kern 42314 first reported by
Tomokazu HARADA and patch provided by Andrius V.
Revision 1.680.2.1: download - view: text, markup, annotated - select for diffs
Mon Sep 23 07:04:40 2019 UTC (5 years, 2 months ago) by martin
Branches: netbsd-9
Diff to: previous 1.680: preferred, colored
Changes since revision 1.680: +2 -2
lines
Pull up following revision(s) (requested by jmcneill in ticket #230):
sys/dev/pci/files.pci: revision 1.415
distrib/sets/lists/man/mi: revision 1.1655
sys/dev/pci/if_mcx.c: revision 1.1
share/man/man4/Makefile: revision 1.683
share/man/man4/mcx.4: revision 1.1
sys/arch/evbarm/conf/GENERIC64: revision 1.107
sys/dev/pci/files.pci: revision 1.414
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.
add mcx attachment.
Correct mcx comment, drop mii dependency
Revision 1.683: download - view: text, markup, annotated - select for diffs
Sat Sep 21 14:04:12 2019 UTC (5 years, 2 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.682: preferred, colored
Changes since revision 1.682: +2 -2
lines
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.
Revision 1.682: download - view: text, markup, annotated - select for diffs
Fri Sep 20 10:34:54 2019 UTC (5 years, 2 months ago) by mrg
Branches: MAIN
Diff to: previous 1.681: preferred, colored
Changes since revision 1.681: +5 -3
lines
add mos(4) driver for Moschip MCS7730/MCS7830/MCS7832 usb ethernet.
ported from openbsd. usbnet version loses about 40% of code.
Revision 1.681: download - view: text, markup, annotated - select for diffs
Fri Aug 30 08:54:58 2019 UTC (5 years, 3 months ago) by mrg
Branches: MAIN
Diff to: previous 1.680: preferred, colored
Changes since revision 1.680: +2 -2
lines
document usbnet diagnostics in usbnet(4). remove all the no longer
present messages in specific drivers for the usbnet drivers.
Revision 1.656.2.1: download - view: text, markup, annotated - select for diffs
Mon Jun 10 22:05:39 2019 UTC (5 years, 6 months ago) by christos
Branches: phil-wifi
Diff to: previous 1.656: preferred, colored
Changes since revision 1.656: +18 -22
lines
Sync with HEAD
Revision 1.680: download - view: text, markup, annotated - select for diffs
Tue Mar 26 12:21:28 2019 UTC (5 years, 8 months ago) by pgoyette
Branches: MAIN
CVS tags: phil-wifi-20190609,
netbsd-9-base
Branch point for: netbsd-9
Diff to: previous 1.679: preferred, colored
Changes since revision 1.679: +3 -3
lines
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.
Revision 1.679: download - view: text, markup, annotated - select for diffs
Sun Mar 17 00:35:09 2019 UTC (5 years, 8 months ago) by tnn
Branches: MAIN
Diff to: previous 1.678: preferred, colored
Changes since revision 1.678: +2 -2
lines
add ssdfb(4) manual page
Revision 1.678: download - view: text, markup, annotated - select for diffs
Sat Feb 23 03:10:06 2019 UTC (5 years, 9 months ago) by kamil
Branches: MAIN
Diff to: previous 1.677: preferred, colored
Changes since revision 1.677: +2 -2
lines
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.
Revision 1.677: download - view: text, markup, annotated - select for diffs
Wed Feb 6 11:55:05 2019 UTC (5 years, 10 months ago) by rin
Branches: MAIN
Diff to: previous 1.676: preferred, colored
Changes since revision 1.676: +2 -2
lines
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 1.651.2.7: download - view: text, markup, annotated - select for diffs
Wed Dec 26 14:01:29 2018 UTC (5 years, 11 months ago) by pgoyette
Branches: pgoyette-compat
CVS tags: pgoyette-compat-merge-20190127
Diff to: previous 1.651.2.6: preferred, colored; branchpoint 1.651: preferred, colored; next MAIN 1.652: preferred, colored
Changes since revision 1.651.2.6: +4 -4
lines
Sync with HEAD, resolve a few conflicts
Revision 1.676: download - view: text, markup, annotated - select for diffs
Wed Dec 12 08:20:53 2018 UTC (6 years ago) by maxv
Branches: MAIN
CVS tags: pgoyette-compat-20190127,
pgoyette-compat-20190118,
pgoyette-compat-1226
Diff to: previous 1.675: preferred, colored
Changes since revision 1.675: +2 -2
lines
Add a NVMM(4) man page.
Revision 1.675: download - view: text, markup, annotated - select for diffs
Wed Dec 12 07:04:05 2018 UTC (6 years ago) by maxv
Branches: MAIN
Diff to: previous 1.674: preferred, colored
Changes since revision 1.674: +2 -2
lines
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.
Revision 1.637.2.4: download - view: text, markup, annotated - select for diffs
Fri Dec 7 17:11:37 2018 UTC (6 years ago) by martin
Branches: netbsd-8
CVS tags: netbsd-8-3-RELEASE,
netbsd-8-2-RELEASE,
netbsd-8-1-RELEASE,
netbsd-8-1-RC1
Diff to: previous 1.637.2.3: preferred, colored; branchpoint 1.637: preferred, colored; next MAIN 1.638: preferred, colored
Changes since revision 1.637.2.3: +2 -2
lines
Pull up following revision(s) (requested by bouyer in ticket #1129):
sys/arch/amd64/conf/XEN3_DOM0: revision 1.159
sys/arch/amd64/conf/GENERIC: revision 1.508
sys/arch/i386/conf/ALL: revision 1.458
sys/dev/ic/mfi.c: revision 1.60
sys/dev/pci/mpiireg.h: revision 1.1
distrib/sets/lists/man/mi: revision 1.1628
sys/dev/pci/mfii.c: revision 1.1,1.2 (adapted)
sys/arch/i386/conf/GENERIC: revision 1.1194
sys/dev/pci/mpii.c: revision 1.13
sys/dev/ic/mfireg.h: revision 1.9
share/man/man4/mfii.4: revision 1.1
share/man/man4/Makefile: revision 1.673 (patch)
sys/dev/pci/files.pci: revision 1.410
share/man/man4/mfii.4: revision 1.2
sys/arch/amd64/conf/ALL: revision 1.108
sys/arch/i386/conf/XEN3PAE_DOM0: revision 1.8 (patch, in XEN3_DOM0)
Add some definitions from OpenBSD, needed by the upcoming mfii driver.
No functionnal change.
-
Move registers definitions to a separate file, needed for the upcomning mpii
driver. No functionnal change.
-
Add mpii(4), a driver for LSI Megaraid Fusion controllers.
Ported from OpenBSD. This driver is MP-safe.
Note that the earlier fusion controllers (Megaraid 2208, codenamed Thunderbold)
are also supported by mfi(4). mpii will take precedence if both drivers
are enabled.
Tested on a
mfii0 at pci6 dev 0 function 0: "PERC H740P Adapter ", firmware 50.3.0-1512, 819
2MB cache
mfii0: interrupting at ioapic2 pin 2
scsibus0 at mfii0: 64 targets, 8 luns per target
scsibus0: waiting 2 seconds for devices to settle...
sd0 at scsibus0 target 0 lun 0: <DELL, PERC H740P Adp, 5.03> disk fixed
sd0: fabricating a geometry
sd0: 99 GB, 102399 cyl, 64 head, 32 sec, 512 bytes/sect x 209714688 sectors
sd0: tagged queueing
sd1 at scsibus0 target 1 lun 0: <DELL, PERC H740P Adp, 5.03> disk fixed
sd1: fabricating a geometry
sd1: 22254 GB, 22788608 cyl, 64 head, 32 sec, 512 bytes/sect x 46671069696 sectors
sd1: fabricating a geometry
It supports bioctl(8) ioctls, as well as sensors for the BBU and logical
drives.
Sponsored by LIP6.
-
Add my name in copyright list
-
add a man page for the new mpii, mostly from OpenBSD.
-
Sort SEE ALSO. Fix date. Whitespace fixes.
Revision 1.674: download - view: text, markup, annotated - select for diffs
Sat Dec 1 11:17:28 2018 UTC (6 years ago) by jdolecek
Branches: MAIN
Diff to: previous 1.673: preferred, colored
Changes since revision 1.673: +2 -2
lines
now that Jared fixed ena(4) to work, add manpage for it; adapted from FreeBSD
Revision 1.651.2.6: download - view: text, markup, annotated - select for diffs
Mon Nov 26 01:52:15 2018 UTC (6 years ago) by pgoyette
Branches: pgoyette-compat
Diff to: previous 1.651.2.5: preferred, colored; branchpoint 1.651: preferred, colored
Changes since revision 1.651.2.5: +2 -2
lines
Sync with HEAD, resolve a couple of conflicts
Revision 1.673: download - view: text, markup, annotated - select for diffs
Sat Nov 24 18:37:50 2018 UTC (6 years ago) by bouyer
Branches: MAIN
CVS tags: pgoyette-compat-1126
Diff to: previous 1.672: preferred, colored
Changes since revision 1.672: +2 -2
lines
add a man page for the new mpii, mostly from OpenBSD.
Revision 1.637.2.3: download - view: text, markup, annotated - select for diffs
Wed Oct 31 09:26:51 2018 UTC (6 years, 1 month ago) by martin
Branches: netbsd-8
Diff to: previous 1.637.2.2: preferred, colored; branchpoint 1.637: preferred, colored
Changes since revision 1.637.2.2: +2 -2
lines
Pull up the following, requested by maya in ticket #1072:
distrib/sets/lists/man/mi (patch)
share/man/man4/bwfm.4 1.3 (patch)
Add bwfm man page.
Revision 1.651.2.5: download - view: text, markup, annotated - select for diffs
Sun Sep 30 01:45:34 2018 UTC (6 years, 2 months ago) by pgoyette
Branches: pgoyette-compat
Diff to: previous 1.651.2.4: preferred, colored; branchpoint 1.651: preferred, colored
Changes since revision 1.651.2.4: +2 -6
lines
Ssync with HEAD
Revision 1.672: download - view: text, markup, annotated - select for diffs
Sun Sep 23 09:21:00 2018 UTC (6 years, 2 months ago) by maxv
Branches: MAIN
CVS tags: pgoyette-compat-1020,
pgoyette-compat-0930
Diff to: previous 1.671: preferred, colored
Changes since revision 1.671: +1 -5
lines
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.
Revision 1.671: download - view: text, markup, annotated - select for diffs
Sat Sep 22 16:22:22 2018 UTC (6 years, 2 months ago) by maxv
Branches: MAIN
Diff to: previous 1.670: preferred, colored
Changes since revision 1.670: +2 -2
lines
Remove isic(4). It is part of ISDN, which we are now retiring.
Revision 1.670: download - view: text, markup, annotated - select for diffs
Sat Sep 22 12:41:00 2018 UTC (6 years, 2 months ago) by maxv
Branches: MAIN
Diff to: previous 1.669: preferred, colored
Changes since revision 1.669: +2 -2
lines
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).
Revision 1.669: download - view: text, markup, annotated - select for diffs
Sat Sep 22 12:19:11 2018 UTC (6 years, 2 months ago) by maxv
Branches: MAIN
Diff to: previous 1.668: preferred, colored
Changes since revision 1.668: +2 -2
lines
Remove ifpci(4). It is part of ISDN, which we are retiring.
Revision 1.668: download - view: text, markup, annotated - select for diffs
Fri Sep 21 18:38:25 2018 UTC (6 years, 2 months ago) by maxv
Branches: MAIN
Diff to: previous 1.667: preferred, colored
Changes since revision 1.667: +2 -2
lines
Remove iavc(4).
Revision 1.667: download - view: text, markup, annotated - select for diffs
Wed Sep 19 13:58:27 2018 UTC (6 years, 2 months ago) by maxv
Branches: MAIN
Diff to: previous 1.666: preferred, colored
Changes since revision 1.666: +2 -2
lines
Remove daic(4), it has never been functional.
ok martin@
Revision 1.651.2.4: download - view: text, markup, annotated - select for diffs
Thu Sep 6 06:55:21 2018 UTC (6 years, 3 months ago) by pgoyette
Branches: pgoyette-compat
Diff to: previous 1.651.2.3: preferred, colored; branchpoint 1.651: preferred, colored
Changes since revision 1.651.2.3: +7 -6
lines
Sync with HEAD
Resolve a couple of conflicts (result of the uimin/uimax changes)
Revision 1.666: download - view: text, markup, annotated - select for diffs
Thu Sep 6 05:36:49 2018 UTC (6 years, 3 months ago) by maxv
Branches: MAIN
Diff to: previous 1.665: preferred, colored
Changes since revision 1.665: +2 -2
lines
Retire the 'midway' driver. Discussed on tech-net@ recently and also three
years ago, part of removing the network ATM code.
Revision 1.665: download - view: text, markup, annotated - select for diffs
Sat Aug 25 20:12:21 2018 UTC (6 years, 3 months ago) by rin
Branches: MAIN
CVS tags: pgoyette-compat-0906
Diff to: previous 1.664: preferred, colored
Changes since revision 1.664: +3 -2
lines
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.
Revision 1.664: download - view: text, markup, annotated - select for diffs
Tue Aug 14 14:49:13 2018 UTC (6 years, 3 months ago) by maxv
Branches: MAIN
Diff to: previous 1.663: preferred, colored
Changes since revision 1.663: +2 -2
lines
Retire EtherIP, we have L2TP instead.
Revision 1.663: download - view: text, markup, annotated - select for diffs
Wed Aug 8 21:15:41 2018 UTC (6 years, 4 months ago) by maya
Branches: MAIN
Diff to: previous 1.662: preferred, colored
Changes since revision 1.662: +2 -2
lines
Remove nsp(4) documentation following the removal of code.
Revision 1.662: download - view: text, markup, annotated - select for diffs
Tue Jul 31 19:30:19 2018 UTC (6 years, 4 months ago) by rjs
Branches: MAIN
Diff to: previous 1.661: preferred, colored
Changes since revision 1.661: +2 -2
lines
Add man page for sctp(4).
Revision 1.661: download - view: text, markup, annotated - select for diffs
Tue Jul 31 16:44:29 2018 UTC (6 years, 4 months ago) by khorben
Branches: MAIN
Diff to: previous 1.660: preferred, colored
Changes since revision 1.660: +2 -2
lines
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 1.651.2.3: download - view: text, markup, annotated - select for diffs
Sat Jul 28 04:37:24 2018 UTC (6 years, 4 months ago) by pgoyette
Branches: pgoyette-compat
Diff to: previous 1.651.2.2: preferred, colored; branchpoint 1.651: preferred, colored
Changes since revision 1.651.2.2: +4 -5
lines
Sync with HEAD
Revision 1.660: download - view: text, markup, annotated - select for diffs
Fri Jul 27 16:12:40 2018 UTC (6 years, 4 months ago) by gson
Branches: MAIN
CVS tags: pgoyette-compat-0728
Diff to: previous 1.659: preferred, colored
Changes since revision 1.659: +2 -2
lines
Add missing backslash to unbreak the build
Revision 1.659: download - view: text, markup, annotated - select for diffs
Fri Jul 27 12:02:26 2018 UTC (6 years, 4 months ago) by rkujawa
Branches: MAIN
Diff to: previous 1.658: preferred, colored
Changes since revision 1.658: +3 -3
lines
Add TEA5767 FM radio driver. From Karuna Grewal.
Revision 1.658: download - view: text, markup, annotated - select for diffs
Sun Jul 15 05:16:40 2018 UTC (6 years, 4 months ago) by maxv
Branches: MAIN
Diff to: previous 1.657: preferred, colored
Changes since revision 1.657: +2 -2
lines
Retire ipkdb entirely. The option was removed from the config files
yesterday.
ok kamil christos
Revision 1.657: download - view: text, markup, annotated - select for diffs
Tue Jul 10 17:01:43 2018 UTC (6 years, 5 months ago) by maya
Branches: MAIN
Diff to: previous 1.656: preferred, colored
Changes since revision 1.656: +1 -2
lines
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 1.651.2.2: download - view: text, markup, annotated - select for diffs
Mon Jun 25 07:25:36 2018 UTC (6 years, 5 months ago) by pgoyette
Branches: pgoyette-compat
Diff to: previous 1.651.2.1: preferred, colored; branchpoint 1.651: preferred, colored
Changes since revision 1.651.2.1: +3 -3
lines
Sync with HEAD
Revision 1.656: download - view: text, markup, annotated - select for diffs
Wed Jun 13 03:28:36 2018 UTC (6 years, 6 months ago) by ozaki-r
Branches: MAIN
CVS tags: phil-wifi-base,
pgoyette-compat-0625
Branch point for: phil-wifi
Diff to: previous 1.655: preferred, colored
Changes since revision 1.655: +2 -2
lines
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.
Revision 1.655: download - view: text, markup, annotated - select for diffs
Sun May 27 05:31:20 2018 UTC (6 years, 6 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.654: preferred, colored
Changes since revision 1.654: +2 -2
lines
Add a driver for the Taos TSL256x light sensors.
Revision 1.651.2.1: download - view: text, markup, annotated - select for diffs
Mon May 21 04:35:56 2018 UTC (6 years, 6 months ago) by pgoyette
Branches: pgoyette-compat
Diff to: previous 1.651: preferred, colored
Changes since revision 1.651: +4 -4
lines
Sync with HEAD
Revision 1.654: download - view: text, markup, annotated - select for diffs
Sun May 20 14:08:33 2018 UTC (6 years, 6 months ago) by thorpej
Branches: MAIN
CVS tags: pgoyette-compat-0521
Diff to: previous 1.653: preferred, colored
Changes since revision 1.653: +2 -2
lines
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
Revision 1.653: download - view: text, markup, annotated - select for diffs
Sat May 19 14:15:39 2018 UTC (6 years, 6 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.652: preferred, colored
Changes since revision 1.652: +3 -3
lines
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
Revision 1.637.2.2: download - view: text, markup, annotated - select for diffs
Sat May 12 10:35:45 2018 UTC (6 years, 7 months ago) by martin
Branches: netbsd-8
CVS tags: netbsd-8-0-RELEASE,
netbsd-8-0-RC2
Diff to: previous 1.637.2.1: preferred, colored; branchpoint 1.637: preferred, colored
Changes since revision 1.637.2.1: +2 -2
lines
Pull up following revision(s) (requested by msaitoh in ticket #819):
share/man/man4/ixg.4: revision 1.11
share/man/man4/ixg.4: revision 1.12
share/man/man4/Makefile: revision 1.652
share/man/man4/ixv.4: revision 1.1
share/man/man4/ixv.4: revision 1.2
distrib/sets/lists/man/mi: revision 1.1585
Add a maunal page for ixv(4).
Add missing .Nd.
Fix xref.
Use Nx. Fix typo. Capitalize Gigabit and Ethernet.
Add ixv.4.
Revision 1.652: download - view: text, markup, annotated - select for diffs
Wed May 9 08:22:53 2018 UTC (6 years, 7 months ago) by msaitoh
Branches: MAIN
Diff to: previous 1.651: preferred, colored
Changes since revision 1.651: +2 -2
lines
Add ixv.4.
Revision 1.637.2.1: download - view: text, markup, annotated - select for diffs
Sun Feb 11 21:17:34 2018 UTC (6 years, 10 months ago) by snj
Branches: netbsd-8
CVS tags: netbsd-8-0-RC1
Diff to: previous 1.637: preferred, colored
Changes since revision 1.637: +2 -2
lines
Pull up following revision(s) (requested by ozaki-r in ticket #536):
distrib/sets/lists/base/shl.mi: 1.825
distrib/sets/lists/comp/mi: 1.2168-1.2169
distrib/sets/lists/comp/shl.mi: 1.310
distrib/sets/lists/debug/mi: 1.234
distrib/sets/lists/debug/shl.mi: 1.188
distrib/sets/lists/man/mi: 1.1570
distrib/sets/lists/tests/mi: 1.772
etc/mtree/NetBSD.dist.tests: 1.150
share/man/man4/Makefile: 1.650
share/man/man4/ipsec.4: 1.42-1.43
share/man/man4/ipsecif.4: 1.1-1.5
sys/arch/amd64/conf/ALL: 1.77
sys/arch/amd64/conf/GENERIC: 1.480
sys/conf/files: 1.1191
sys/net/Makefile: 1.34
sys/net/files.net: 1.14
sys/net/if.c: 1.404
sys/net/if.h: 1.248
sys/net/if_gif.c: 1.135
sys/net/if_ipsec.c: 1.1-1.3
sys/net/if_ipsec.h: 1.1
sys/net/if_l2tp.c: 1.16
sys/net/if_types.h: 1.28
sys/netinet/in.c: 1.214
sys/netinet/in.h: 1.103
sys/netinet/in_gif.c: 1.92
sys/netinet/ip_var.h: 1.122
sys/netinet6/in6.c: 1.257
sys/netinet6/in6.h: 1.88
sys/netinet6/in6_gif.c: 1.90
sys/netinet6/ip6_var.h: 1.75
sys/netipsec/Makefile: 1.6
sys/netipsec/files.netipsec: 1.13
sys/netipsec/ipsec.h: 1.62
sys/netipsec/ipsecif.c: 1.1
sys/netipsec/ipsecif.h: 1.1
sys/netipsec/key.c: 1.246-1.247
sys/netipsec/key.h: 1.34
sys/rump/net/Makefile.rumpnetcomp: 1.20
sys/rump/net/lib/libipsec/IPSEC.ioconf: 1.1
sys/rump/net/lib/libipsec/Makefile: 1.1
sys/rump/net/lib/libipsec/ipsec_component.c: 1.1
tests/net/Makefile: 1.34
tests/net/if_ipsec/Makefile: 1.1
tests/net/if_ipsec/t_ipsec.sh: 1.1-1.2
Don't touch an SP without a reference to it
unify processing to check nesting count for some tunnel protocols.
add ipsec(4) interface, which is used for route-based VPN.
man and ATF are added later, please see man for details.
reviewed by christos@n.o, joerg@n.o and ozaki-r@n.o, thanks.
https://mail-index.netbsd.org/tech-net/2017/12/18/msg006557.html
ipsec(4) interface supports rump now.
add ipsec(4) interface ATF.
add ipsec(4) interface man as ipsecif.4.
add ipsec(4) interface to amd64/GENERIC and amd64/ALL configs.
apply in{,6}_tunnel_validate() to gif(4).
Spell IPsec that way. Simplify macro usage. Sort SEE ALSO. Bump
date for previous.
Improve wording and macro use.
Some parts are not clear to me, so someone with knowledge of ipsecif(4)
should improve this some more.
Improve ipsecif.4. Default port ipsec(4) NAT-T is tested now.
pointed out by wiz@n.o and suggested by ozaki-r@n.o, thanks.
Change the prefix of test names to ipsecif_ to distinguish from tests for ipsec(4)
New sentence, new line. Remove empty macro.
Fix PR kern/52920. Pointed out by David Binderman, thanks.
Improve wording, and put a new drawing, from me and Kengo Nakahara.
apply a little more #ifdef INET/INET6. fixes !INET6 builds.
Revision 1.651: download - view: text, markup, annotated - select for diffs
Wed Jan 24 09:04:42 2018 UTC (6 years, 10 months ago) by skrll
Branches: MAIN
CVS tags: pgoyette-compat-base,
pgoyette-compat-0502,
pgoyette-compat-0422,
pgoyette-compat-0415,
pgoyette-compat-0407,
pgoyette-compat-0330,
pgoyette-compat-0322,
pgoyette-compat-0315
Branch point for: pgoyette-compat
Diff to: previous 1.650: preferred, colored
Changes since revision 1.650: +2 -2
lines
Remove port-acorn26
OK core@
Revision 1.650: download - view: text, markup, annotated - select for diffs
Wed Jan 10 11:08:55 2018 UTC (6 years, 11 months ago) by knakahara
Branches: MAIN
Diff to: previous 1.649: preferred, colored
Changes since revision 1.649: +2 -2
lines
add ipsec(4) interface man as ipsecif.4.
Revision 1.649: download - view: text, markup, annotated - select for diffs
Fri Dec 29 08:15:21 2017 UTC (6 years, 11 months ago) by kre
Branches: MAIN
Diff to: previous 1.648: preferred, colored
Changes since revision 1.648: +2 -2
lines
Make a \ go away...
Revision 1.648: download - view: text, markup, annotated - select for diffs
Thu Dec 28 23:28:00 2017 UTC (6 years, 11 months ago) by christos
Branches: MAIN
Diff to: previous 1.647: preferred, colored
Changes since revision 1.647: +5 -6
lines
PR/52848: Brad Spencer: Man pages for new drivers
Revision 1.647: download - view: text, markup, annotated - select for diffs
Tue Dec 19 01:46:57 2017 UTC (6 years, 11 months ago) by christos
Branches: MAIN
Diff to: previous 1.646: preferred, colored
Changes since revision 1.646: +2 -2
lines
add missing man page from FreeBSD
Revision 1.646: download - view: text, markup, annotated - select for diffs
Sun Dec 10 20:51:55 2017 UTC (7 years ago) by bouyer
Branches: MAIN
Diff to: previous 1.645: preferred, colored
Changes since revision 1.645: +3 -3
lines
Add man pages for new ihidev and ims drivers.
Revision 1.645: download - view: text, markup, annotated - select for diffs
Tue Nov 28 11:59:16 2017 UTC (7 years ago) by wiz
Branches: MAIN
Diff to: previous 1.644: preferred, colored
Changes since revision 1.644: +2 -2
lines
Install qemufwcfg(4) and mount_qemufwcfg(8).
Revision 1.644: download - view: text, markup, annotated - select for diffs
Thu Oct 26 07:29:53 2017 UTC (7 years, 1 month ago) by maya
Branches: MAIN
Diff to: previous 1.643: preferred, colored
Changes since revision 1.643: +2 -2
lines
Add man page for bwfm(4)
Wireless driver for Broadcom and some now sold by Cypress.
Revision 1.643: download - view: text, markup, annotated - select for diffs
Sat Sep 30 12:27:26 2017 UTC (7 years, 2 months ago) by sevan
Branches: MAIN
Diff to: previous 1.642: preferred, colored
Changes since revision 1.642: +4 -4
lines
Add a manual for uipad(4)
Revision 1.642: download - view: text, markup, annotated - select for diffs
Tue Sep 12 14:52:02 2017 UTC (7 years, 3 months ago) by wiz
Branches: MAIN
Diff to: previous 1.641: preferred, colored
Changes since revision 1.641: +2 -2
lines
Remove scc(4), driver was replaced by zs(4).
Fixes PR 52539 by Miod Vallat.
Revision 1.641: download - view: text, markup, annotated - select for diffs
Fri Jun 16 22:39:34 2017 UTC (7 years, 5 months ago) by pgoyette
Branches: MAIN
CVS tags: perseant-stdc-iso10646-base,
perseant-stdc-iso10646
Diff to: previous 1.640: preferred, colored
Changes since revision 1.640: +3 -3
lines
Add gpio support for Xscale
From Stephan Meisenger in PR/52163
Revision 1.640: download - view: text, markup, annotated - select for diffs
Fri Jun 16 22:13:25 2017 UTC (7 years, 5 months ago) by pgoyette
Branches: MAIN
Diff to: previous 1.639: preferred, colored
Changes since revision 1.639: +3 -3
lines
Oooppss, pxagpio.4 isn't ready yet.
Revision 1.639: download - view: text, markup, annotated - select for diffs
Fri Jun 16 22:10:54 2017 UTC (7 years, 5 months ago) by pgoyette
Branches: MAIN
Diff to: previous 1.638: preferred, colored
Changes since revision 1.638: +7 -6
lines
Split a couple of over-long lines. NFC
Revision 1.638: download - view: text, markup, annotated - select for diffs
Tue Jun 13 09:11:22 2017 UTC (7 years, 6 months ago) by nat
Branches: MAIN
Diff to: previous 1.637: preferred, colored
Changes since revision 1.637: +2 -2
lines
Add wsbell.
Found by wiz@.
Revision 1.637: download - view: text, markup, annotated - select for diffs
Sat May 27 21:02:55 2017 UTC (7 years, 6 months ago) by bouyer
Branches: MAIN
CVS tags: netbsd-8-base,
matt-nb8-mediatek-base,
matt-nb8-mediatek
Branch point for: netbsd-8
Diff to: previous 1.636: preferred, colored
Changes since revision 1.636: +2 -2
lines
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 1.635.2.1: download - view: text, markup, annotated - select for diffs
Fri May 19 00:22:55 2017 UTC (7 years, 6 months ago) by pgoyette
Branches: prg-localcount2
Diff to: previous 1.635: preferred, colored; next MAIN 1.636: preferred, colored
Changes since revision 1.635: +2 -2
lines
Resolve conflicts from previous merge (all resulting from $NetBSD
keywork expansion)
Revision 1.631.2.2: download - view: text, markup, annotated - select for diffs
Thu May 18 11:28:48 2017 UTC (7 years, 6 months ago) by bouyer
Branches: bouyer-socketcan
Diff to: previous 1.631.2.1: preferred, colored; branchpoint 1.631: preferred, colored; next MAIN 1.632: preferred, colored
Changes since revision 1.631.2.1: +2 -2
lines
Add can(4) and canloop(4) man pages
Revision 1.636: download - view: text, markup, annotated - select for diffs
Tue May 16 23:21:53 2017 UTC (7 years, 6 months ago) by jdolecek
Branches: MAIN
CVS tags: prg-localcount2-base3
Diff to: previous 1.635: preferred, colored
Changes since revision 1.635: +2 -2
lines
add vioscsi(4) manpage
Revision 1.628.2.4: download - view: text, markup, annotated - select for diffs
Wed Apr 26 02:52:58 2017 UTC (7 years, 7 months ago) by pgoyette
Branches: pgoyette-localcount
Diff to: previous 1.628.2.3: preferred, colored; branchpoint 1.628: preferred, colored; next MAIN 1.629: preferred, colored
Changes since revision 1.628.2.3: +3 -2
lines
Sync with HEAD
Revision 1.631.2.1: download - view: text, markup, annotated - select for diffs
Fri Apr 21 16:53:15 2017 UTC (7 years, 7 months ago) by bouyer
Branches: bouyer-socketcan
Diff to: previous 1.631: preferred, colored
Changes since revision 1.631: +8 -6
lines
Sync with HEAD
Revision 1.635: download - view: text, markup, annotated - select for diffs
Wed Apr 19 00:17:31 2017 UTC (7 years, 7 months ago) by riastradh
Branches: MAIN
CVS tags: prg-localcount2-base2,
prg-localcount2-base1,
prg-localcount2-base,
pgoyette-localcount-20170426,
bouyer-socketcan-base1
Branch point for: prg-localcount2
Diff to: previous 1.634: preferred, colored
Changes since revision 1.634: +3 -2
lines
Offering for the wiz daemon.
Revision 1.628.2.3: download - view: text, markup, annotated - select for diffs
Mon Mar 20 06:57:03 2017 UTC (7 years, 8 months ago) by pgoyette
Branches: pgoyette-localcount
Diff to: previous 1.628.2.2: preferred, colored; branchpoint 1.628: preferred, colored
Changes since revision 1.628.2.2: +6 -5
lines
Sync with HEAD
Revision 1.634: download - view: text, markup, annotated - select for diffs
Mon Mar 6 09:06:01 2017 UTC (7 years, 9 months ago) by pgoyette
Branches: MAIN
CVS tags: pgoyette-localcount-20170320
Diff to: previous 1.633: preferred, colored
Changes since revision 1.633: +3 -3
lines
Add pxaip(4) man page from Stephan Meisinger in PR misc/52033
Revision 1.633: download - view: text, markup, annotated - select for diffs
Thu Feb 16 08:32:21 2017 UTC (7 years, 9 months ago) by knakahara
Branches: MAIN
Diff to: previous 1.632: preferred, colored
Changes since revision 1.632: +2 -2
lines
add man for l2tp(4).
Revision 1.632: download - view: text, markup, annotated - select for diffs
Sat Jan 21 20:21:57 2017 UTC (7 years, 10 months ago) by jdolecek
Branches: MAIN
Diff to: previous 1.631: preferred, colored
Changes since revision 1.631: +3 -2
lines
add skeleton manpage for xhci(4)
Revision 1.628.2.2: download - view: text, markup, annotated - select for diffs
Sat Jan 7 08:56:07 2017 UTC (7 years, 11 months ago) by pgoyette
Branches: pgoyette-localcount
Diff to: previous 1.628.2.1: preferred, colored; branchpoint 1.628: preferred, colored
Changes since revision 1.628.2.1: +2 -2
lines
Sync with HEAD. (Note that most of these changes are simply $NetBSD$
tag issues.)
Revision 1.631: download - view: text, markup, annotated - select for diffs
Sun Nov 20 16:55:18 2016 UTC (8 years ago) by macallan
Branches: MAIN
CVS tags: pgoyette-localcount-20170107,
bouyer-socketcan-base
Branch point for: bouyer-socketcan
Diff to: previous 1.630: preferred, colored
Changes since revision 1.630: +2 -2
lines
add driver for Permedia 3 based graphics devices
from Naruaki Etomi, via PR 49518
Revision 1.628.2.1: download - view: text, markup, annotated - select for diffs
Fri Nov 4 14:48:56 2016 UTC (8 years, 1 month ago) by pgoyette
Branches: pgoyette-localcount
Diff to: previous 1.628: preferred, colored
Changes since revision 1.628: +2 -1
lines
Sync with HEAD
Revision 1.630: download - view: text, markup, annotated - select for diffs
Sun Oct 2 22:44:30 2016 UTC (8 years, 2 months ago) by jdolecek
Branches: MAIN
CVS tags: pgoyette-localcount-20161104
Diff to: previous 1.629: preferred, colored
Changes since revision 1.629: +2 -1
lines
make symlink ahci.4 -> ahcisata.4
Revision 1.629: download - view: text, markup, annotated - select for diffs
Thu Aug 11 09:06:20 2016 UTC (8 years, 4 months ago) by christos
Branches: MAIN
CVS tags: localcount-20160914
Diff to: previous 1.628: preferred, colored
Changes since revision 1.628: +2 -2
lines
TURBOchannel usb/gpio driver from Felix Deichmann
Revision 1.628: download - view: text, markup, annotated - select for diffs
Sun May 1 10:21:01 2016 UTC (8 years, 7 months ago) by nonaka
Branches: MAIN
CVS tags: pgoyette-localcount-base,
pgoyette-localcount-20160806,
pgoyette-localcount-20160726
Branch point for: pgoyette-localcount
Diff to: previous 1.627: preferred, colored
Changes since revision 1.627: +2 -1
lines
Added nvme(4) for Non-Volatile Memory Host Controller Interface devices.
Ported from OpenBSD.
Revision 1.627: download - view: text, markup, annotated - select for diffs
Mon Jan 18 00:34:43 2016 UTC (8 years, 10 months ago) by kamil
Branches: MAIN
Diff to: previous 1.626: preferred, colored
Changes since revision 1.626: +3 -2
lines
Add full.4
Revision 1.626: download - view: text, markup, annotated - select for diffs
Tue Jan 5 11:24:43 2016 UTC (8 years, 11 months ago) by msaitoh
Branches: MAIN
Diff to: previous 1.625: preferred, colored
Changes since revision 1.625: +3 -2
lines
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.
Revision 1.625: download - view: text, markup, annotated - select for diffs
Wed Dec 16 08:20:03 2015 UTC (8 years, 11 months ago) by jdc
Branches: MAIN
Diff to: previous 1.624: preferred, colored
Changes since revision 1.624: +2 -2
lines
Add manual page for ADM1026.
Revision 1.624: download - view: text, markup, annotated - select for diffs
Wed Oct 14 04:22:45 2015 UTC (9 years, 2 months ago) by nonaka
Branches: MAIN
Diff to: previous 1.623: preferred, colored
Changes since revision 1.623: +2 -2
lines
PR/50261: Add valz(4) man page.
Revision 1.623: download - view: text, markup, annotated - select for diffs
Thu Aug 27 14:04:07 2015 UTC (9 years, 3 months ago) by nonaka
Branches: MAIN
Diff to: previous 1.622: preferred, colored
Changes since revision 1.622: +2 -2
lines
Added rtwn(4) for Realtek RTL8188CE/RTL8192CE PCIe 802.11b/g/n wireless network
devices. Ported from OpenBSD.
Revision 1.622: download - view: text, markup, annotated - select for diffs
Sun Aug 23 19:09:02 2015 UTC (9 years, 3 months ago) by rkujawa
Branches: MAIN
Diff to: previous 1.621: preferred, colored
Changes since revision 1.621: +2 -2
lines
Add man page for mcp48x1dac driver.
Revision 1.621: download - view: text, markup, annotated - select for diffs
Tue Aug 18 15:54:20 2015 UTC (9 years, 3 months ago) by phx
Branches: MAIN
Diff to: previous 1.620: preferred, colored
Changes since revision 1.620: +2 -2
lines
MI driver for the Microchip 3x0x series of SAR analog to digital converters.
Revision 1.620: download - view: text, markup, annotated - select for diffs
Wed May 13 07:28:49 2015 UTC (9 years, 7 months ago) by mlelstv
Branches: MAIN
Diff to: previous 1.619: preferred, colored
Changes since revision 1.619: +2 -2
lines
Add documentation for the drvctl driver and add reference.
Fixes PR 49895.
Revision 1.581.2.4: download - view: text, markup, annotated - select for diffs
Thu Apr 16 07:01:38 2015 UTC (9 years, 7 months ago) by snj
Branches: netbsd-6
Diff to: previous 1.581.2.3: preferred, colored; branchpoint 1.581: preferred, colored; next MAIN 1.582: preferred, colored
Changes since revision 1.581.2.3: +2 -2
lines
Pull up following revision(s) (requested by mbalmer in ticket #891):
distrib/sets/lists/man/mi: revision 1.1411
share/man/man4/Makefile: revision 1.593
share/man/man4/gpio.4: revision 1.24
share/man/man4/ptcd.4: revision 1.1-1.4
sys/arch/i386/conf/ALL: revision 1.348
sys/arch/i386/conf/files.i386: revision 1.369
sys/dev/isa/ptcd.c: revision 1.1
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.
--
Mention ptcd(4) in the synopsis.
--
Add ptcd(4).
--
Mention ibmcd(4).
--
Sort sections.
--
Sort SEE ALSO.
Revision 1.619: download - view: text, markup, annotated - select for diffs
Sun Feb 8 16:44:09 2015 UTC (9 years, 10 months ago) by wiz
Branches: MAIN
Diff to: previous 1.618: preferred, colored
Changes since revision 1.618: +2 -2
lines
Add man page for iwm(4).
Revision 1.616.2.2: download - view: text, markup, annotated - select for diffs
Sun Nov 2 10:12:46 2014 UTC (10 years, 1 month ago) by martin
Branches: netbsd-7
CVS tags: netbsd-7-nhusb-base-20170116,
netbsd-7-nhusb-base,
netbsd-7-nhusb,
netbsd-7-2-RELEASE,
netbsd-7-1-RELEASE,
netbsd-7-1-RC2,
netbsd-7-1-RC1,
netbsd-7-1-2-RELEASE,
netbsd-7-1-1-RELEASE,
netbsd-7-1,
netbsd-7-0-RELEASE,
netbsd-7-0-RC3,
netbsd-7-0-RC2,
netbsd-7-0-RC1,
netbsd-7-0-2-RELEASE,
netbsd-7-0-1-RELEASE,
netbsd-7-0
Diff to: previous 1.616.2.1: preferred, colored; branchpoint 1.616: preferred, colored; next MAIN 1.617: preferred, colored
Changes since revision 1.616.2.1: +3 -2
lines
Pull up following revision(s) (requested by tls in ticket #175):
share/man/man4/Makefile: revision 1.618
distrib/sets/lists/man/mi: revision 1.1488
Build and install virtio(4) manual page - missed in previous commit.
Revision 1.618: download - view: text, markup, annotated - select for diffs
Sun Oct 26 18:48:09 2014 UTC (10 years, 1 month ago) by tls
Branches: MAIN
Diff to: previous 1.617: preferred, colored
Changes since revision 1.617: +3 -2
lines
Build and install virtio(4) manual page - missed in previous commit.
Revision 1.616.2.1: download - view: text, markup, annotated - select for diffs
Fri Aug 29 11:42:15 2014 UTC (10 years, 3 months ago) by martin
Branches: netbsd-7
Diff to: previous 1.616: preferred, colored
Changes since revision 1.616: +2 -2
lines
Pull up following revision(s) (requested by tsutsui in ticket #62):
sys/arch/hp300/conf/files.hp300: revision 1.89
share/man/man4/arcofi.4: revision 1.1
share/man/man4/arcofi.4: revision 1.2
share/man/man4/Makefile: revision 1.617
sys/arch/hp300/hp300/intr.c: revision 1.41
sys/conf/files: revision 1.1100
sys/arch/hp300/hp300/locore.s: revision 1.171
distrib/sets/lists/man/mi: revision 1.1486
sys/dev/ic/arcofivar.h: revision 1.1
sys/arch/hp300/conf/majors.hp300: revision 1.26
sys/arch/hp300/dev/arcofi_dio.c: revision 1.1
sys/arch/hp300/conf/GENERIC: revision 1.188
sys/dev/ic/arcofi.c: revision 1.1
Add new arcofi(4) audio driver for NetBSD/hp300, ported from OpenBSD.
The arcofi(4) is a driver for the HP "Audio1" device
(Siemens PSB 2160 "ARCOFI" phone quality audio chip)
found on the HP9000/425e and HP9000/{705,710,745,747} models
(but only hp300 attachment is ported for now).
The chip supports 8-bit mono 8kHz U-law, A-law and
16-bit mono slinear_be formats.
The old HP9000/425e playing tunes with this new arcofi(4) audio driver
was also demonstrated at Open Source Conference 2014 Shimane.
Add a man page for arcofi(4) driver. From OpenBSD.
Fix date.
Revision 1.617: download - view: text, markup, annotated - select for diffs
Mon Aug 25 12:49:22 2014 UTC (10 years, 3 months ago) by tsutsui
Branches: MAIN
Diff to: previous 1.616: preferred, colored
Changes since revision 1.616: +2 -2
lines
Add a man page for arcofi(4) driver. From OpenBSD.
Revision 1.591.2.4: download - view: text, markup, annotated - select for diffs
Wed Aug 20 00:02:35 2014 UTC (10 years, 3 months ago) by tls
Branches: tls-maxphys
Diff to: previous 1.591.2.3: preferred, colored; branchpoint 1.591: preferred, colored; next MAIN 1.592: preferred, colored
Changes since revision 1.591.2.3: +20 -19
lines
Rebase to HEAD as of a few days ago.
Revision 1.611.2.1: download - view: text, markup, annotated - select for diffs
Sun Aug 10 06:53:25 2014 UTC (10 years, 4 months ago) by tls
Branches: tls-earlyentropy
Diff to: previous 1.611: preferred, colored; next MAIN 1.612: preferred, colored
Changes since revision 1.611: +7 -6
lines
Rebase.
Revision 1.616: download - view: text, markup, annotated - select for diffs
Thu Jul 24 21:08:50 2014 UTC (10 years, 4 months ago) by alnsn
Branches: MAIN
CVS tags: tls-maxphys-base,
tls-earlyentropy-base,
netbsd-7-base
Branch point for: netbsd-7
Diff to: previous 1.615: preferred, colored
Changes since revision 1.615: +2 -2
lines
man 4 bpfjit
Revision 1.615: download - view: text, markup, annotated - select for diffs
Sun Jul 13 08:37:13 2014 UTC (10 years, 5 months ago) by mbalmer
Branches: MAIN
Diff to: previous 1.614: preferred, colored
Changes since revision 1.614: +2 -2
lines
Add a man page for asus(4), written by Leonardo Taccari as part of PR/39932.
Revision 1.572.2.7: download - view: text, markup, annotated - select for diffs
Thu May 22 11:37:50 2014 UTC (10 years, 6 months ago) by yamt
Branches: yamt-pagecache
Diff to: previous 1.572.2.6: preferred, colored; branchpoint 1.572: preferred, colored; next MAIN 1.573: preferred, colored
Changes since revision 1.572.2.6: +24 -22
lines
sync with head.
for a reference, the tree before this commit was tagged
as yamt-pagecache-tag8.
this commit was splitted into small chunks to avoid
a limitation of cvs. ("Protocol error: too many arguments")
Revision 1.614: download - view: text, markup, annotated - select for diffs
Sun May 18 11:46:23 2014 UTC (10 years, 6 months ago) by kardel
Branches: MAIN
Diff to: previous 1.613: preferred, colored
Changes since revision 1.613: +2 -2
lines
add HYT-221/271/939 humidity/temperature I2C sensor
extend envsys(4) framework by %rH (relative humidity)
Revision 1.613: download - view: text, markup, annotated - select for diffs
Wed Apr 23 06:53:14 2014 UTC (10 years, 7 months ago) by kardel
Branches: MAIN
CVS tags: yamt-pagecache-base9
Diff to: previous 1.612: preferred, colored
Changes since revision 1.612: +3 -3
lines
move mcp23s17gpio.4 to MI SPI drivers section
Revision 1.612: download - view: text, markup, annotated - select for diffs
Sun Apr 6 17:59:39 2014 UTC (10 years, 8 months ago) by kardel
Branches: MAIN
Diff to: previous 1.611: preferred, colored
Changes since revision 1.611: +3 -2
lines
add Microchip MCP23S17 GPIO driver
(via SPI interface)
Revision 1.611: download - view: text, markup, annotated - select for diffs
Wed Mar 19 15:26:41 2014 UTC (10 years, 8 months ago) by nonaka
Branches: MAIN
CVS tags: riastradh-xf86-video-intel-2-7-1-pre-2-21-15
Branch point for: tls-earlyentropy
Diff to: previous 1.610: preferred, colored
Changes since revision 1.610: +2 -2
lines
Add a driver for Realtek RTS5209/RTS5229 Card Reader.
Ported from OpenBSD.
Revision 1.610: download - view: text, markup, annotated - select for diffs
Sun Mar 16 09:28:43 2014 UTC (10 years, 8 months ago) by martin
Branches: MAIN
CVS tags: riastradh-drm2-base3
Diff to: previous 1.609: preferred, colored
Changes since revision 1.609: +2 -2
lines
Add umcs(4)
Revision 1.609: download - view: text, markup, annotated - select for diffs
Mon Mar 3 02:03:31 2014 UTC (10 years, 9 months ago) by ozaki-r
Branches: MAIN
Diff to: previous 1.608: preferred, colored
Changes since revision 1.608: +2 -2
lines
Add micphy.4
Revision 1.608: download - view: text, markup, annotated - select for diffs
Mon Feb 24 07:23:40 2014 UTC (10 years, 9 months ago) by skrll
Branches: MAIN
Diff to: previous 1.607: preferred, colored
Changes since revision 1.607: +2 -2
lines
Rename NetBSD/hp700 to NetBSD/hppa.
Unfortunately our VCS isn't very helpful here.
Revision 1.607: download - view: text, markup, annotated - select for diffs
Tue Jan 21 16:12:56 2014 UTC (10 years, 10 months ago) by mlelstv
Branches: MAIN
Diff to: previous 1.606: preferred, colored
Changes since revision 1.606: +3 -3
lines
Add igmafb man page.
Revision 1.606: download - view: text, markup, annotated - select for diffs
Sat Oct 26 09:16:19 2013 UTC (11 years, 1 month ago) by nonaka
Branches: MAIN
Diff to: previous 1.605: preferred, colored
Changes since revision 1.605: +4 -4
lines
Add driver for ASIX AX88178a and AX88179 Ethernet interface.
Ported from OpenBSD.
Revision 1.605: download - view: text, markup, annotated - select for diffs
Thu Oct 24 21:55:00 2013 UTC (11 years, 1 month ago) by mbalmer
Branches: MAIN
Diff to: previous 1.604: preferred, colored
Changes since revision 1.604: +2 -2
lines
link the lua(4) man page
Revision 1.604: download - view: text, markup, annotated - select for diffs
Tue Oct 15 19:20:18 2013 UTC (11 years, 1 month ago) by jdc
Branches: MAIN
Diff to: previous 1.603: preferred, colored
Changes since revision 1.603: +3 -3
lines
Add lmenv.4 to the manual page makefile and to the set list.
Revision 1.603: download - view: text, markup, annotated - select for diffs
Tue Oct 15 15:10:57 2013 UTC (11 years, 1 month ago) by skrll
Branches: MAIN
Diff to: previous 1.602: preferred, colored
Changes since revision 1.602: +2 -2
lines
Basic man page for dwctwo.
Revision 1.602: download - view: text, markup, annotated - select for diffs
Sun Sep 8 15:57:39 2013 UTC (11 years, 3 months ago) by rkujawa
Branches: MAIN
Diff to: previous 1.601: preferred, colored
Changes since revision 1.601: +3 -3
lines
Add mpl115a(4) man page for the new MPL115A2 pressure sensor driver.
Revision 1.601: download - view: text, markup, annotated - select for diffs
Tue Aug 6 22:33:59 2013 UTC (11 years, 4 months ago) by soren
Branches: MAIN
Diff to: previous 1.600: preferred, colored
Changes since revision 1.600: +2 -2
lines
Build orphaned man pages.
Revision 1.482.2.13: download - view: text, markup, annotated - select for diffs
Sun Jun 23 11:09:54 2013 UTC (11 years, 5 months ago) by bouyer
Branches: netbsd-5
Diff to: previous 1.482.2.12: preferred, colored; branchpoint 1.482: preferred, colored; next MAIN 1.483: preferred, colored
Changes since revision 1.482.2.12: +2 -2
lines
Pull up following revision(s) (requested by mbalmer in ticket #1863):
distrib/sets/lists/man/mi: revision 1.1411
share/man/man4/gpio.4: revision 1.24
sys/arch/i386/conf/ALL: revision 1.348
sys/arch/i386/conf/files.i386: revision 1.369
sys/dev/isa/ptcd.c: revision 1.1
share/man/man4/Makefile: revision 1.593
share/man/man4/ptcd.4: revision 1.1, 1.3, 1.4
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.
Mention ptcd(4) in the synopsis.
Revision 1.591.2.3: download - view: text, markup, annotated - select for diffs
Sun Jun 23 06:28:53 2013 UTC (11 years, 5 months ago) by tls
Branches: tls-maxphys
Diff to: previous 1.591.2.2: preferred, colored; branchpoint 1.591: preferred, colored
Changes since revision 1.591.2.2: +9 -8
lines
resync from head
Revision 1.600: download - view: text, markup, annotated - select for diffs
Wed May 8 04:33:15 2013 UTC (11 years, 7 months ago) by pgoyette
Branches: MAIN
CVS tags: riastradh-drm2-base2,
riastradh-drm2-base1,
riastradh-drm2-base,
riastradh-drm2
Diff to: previous 1.599: preferred, colored
Changes since revision 1.599: +2 -2
lines
Fix the build
Revision 1.599: download - view: text, markup, annotated - select for diffs
Tue May 7 22:45:26 2013 UTC (11 years, 7 months ago) by rkujawa
Branches: MAIN
Diff to: previous 1.598: preferred, colored
Changes since revision 1.598: +3 -2
lines
Add mcp980x(4) man page.
Revision 1.598: download - view: text, markup, annotated - select for diffs
Fri Apr 26 20:08:53 2013 UTC (11 years, 7 months ago) by rkujawa
Branches: MAIN
Diff to: previous 1.597: preferred, colored
Changes since revision 1.597: +2 -2
lines
Add man page for TPS65217 PMIC.
Revision 1.597: download - view: text, markup, annotated - select for diffs
Sat Mar 30 02:38:58 2013 UTC (11 years, 8 months ago) by christos
Branches: MAIN
Diff to: previous 1.596: preferred, colored
Changes since revision 1.596: +2 -2
lines
patches for new wifi devices.
Revision 1.596: download - view: text, markup, annotated - select for diffs
Fri Mar 1 18:25:26 2013 UTC (11 years, 9 months ago) by joerg
Branches: MAIN
CVS tags: agc-symver-base,
agc-symver
Diff to: previous 1.595: preferred, colored
Changes since revision 1.595: +6 -6
lines
Retire OSI network stack. OK core@
Revision 1.591.2.2: download - view: text, markup, annotated - select for diffs
Mon Feb 25 00:28:12 2013 UTC (11 years, 9 months ago) by tls
Branches: tls-maxphys
Diff to: previous 1.591.2.1: preferred, colored; branchpoint 1.591: preferred, colored
Changes since revision 1.591.2.1: +4 -4
lines
resync with head
Revision 1.572.2.6: download - view: text, markup, annotated - select for diffs
Wed Jan 23 00:05:34 2013 UTC (11 years, 10 months ago) by yamt
Branches: yamt-pagecache
CVS tags: yamt-pagecache-tag8
Diff to: previous 1.572.2.5: preferred, colored; branchpoint 1.572: preferred, colored
Changes since revision 1.572.2.5: +4 -4
lines
sync with head
Revision 1.572.2.5: download - view: text, markup, annotated - select for diffs
Wed Jan 16 05:32:35 2013 UTC (11 years, 10 months ago) by yamt
Branches: yamt-pagecache
Diff to: previous 1.572.2.4: preferred, colored; branchpoint 1.572: preferred, colored
Changes since revision 1.572.2.4: +2 -2
lines
sync with (a bit old) head
Revision 1.595: download - view: text, markup, annotated - select for diffs
Fri Jan 11 16:32:50 2013 UTC (11 years, 11 months ago) by skrll
Branches: MAIN
CVS tags: yamt-pagecache-base8
Diff to: previous 1.594: preferred, colored
Changes since revision 1.594: +2 -2
lines
Install the smsc(4) man page.
Revision 1.594: download - view: text, markup, annotated - select for diffs
Mon Dec 17 20:37:59 2012 UTC (11 years, 11 months ago) by mbalmer
Branches: MAIN
Diff to: previous 1.593: preferred, colored
Changes since revision 1.593: +2 -2
lines
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.
Revision 1.593: download - view: text, markup, annotated - select for diffs
Sun Dec 16 13:09:18 2012 UTC (11 years, 11 months ago) by mbalmer
Branches: MAIN
Diff to: previous 1.592: preferred, colored
Changes since revision 1.592: +2 -2
lines
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 1.591.2.1: download - view: text, markup, annotated - select for diffs
Tue Nov 20 03:00:50 2012 UTC (12 years ago) by tls
Branches: tls-maxphys
Diff to: previous 1.591: preferred, colored
Changes since revision 1.591: +2 -2
lines
Resync to 2012-11-19 00:00:00 UTC
Revision 1.592: download - view: text, markup, annotated - select for diffs
Wed Nov 14 02:29:10 2012 UTC (12 years ago) by rkujawa
Branches: MAIN
CVS tags: yamt-pagecache-base7
Diff to: previous 1.591: preferred, colored
Changes since revision 1.591: +2 -2
lines
Add man page for recently added msm6242b driver.
Revision 1.572.2.4: download - view: text, markup, annotated - select for diffs
Tue Oct 30 18:59:36 2012 UTC (12 years, 1 month ago) by yamt
Branches: yamt-pagecache
Diff to: previous 1.572.2.3: preferred, colored; branchpoint 1.572: preferred, colored
Changes since revision 1.572.2.3: +9 -7
lines
sync with head
Revision 1.482.2.12: download - view: text, markup, annotated - select for diffs
Fri Sep 28 10:58:15 2012 UTC (12 years, 2 months ago) by sborrill
Branches: netbsd-5
CVS tags: netbsd-5-2-RELEASE,
netbsd-5-2-RC1,
netbsd-5-2-3-RELEASE,
netbsd-5-2-2-RELEASE,
netbsd-5-2-1-RELEASE,
netbsd-5-2
Diff to: previous 1.482.2.11: preferred, colored; branchpoint 1.482: preferred, colored
Changes since revision 1.482.2.11: +2 -2
lines
Pull up the following revisions(s) (requested by liamjfoy in ticket #1797):
lib/libusbhid/usb_hid_usages: revision 1.5 via patch
share/man/man4/Makefile: revision 1.578 via patch
share/man/man4/uts.4: revision 1.1
share/man/man4/wsmouse.4: revision 1.19 via patch
sys/arch/amd64/conf/GENERIC: revision 1.346-1.347 via patch
sys/arch/i386/conf/GENERIC: revision 1.1078 via patch
sys/dev/usb/FILES: revision 1.12 via patch
sys/dev/usb/usbdevices.config: revision 1.12 via patch
sys/dev/usb/files.usb: revision 1.119-1.120 via patch
sys/dev/usb/usbhid.h: revision 1.14 via patch
sys/dev/usb/uts.c: revision 1.1
distrib/sets/lists/man/mi: revision 1.1370 via patch
Add uts(4) driver for USB touchscreens.
Revision 1.591: download - view: text, markup, annotated - select for diffs
Sun Aug 5 14:28:50 2012 UTC (12 years, 4 months ago) by riastradh
Branches: MAIN
CVS tags: yamt-pagecache-base6
Branch point for: tls-maxphys
Diff to: previous 1.590: preferred, colored
Changes since revision 1.590: +2 -2
lines
Add man page for uatp(4).
Revision 1.590: download - view: text, markup, annotated - select for diffs
Mon Jul 30 18:57:18 2012 UTC (12 years, 4 months ago) by degroote
Branches: MAIN
Diff to: previous 1.589: preferred, colored
Changes since revision 1.589: +2 -2
lines
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)
Revision 1.589: download - view: text, markup, annotated - select for diffs
Thu Jul 19 08:57:09 2012 UTC (12 years, 4 months ago) by rkujawa
Branches: MAIN
Diff to: previous 1.588: preferred, colored
Changes since revision 1.588: +2 -2
lines
Add man page for recently introduced tdvfb(4).
Revision 1.588: download - view: text, markup, annotated - select for diffs
Fri Jul 13 22:58:45 2012 UTC (12 years, 5 months ago) by abs
Branches: MAIN
Diff to: previous 1.587: preferred, colored
Changes since revision 1.587: +2 -1
lines
Adjust some wording based on suggestion from Snader_LB, plus install a link to wedge.4
Revision 1.587: download - view: text, markup, annotated - select for diffs
Fri Jul 13 16:19:42 2012 UTC (12 years, 5 months ago) by rkujawa
Branches: MAIN
Diff to: previous 1.586: preferred, colored
Changes since revision 1.586: +2 -2
lines
Add voodoofb man page. This time trying to use the "the" word more.
Revision 1.581.2.3: download - view: text, markup, annotated - select for diffs
Fri Jun 15 08:48:47 2012 UTC (12 years, 5 months ago) by sborrill
Branches: netbsd-6
CVS tags: netbsd-6-1-RELEASE,
netbsd-6-1-RC4,
netbsd-6-1-RC3,
netbsd-6-1-RC2,
netbsd-6-1-RC1,
netbsd-6-1-5-RELEASE,
netbsd-6-1-4-RELEASE,
netbsd-6-1-3-RELEASE,
netbsd-6-1-2-RELEASE,
netbsd-6-1-1-RELEASE,
netbsd-6-1,
netbsd-6-0-RELEASE,
netbsd-6-0-RC2,
netbsd-6-0-RC1,
netbsd-6-0-6-RELEASE,
netbsd-6-0-5-RELEASE,
netbsd-6-0-4-RELEASE,
netbsd-6-0-3-RELEASE,
netbsd-6-0-2-RELEASE,
netbsd-6-0-1-RELEASE,
netbsd-6-0,
matt-nb6-plus-nbase,
matt-nb6-plus-base,
matt-nb6-plus
Diff to: previous 1.581.2.2: preferred, colored; branchpoint 1.581: preferred, colored
Changes since revision 1.581.2.2: +2 -2
lines
Pull up the following revisions(s) (requested by riz in ticket #343):
sys/dev/usb/files.usb: revision 1.122
sys/dev/usb/if_urtw.c: revision 1.1
sys/dev/usb/if_urtwreg.h: revision 1.1
share/man/man4/Makefile: revision 1.586
share/man/man4/urtw.4: revision 1.1
distrib/sets/lists/man/mi: revision 1.1393
sys/dev/usb/usbdevs: revision 1.617
sys/arch/i386/conf/GENERIC: revision 1.357
sys/arch/amd64/conf/GENERIC: revision 1.1075 via patch
Add urtw(4) driver for Realtek RTL8187/RTL8187B 802.11b/g USB wireless
adapter. From OpenBSD.
Revision 1.581.2.2: download - view: text, markup, annotated - select for diffs
Thu Jun 14 09:48:46 2012 UTC (12 years, 6 months ago) by sborrill
Branches: netbsd-6
Diff to: previous 1.581.2.1: preferred, colored; branchpoint 1.581: preferred, colored
Changes since revision 1.581.2.1: +2 -2
lines
Pull up the following revisions(s) (requested by riz in ticket #326):
distrib/sets/lists/base/mi: 1.989
distrib/sets/lists/man/mi: 1.1385
etc/mtree/NetBSD.dist.base: 1.99
share/man/man4/Makefile: 1.583
share/man/man4/urtwn.4: 1.1
share/man/man4/usb.4: 1.97
sys/arch/amd64/conf/GENERIC: 1.351
sys/arch/i386/conf/GENERIC: 1.1068
sys/dev/usb/files.usb: 1.121
sys/dev/usb/if_urtwn.c: 1.1-1.4
sys/dev/usb/if_urtwn_data.h: 1.1
sys/dev/usb/if_urtwnreg.h: 1.1
sys/dev/usb/if_urtwnvar.h: 1.1
sys/dev/usb/usbdevices.config: 1.13
sys/dev/usb/usbdevs: 1.621 via patch
sys/dev/usb/usbdevs.h: regen
sys/dev/usb/usbdevs_data.h: regen
sys/modules/if_urtwn/Makefile: 1.1
sys/modules/if_urtwn/if_urtwn.ioconf: 1.1
Add support for urtwn(4) wireless. Ported from OpenBSD
Revision 1.586: download - view: text, markup, annotated - select for diffs
Wed May 30 20:13:10 2012 UTC (12 years, 6 months ago) by wiz
Branches: MAIN
Diff to: previous 1.585: preferred, colored
Changes since revision 1.585: +3 -2
lines
Install urtw(4).
Revision 1.585: download - view: text, markup, annotated - select for diffs
Wed May 30 14:30:33 2012 UTC (12 years, 6 months ago) by nonaka
Branches: MAIN
Diff to: previous 1.584: preferred, colored
Changes since revision 1.584: +2 -2
lines
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 1.572.2.3: download - view: text, markup, annotated - select for diffs
Wed May 23 10:07:35 2012 UTC (12 years, 6 months ago) by yamt
Branches: yamt-pagecache
Diff to: previous 1.572.2.2: preferred, colored; branchpoint 1.572: preferred, colored
Changes since revision 1.572.2.2: +2 -2
lines
sync with head.
Revision 1.581.2.1: download - view: text, markup, annotated - select for diffs
Mon Apr 23 16:31:36 2012 UTC (12 years, 7 months ago) by riz
Branches: netbsd-6
Diff to: previous 1.581: preferred, colored
Changes since revision 1.581: +2 -2
lines
Pull up following revision(s) (requested by bouyer in ticket #193):
sys/arch/i386/conf/GENERIC: revision 1.1072
sys/dev/pci/mpii.c: revision 1.1
sys/arch/i386/conf/XEN3_DOM0: revision 1.66
sys/dev/pci/files.pci: revision 1.357
share/man/man4/Makefile: revision 1.584
distrib/sets/lists/man/mi: revision 1.1387
share/man/man4/mpii.4: revision 1.1
sys/arch/amd64/conf/GENERIC: revision 1.354
sys/arch/amd64/conf/XEN3_DOM0: revision 1.83
sys/arch/i386/conf/ALL: revision 1.337
Add mpii(4), a driver for LSI Logic Fusion-MPT Message Passing Interface II
SAS controllers. Ported from OpenBSD.
Revision 1.584: download - view: text, markup, annotated - select for diffs
Thu Apr 19 17:50:50 2012 UTC (12 years, 7 months ago) by bouyer
Branches: MAIN
CVS tags: yamt-pagecache-base5
Diff to: previous 1.583: preferred, colored
Changes since revision 1.583: +2 -2
lines
Add mpii(4), a driver for LSI Logic Fusion-MPT Message Passing Interface II
SAS controllers. Ported from OpenBSD.
Revision 1.572.2.2: download - view: text, markup, annotated - select for diffs
Tue Apr 17 00:05:45 2012 UTC (12 years, 7 months ago) by yamt
Branches: yamt-pagecache
Diff to: previous 1.572.2.1: preferred, colored; branchpoint 1.572: preferred, colored
Changes since revision 1.572.2.1: +14 -13
lines
sync with head
Revision 1.583: download - view: text, markup, annotated - select for diffs
Sun Mar 25 00:11:17 2012 UTC (12 years, 8 months ago) by nonaka
Branches: MAIN
CVS tags: yamt-pagecache-base4
Diff to: previous 1.582: preferred, colored
Changes since revision 1.582: +2 -2
lines
Added urtwn(4), a driver for Realtek RTL8188CU/RTL8192CU USB IEEE 802.11b/g/n wireless network devices.
Revision 1.582: download - view: text, markup, annotated - select for diffs
Thu Mar 22 20:34:38 2012 UTC (12 years, 8 months ago) by drochner
Branches: MAIN
Diff to: previous 1.581: preferred, colored
Changes since revision 1.581: +2 -2
lines
remove KAME IPSEC, replaced by FAST_IPSEC
Revision 1.581: download - view: text, markup, annotated - select for diffs
Tue Feb 14 17:35:11 2012 UTC (12 years, 9 months ago) by plunky
Branches: MAIN
CVS tags: netbsd-6-base
Branch point for: netbsd-6
Diff to: previous 1.580: preferred, colored
Changes since revision 1.580: +2 -2
lines
add aubtfwl.4 to the build
Revision 1.482.2.11: download - view: text, markup, annotated - select for diffs
Wed Jan 25 21:18:16 2012 UTC (12 years, 10 months ago) by riz
Branches: netbsd-5
Diff to: previous 1.482.2.10: preferred, colored; branchpoint 1.482: preferred, colored
Changes since revision 1.482.2.10: +2 -1
lines
Pull up following revision(s) (requested by hannken in ticket #1715):
- Be robust against an invalid timer period value.
sys/dev/ic/hpetreg.h Rev. 1.4
sys/dev/ic/hpet.c Rev. 1.8
- Fix wrong definition of LAPIC_LEVEL_ASSERT / _MASK
sys/arch/x86/include/i82489reg.h Rev. 1.11
- Add virtio driver - speed up disk and network access in virtual environments
sys/arch/i386/conf/GENERIC Rev. 1.1055
sys/arch/i386/conf/ALL Rev. 1.325
sys/arch/amd64/conf/GENERIC Rev. 1.338
sys/dev/pci/files.pci Rev. 1.350
sys/dev/pci/if_vioif.c Rev. 0-1.2
sys/dev/pci/ld_virtio.c Rev. 0-1.4
sys/dev/pci/viomb.c Rev. 0-1.1
sys/dev/pci/virtio.c Rev. 0-1.3
sys/dev/pci/virtioreg.h Rev. 0-1.1
sys/dev/pci/virtiovar.h Rev. 0-1.1
distrib/sets/lists/man/mi Rev. 1.1352 and 1.1358
share/man/man4/Makefile Rev. 1.573 and 1.575
share/man/man4/ld.4 Rev. 1.19
share/man/man4/virtio.4 Rev. 0-1.4
share/man/man4/vioif.4 Rev. 0-1.2
share/man/man4/viomb.4 Rev. 0-1.2
Allow NetBSD to run unmodified under Linux/kvm.
Revision 1.580: download - view: text, markup, annotated - select for diffs
Sun Jan 22 06:44:31 2012 UTC (12 years, 10 months ago) by christos
Branches: MAIN
Diff to: previous 1.579: preferred, colored
Changes since revision 1.579: +3 -3
lines
add a tpm driver from bsssd.sourceforge.net
Revision 1.579: download - view: text, markup, annotated - select for diffs
Tue Jan 17 07:04:08 2012 UTC (12 years, 10 months ago) by mbalmer
Branches: MAIN
Diff to: previous 1.578: preferred, colored
Changes since revision 1.578: +2 -2
lines
Remove trailing whitespace. Reported by Brad Harder.
Revision 1.578: download - view: text, markup, annotated - select for diffs
Tue Jan 17 03:49:19 2012 UTC (12 years, 10 months ago) by christos
Branches: MAIN
Diff to: previous 1.577: preferred, colored
Changes since revision 1.577: +8 -8
lines
PR/45850: Pierre Pronchery: USB multi-touch panels are not supported
Revision 1.577: download - view: text, markup, annotated - select for diffs
Mon Jan 9 15:16:31 2012 UTC (12 years, 11 months ago) by drochner
Branches: MAIN
Diff to: previous 1.576: preferred, colored
Changes since revision 1.576: +2 -2
lines
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).
Revision 1.576: download - view: text, markup, annotated - select for diffs
Wed Jan 4 16:25:16 2012 UTC (12 years, 11 months ago) by yamt
Branches: MAIN
Diff to: previous 1.575: preferred, colored
Changes since revision 1.575: +2 -2
lines
install tprof related commands and man pages.
Revision 1.482.2.1.4.2: download - view: text, markup, annotated - select for diffs
Tue Dec 27 17:35:46 2011 UTC (12 years, 11 months ago) by matt
Branches: matt-nb5-mips64
Diff to: previous 1.482.2.1.4.1: preferred, colored; branchpoint 1.482.2.1: preferred, colored; next MAIN 1.482.2.2: preferred, colored
Changes since revision 1.482.2.1.4.1: +2 -2
lines
Merge flash/nand/nor infrastruct from matt-nb5-pq3.
Revision 1.575: download - view: text, markup, annotated - select for diffs
Sat Nov 26 15:04:45 2011 UTC (13 years ago) by minoura
Branches: MAIN
Diff to: previous 1.574: preferred, colored
Changes since revision 1.574: +3 -3
lines
Add vioif(4) and viomb(4).
Revision 1.574: download - view: text, markup, annotated - select for diffs
Sun Nov 13 12:35:40 2011 UTC (13 years, 1 month ago) by mbalmer
Branches: MAIN
Diff to: previous 1.573: preferred, colored
Changes since revision 1.573: +3 -2
lines
Add documentation for gpiopwm(4).
Revision 1.572.2.1: download - view: text, markup, annotated - select for diffs
Thu Nov 10 14:31:37 2011 UTC (13 years, 1 month ago) by yamt
Branches: yamt-pagecache
Diff to: previous 1.572: preferred, colored
Changes since revision 1.572: +3 -3
lines
sync with head
Revision 1.573: download - view: text, markup, annotated - select for diffs
Sat Nov 5 09:22:44 2011 UTC (13 years, 1 month ago) by hannken
Branches: MAIN
CVS tags: yamt-pagecache-base3,
yamt-pagecache-base2
Diff to: previous 1.572: preferred, colored
Changes since revision 1.572: +3 -3
lines
Document virtio(4).
Revision 1.572: download - view: text, markup, annotated - select for diffs
Tue Oct 18 10:19:12 2011 UTC (13 years, 1 month ago) by wiz
Branches: MAIN
CVS tags: yamt-pagecache-base
Branch point for: yamt-pagecache
Diff to: previous 1.571: preferred, colored
Changes since revision 1.571: +2 -2
lines
Move vmt(4) to x86 subdir.
No obsolete entries added for set lists since original import was just an
hour ago.
Revision 1.571: download - view: text, markup, annotated - select for diffs
Tue Oct 18 09:50:24 2011 UTC (13 years, 1 month ago) by wiz
Branches: MAIN
Diff to: previous 1.570: preferred, colored
Changes since revision 1.570: +2 -2
lines
Add vmt(4) from OpenBSD.
Revision 1.570: download - view: text, markup, annotated - select for diffs
Thu Sep 29 23:35:48 2011 UTC (13 years, 2 months ago) by sjg
Branches: MAIN
Diff to: previous 1.569: preferred, colored
Changes since revision 1.569: +2 -2
lines
Install the man page for filemon(4).
Revision 1.569: download - view: text, markup, annotated - select for diffs
Tue Aug 30 07:07:04 2011 UTC (13 years, 3 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.568: preferred, colored
Changes since revision 1.568: +6 -2
lines
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.
Revision 1.568: download - view: text, markup, annotated - select for diffs
Tue Aug 30 05:59:44 2011 UTC (13 years, 3 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.567: preferred, colored
Changes since revision 1.567: +1 -2
lines
Deprecate the tuner(4) page (link to bktr(4)), as the name is too general
and nowadays misleading.
Revision 1.567: download - view: text, markup, annotated - select for diffs
Tue Aug 30 05:40:38 2011 UTC (13 years, 3 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.566: preferred, colored
Changes since revision 1.566: +13 -2
lines
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.
Revision 1.566: download - view: text, markup, annotated - select for diffs
Mon Aug 29 10:48:57 2011 UTC (13 years, 3 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.565: preferred, colored
Changes since revision 1.565: +2 -2
lines
Install the dtv(4) manual page. (The stub man-pages are commented out ATM.)
Revision 1.565: download - view: text, markup, annotated - select for diffs
Sun Aug 14 16:11:16 2011 UTC (13 years, 4 months ago) by wiz
Branches: MAIN
Diff to: previous 1.564: preferred, colored
Changes since revision 1.564: +2 -2
lines
Install irmce(4) after review by jmcneill.
Sort set lists while there.
Revision 1.564: download - view: text, markup, annotated - select for diffs
Fri Aug 12 22:04:34 2011 UTC (13 years, 4 months ago) by dyoung
Branches: MAIN
Diff to: previous 1.563: preferred, colored
Changes since revision 1.563: +2 -2
lines
Install the ixg(4) manual page.
Revision 1.563: download - view: text, markup, annotated - select for diffs
Thu Aug 11 07:33:25 2011 UTC (13 years, 4 months ago) by mbalmer
Branches: MAIN
Diff to: previous 1.562: preferred, colored
Changes since revision 1.562: +2 -2
lines
pwdog(4) is a device driver for QUANCOM Electronic PWDOG1 PCI
attached watchdog timers.
Revision 1.482.2.9.2.1: download - view: text, markup, annotated - select for diffs
Tue Jul 26 03:22:25 2011 UTC (13 years, 4 months ago) by matt
Branches: matt-nb5-pq3
Diff to: previous 1.482.2.9: preferred, colored; next MAIN 1.482.2.10: preferred, colored
Changes since revision 1.482.2.9: +2 -2
lines
Backport flash/nand/nor subsystem from -HEAD.
Revision 1.562: download - view: text, markup, annotated - select for diffs
Wed Jul 20 20:51:12 2011 UTC (13 years, 4 months ago) by jakllsch
Branches: MAIN
Diff to: previous 1.561: preferred, colored
Changes since revision 1.561: +3 -2
lines
Add urndis(4) manual page.
Revision 1.561: download - view: text, markup, annotated - select for diffs
Wed Jul 13 07:52:49 2011 UTC (13 years, 5 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.560: preferred, colored
Changes since revision 1.560: +2 -2
lines
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.
Revision 1.560: download - view: text, markup, annotated - select for diffs
Wed Jun 22 20:29:38 2011 UTC (13 years, 5 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.559: preferred, colored
Changes since revision 1.559: +2 -2
lines
Add a small summary page for altq. From the list in PR # kern/21345.
Revision 1.559: download - view: text, markup, annotated - select for diffs
Wed Jun 22 19:34:53 2011 UTC (13 years, 5 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.558: preferred, colored
Changes since revision 1.558: +2 -2
lines
Add a small summary page for sysmon. From the list in PR # kern/21345.
Revision 1.415.2.12: download - view: text, markup, annotated - select for diffs
Sun May 8 17:18:19 2011 UTC (13 years, 7 months ago) by bouyer
Branches: netbsd-4
Diff to: previous 1.415.2.11: preferred, colored; branchpoint 1.415: preferred, colored; next MAIN 1.416: preferred, colored
Changes since revision 1.415.2.11: +2 -2
lines
Pull up following revision(s) (requested by fair in ticket #1422):
share/man/man4/gtp.4: revision 1.1
distrib/sets/lists/man/mi: revision 1.1304
share/man/man4/Makefile: revision 1.556
The mr(4) driver was replaced by gtp(4) in 2002, but the documentation
did not follow; fix PR kern/40070
Revision 1.558: download - view: text, markup, annotated - select for diffs
Tue Apr 5 11:24:46 2011 UTC (13 years, 8 months ago) by phx
Branches: MAIN
CVS tags: cherry-xenmp-base,
cherry-xenmp
Diff to: previous 1.557: preferred, colored
Changes since revision 1.557: +3 -2
lines
Add man page for s390rtc(4).
Revision 1.557: download - view: text, markup, annotated - select for diffs
Mon Apr 4 17:26:24 2011 UTC (13 years, 8 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.556: preferred, colored
Changes since revision 1.556: +3 -3
lines
Add a man page for rdcpcib(4). While there move rdcide.4 to i386/
Revision 1.482.2.10: download - view: text, markup, annotated - select for diffs
Tue Mar 29 20:09:01 2011 UTC (13 years, 8 months ago) by riz
Branches: netbsd-5
Diff to: previous 1.482.2.9: preferred, colored; branchpoint 1.482: preferred, colored
Changes since revision 1.482.2.9: +2 -2
lines
Pull up following revision(s) (requested by fair in ticket #1584):
share/man/man4/gtp.4: revision 1.1
share/man/man4/mr.4: file removal
distrib/sets/lists/man/mi: revision 1.1304
distrib/sets/lists/man/mi: revision 1.1305
share/man/man4/Makefile: revision 1.556
The mr(4) driver was replaced by gtp(4) in 2002, but the documentation
did not follow; fix PR kern/40070
I missed the .0 and .html changes for mr.4 replacement by gtp.4 in PR =
kern/40070
Now corrected.
Revision 1.556: download - view: text, markup, annotated - select for diffs
Sun Mar 27 00:08:07 2011 UTC (13 years, 8 months ago) by fair
Branches: MAIN
Diff to: previous 1.555: preferred, colored
Changes since revision 1.555: +2 -2
lines
The mr(4) driver was replaced by gtp(4) in 2002, but the documentation
did not follow; fix PR kern/40070
Revision 1.544.2.3: download - view: text, markup, annotated - select for diffs
Sat Mar 5 15:09:25 2011 UTC (13 years, 9 months ago) by bouyer
Branches: bouyer-quota2
Diff to: previous 1.544.2.2: preferred, colored; next MAIN 1.545: preferred, colored
Changes since revision 1.544.2.2: +5 -5
lines
Sync with HEAD
Revision 1.555: download - view: text, markup, annotated - select for diffs
Sat Feb 26 18:07:17 2011 UTC (13 years, 9 months ago) by ahoka
Branches: MAIN
CVS tags: bouyer-quota2-nbase
Diff to: previous 1.554: preferred, colored
Changes since revision 1.554: +2 -2
lines
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
Revision 1.554: download - view: text, markup, annotated - select for diffs
Wed Feb 23 08:52:16 2011 UTC (13 years, 9 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.553: preferred, colored
Changes since revision 1.553: +2 -2
lines
Move coretemp(4) to man4.x86.
Revision 1.553: download - view: text, markup, annotated - select for diffs
Wed Feb 23 02:47:46 2011 UTC (13 years, 9 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.552: preferred, colored
Changes since revision 1.552: +2 -2
lines
add alc(4) man page
Revision 1.552: download - view: text, markup, annotated - select for diffs
Sun Feb 20 08:31:46 2011 UTC (13 years, 9 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.551: preferred, colored
Changes since revision 1.551: +3 -3
lines
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 1.544.2.2: download - view: text, markup, annotated - select for diffs
Thu Feb 17 11:59:26 2011 UTC (13 years, 9 months ago) by bouyer
Branches: bouyer-quota2
Diff to: previous 1.544.2.1: preferred, colored
Changes since revision 1.544.2.1: +6 -2
lines
Sync with HEAD
Revision 1.551: download - view: text, markup, annotated - select for diffs
Wed Feb 16 07:30:26 2011 UTC (13 years, 9 months ago) by jruoho
Branches: MAIN
CVS tags: uebayasi-xip-base7,
bouyer-quota2-base
Diff to: previous 1.550: preferred, colored
Changes since revision 1.550: +2 -1
lines
Add a skeleton driver for Asus EeePC acpiwmi(4) mappings.
Revision 1.550: download - view: text, markup, annotated - select for diffs
Mon Feb 14 08:50:39 2011 UTC (13 years, 9 months ago) by hannken
Branches: MAIN
Diff to: previous 1.549: preferred, colored
Changes since revision 1.549: +2 -2
lines
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.
Revision 1.549: download - view: text, markup, annotated - select for diffs
Wed Feb 9 15:31:30 2011 UTC (13 years, 10 months ago) by tsutsui
Branches: MAIN
Diff to: previous 1.548: preferred, colored
Changes since revision 1.548: +4 -1
lines
Don't forget to build and install MI HIL man pages.
Revision 1.544.2.1: download - view: text, markup, annotated - select for diffs
Tue Feb 8 16:19:07 2011 UTC (13 years, 10 months ago) by bouyer
Branches: bouyer-quota2
Diff to: previous 1.544: preferred, colored
Changes since revision 1.544: +12 -11
lines
Sync with HEAD
Revision 1.548: download - view: text, markup, annotated - select for diffs
Wed Jan 26 18:48:12 2011 UTC (13 years, 10 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.547: preferred, colored
Changes since revision 1.547: +4 -4
lines
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.
Revision 1.547: download - view: text, markup, annotated - select for diffs
Wed Jan 26 11:25:51 2011 UTC (13 years, 10 months ago) by nisimura
Branches: MAIN
Diff to: previous 1.546: preferred, colored
Changes since revision 1.546: +3 -3
lines
introduce sandpoint satmgr(4) and altboot(8) man page entries.
Revision 1.546: download - view: text, markup, annotated - select for diffs
Wed Jan 26 01:18:48 2011 UTC (13 years, 10 months ago) by pooka
Branches: MAIN
Diff to: previous 1.545: preferred, colored
Changes since revision 1.545: +3 -2
lines
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.
Revision 1.545: download - view: text, markup, annotated - select for diffs
Mon Jan 24 01:15:00 2011 UTC (13 years, 10 months ago) by jakllsch
Branches: MAIN
Diff to: previous 1.544: preferred, colored
Changes since revision 1.544: +5 -5
lines
Add pcf8563rtc(4) manual page. Derived from rs5c372rtc(4).
Revision 1.544: download - view: text, markup, annotated - select for diffs
Mon Jan 17 16:08:20 2011 UTC (13 years, 10 months ago) by jmcneill
Branches: MAIN
Branch point for: bouyer-quota2
Diff to: previous 1.543: preferred, colored
Changes since revision 1.543: +2 -2
lines
add acpiwdrt(4) man page
Revision 1.543: download - view: text, markup, annotated - select for diffs
Tue Jan 11 00:45:04 2011 UTC (13 years, 11 months ago) by jym
Branches: MAIN
Diff to: previous 1.542: preferred, colored
Changes since revision 1.542: +4 -1
lines
Add man pages for Xen devices:
pciback.4 xbd.4 xbdback.4 xenbus.4 xennet.4 xpci.4 xvif.4
Blessed by bouyer@
Revision 1.542: download - view: text, markup, annotated - select for diffs
Sun Jan 9 15:12:34 2011 UTC (13 years, 11 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.541: preferred, colored
Changes since revision 1.541: +2 -2
lines
Add a dummy-driver for ACPI fans.
Revision 1.541: download - view: text, markup, annotated - select for diffs
Wed Jan 5 20:08:13 2011 UTC (13 years, 11 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.540: preferred, colored
Changes since revision 1.540: +2 -2
lines
Add a driver for ACPI power meters.
Revision 1.540: download - view: text, markup, annotated - select for diffs
Mon Dec 27 17:26:58 2010 UTC (13 years, 11 months ago) by jmcneill
Branches: MAIN
CVS tags: matt-mips64-premerge-20101231
Diff to: previous 1.539: preferred, colored
Changes since revision 1.539: +2 -2
lines
add auvitek(4) man page
Revision 1.539: download - view: text, markup, annotated - select for diffs
Tue Dec 14 16:18:15 2010 UTC (14 years ago) by jruoho
Branches: MAIN
Diff to: previous 1.538: preferred, colored
Changes since revision 1.538: +2 -2
lines
By majority vote, move module(4) to the section 7.
Revision 1.538: download - view: text, markup, annotated - select for diffs
Sun Dec 12 19:29:01 2010 UTC (14 years ago) by pgoyette
Branches: MAIN
Diff to: previous 1.537: preferred, colored
Changes since revision 1.537: +2 -2
lines
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.
Revision 1.537: download - view: text, markup, annotated - select for diffs
Sun Nov 28 01:57:17 2010 UTC (14 years ago) by christos
Branches: MAIN
Diff to: previous 1.536: preferred, colored
Changes since revision 1.536: +2 -2
lines
Add ihphy
Revision 1.482.2.9: download - view: text, markup, annotated - select for diffs
Sun Nov 21 03:05:10 2010 UTC (14 years ago) by riz
Branches: netbsd-5
CVS tags: matt-nb5-pq3-base
Branch point for: matt-nb5-pq3
Diff to: previous 1.482.2.8: preferred, colored; branchpoint 1.482: preferred, colored
Changes since revision 1.482.2.8: +3 -2
lines
Pull up following revision(s) (requested by plunky in ticket #1407):
sys/dev/bluetooth/btdev.h: revision 1.9
sys/arch/iyonix/conf/GENERIC: revision 1.60
sys/arch/sparc64/conf/GENERIC: revision 1.129
sys/dev/usb/hid.c: revision 1.30
sys/dev/usb/hid.h: revision 1.13
sys/arch/i386/conf/GENERIC: revision 1.983
usr.sbin/btdevctl/print.c: revision 1.10
sys/arch/evbarm/conf/MPCSA_GENERIC: revision 1.16
sys/arch/alpha/conf/GENERIC: revision 1.337
sys/dev/bluetooth/files.bluetooth: revision 1.14
sys/arch/evbarm/conf/GUMSTIX: revision 1.49
sys/dev/usb/usbdevs: revision 1.550
sys/arch/evbppc/conf/OPENBLOCKS266_OPT: revision 1.14
sys/arch/hpcsh/conf/GENERIC: revision 1.91
sys/dev/bluetooth/btmagic.c: revision 1.1
distrib/sets/lists/man/mi: revision 1.1210
sys/arch/amd64/conf/GENERIC: revision 1.279
sys/arch/i386/conf/ALL: revision 1.258
sys/arch/amd64/conf/XEN3_DOM0: revision 1.54
sys/arch/hpcarm/conf/JORNADA720: revision 1.78
sys/dev/usb/hid.c: revision 1.29
share/man/man4/btmagic.4: revision 1.1
hid_get_data() does not work if the size of data is less than
a byte and crosses a byte boundary, and it always returns a
sign-extended value.
fix this by using the algorithm from libusbhid to read bytes,
and provide a hid_get_udata() function to return unsigned data
values.
while here, const args
update DPRINTF to reflect actual function name
add Apple Magic Mouse product-id
regen for Magic Mouse id
allow for vendor-id and product-id properties, passing them
through to child devices
add Magic Mouse driver and manpage btmagic(4)
additionally query the "PnP Information" service record to discover
any USB Forum vendor-id and product-id values and store them in the
property list if found.
add btmagic(4) where other Bluetooth drivers are listed
Revision 1.536: download - view: text, markup, annotated - select for diffs
Mon Nov 15 23:10:51 2010 UTC (14 years ago) by pooka
Branches: MAIN
Diff to: previous 1.535: preferred, colored
Changes since revision 1.535: +2 -2
lines
document shmif, or at least what's implemented so far
Revision 1.535: download - view: text, markup, annotated - select for diffs
Mon Nov 15 23:07:38 2010 UTC (14 years ago) by skrll
Branches: MAIN
Diff to: previous 1.534: preferred, colored
Changes since revision 1.534: +2 -2
lines
Add a man page for nside(4).
Revision 1.534: download - view: text, markup, annotated - select for diffs
Mon Nov 15 21:52:47 2010 UTC (14 years ago) by pooka
Branches: MAIN
Diff to: previous 1.533: preferred, colored
Changes since revision 1.533: +3 -3
lines
Exploit the fact that wizd is currently running and add a manpage
for the rump virtif.
Revision 1.533: download - view: text, markup, annotated - select for diffs
Sat Nov 13 00:47:24 2010 UTC (14 years, 1 month ago) by jnemeth
Branches: MAIN
CVS tags: uebayasi-xip-base6
Diff to: previous 1.532: preferred, colored
Changes since revision 1.532: +2 -2
lines
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 1.516.2.5: download - view: text, markup, annotated - select for diffs
Tue Nov 9 06:03:26 2010 UTC (14 years, 1 month ago) by uebayasi
Branches: uebayasi-xip
Diff to: previous 1.516.2.4: preferred, colored; branchpoint 1.516: preferred, colored; next MAIN 1.517: preferred, colored
Changes since revision 1.516.2.4: +2 -2
lines
Sync with HEAD.
Revision 1.532: download - view: text, markup, annotated - select for diffs
Sun Nov 7 01:12:22 2010 UTC (14 years, 1 month ago) by jakllsch
Branches: MAIN
CVS tags: uebayasi-xip-base5
Diff to: previous 1.531: preferred, colored
Changes since revision 1.531: +2 -2
lines
Add schide(4) man page.
Revision 1.516.2.4: download - view: text, markup, annotated - select for diffs
Sat Nov 6 08:05:44 2010 UTC (14 years, 1 month ago) by uebayasi
Branches: uebayasi-xip
Diff to: previous 1.516.2.3: preferred, colored; branchpoint 1.516: preferred, colored
Changes since revision 1.516.2.3: +7 -4
lines
Sync with HEAD.
Revision 1.531: download - view: text, markup, annotated - select for diffs
Fri Nov 5 10:28:22 2010 UTC (14 years, 1 month ago) by gsutre
Branches: MAIN
CVS tags: uebayasi-xip-base4
Diff to: previous 1.530: preferred, colored
Changes since revision 1.530: +3 -2
lines
Merge ACPI Fujitsu Driver. Provides support for hotkeys and other
built-in components through vendor-specific ACPI devices.
ok jruoho@
Revision 1.530: download - view: text, markup, annotated - select for diffs
Wed Nov 3 18:57:57 2010 UTC (14 years, 1 month ago) by christos
Branches: MAIN
Diff to: previous 1.529: preferred, colored
Changes since revision 1.529: +2 -2
lines
add otus.
Revision 1.529: download - view: text, markup, annotated - select for diffs
Sun Oct 24 08:57:57 2010 UTC (14 years, 1 month ago) by jruoho
Branches: MAIN
Diff to: previous 1.528: preferred, colored
Changes since revision 1.528: +4 -2
lines
Link wmimsi(4) to acpiwmi(4).
Revision 1.516.2.3: download - view: text, markup, annotated - select for diffs
Fri Oct 22 07:11:53 2010 UTC (14 years, 1 month ago) by uebayasi
Branches: uebayasi-xip
Diff to: previous 1.516.2.2: preferred, colored; branchpoint 1.516: preferred, colored
Changes since revision 1.516.2.2: +5 -4
lines
Sync with HEAD (-D20101022).
Revision 1.528: download - view: text, markup, annotated - select for diffs
Tue Oct 19 11:58:00 2010 UTC (14 years, 1 month ago) by pgoyette
Branches: MAIN
CVS tags: uebayasi-xip-base3
Diff to: previous 1.527: preferred, colored
Changes since revision 1.527: +2 -2
lines
Build the new swsensor(4) device and add to set lists
Revision 1.527: download - view: text, markup, annotated - select for diffs
Tue Oct 12 23:01:55 2010 UTC (14 years, 2 months ago) by gsutre
Branches: MAIN
Diff to: previous 1.526: preferred, colored
Changes since revision 1.526: +3 -2
lines
Add acpivga(4).
Revision 1.526: download - view: text, markup, annotated - select for diffs
Sat Oct 2 06:22:00 2010 UTC (14 years, 2 months ago) by kiyohara
Branches: MAIN
Diff to: previous 1.525: preferred, colored
Changes since revision 1.525: +2 -2
lines
Add g760a fan speed controller driver.
Revision 1.516.2.2: download - view: text, markup, annotated - select for diffs
Tue Aug 17 06:40:01 2010 UTC (14 years, 3 months ago) by uebayasi
Branches: uebayasi-xip
Diff to: previous 1.516.2.1: preferred, colored; branchpoint 1.516: preferred, colored
Changes since revision 1.516.2.1: +220 -0
lines
Sync with HEAD.
Revision 1.525: download - view: text, markup, annotated - select for diffs
Fri Aug 6 17:00:12 2010 UTC (14 years, 4 months ago) by jruoho
Branches: MAIN
CVS tags: uebayasi-xip-base2
Diff to: previous 1.524: preferred, colored
Changes since revision 1.524: +3 -3
lines
Move fwhrng(4) and ichlpcib(4) to the right category.
Revision 1.524: download - view: text, markup, annotated - select for diffs
Thu Aug 5 17:31:10 2010 UTC (14 years, 4 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.523: preferred, colored
Changes since revision 1.523: +3 -2
lines
Add acpicpu(4). Describes the basic functionality (will be adjusted as the
functionality grows). Contains a big list of caveats as a TODO.
Revision 1.523: download - view: text, markup, annotated - select for diffs
Thu Jul 29 18:25:19 2010 UTC (14 years, 4 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.522: preferred, colored
Changes since revision 1.522: +2 -2
lines
Add fwhrng(4). Ok jakllsch@.
Revision 1.522: download - view: text, markup, annotated - select for diffs
Thu Jul 8 20:00:24 2010 UTC (14 years, 5 months ago) by christos
Branches: MAIN
Diff to: previous 1.521: preferred, colored
Changes since revision 1.521: +2 -2
lines
man page for balloon driver from Cherry
Revision 1.521: download - view: text, markup, annotated - select for diffs
Sun Jul 4 15:21:58 2010 UTC (14 years, 5 months ago) by tsutsui
Branches: MAIN
Diff to: previous 1.520: preferred, colored
Changes since revision 1.520: +2 -2
lines
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.
Revision 1.520: download - view: text, markup, annotated - select for diffs
Tue Jun 29 14:10:04 2010 UTC (14 years, 5 months ago) by kefren
Branches: MAIN
Diff to: previous 1.519: preferred, colored
Changes since revision 1.519: +3 -3
lines
add mpls(4) manpage created with great help from wiz@
Revision 1.519: download - view: text, markup, annotated - select for diffs
Tue Jun 8 05:38:32 2010 UTC (14 years, 6 months ago) by riz
Branches: MAIN
Diff to: previous 1.518: preferred, colored
Changes since revision 1.518: +3 -2
lines
Create a manpage for igphy(4). kern/35398.
Revision 1.518: download - view: text, markup, annotated - select for diffs
Sun May 30 22:22:18 2010 UTC (14 years, 6 months ago) by wiz
Branches: MAIN
Diff to: previous 1.517: preferred, colored
Changes since revision 1.517: +2 -2
lines
Add man page for uark(4) from OpenBSD.
Revision 1.517: download - view: text, markup, annotated - select for diffs
Sat May 22 18:56:01 2010 UTC (14 years, 6 months ago) by plunky
Branches: MAIN
Diff to: previous 1.516: preferred, colored
Changes since revision 1.516: +3 -2
lines
add Magic Mouse driver and manpage btmagic(4)
Revision 1.482.2.1.4.1: download - view: text, markup, annotated - select for diffs
Wed Apr 21 05:26:46 2010 UTC (14 years, 7 months ago) by matt
Branches: matt-nb5-mips64
CVS tags: matt-nb5-mips64-premerge-20101231,
matt-nb5-mips64-k15
Diff to: previous 1.482.2.1: preferred, colored
Changes since revision 1.482.2.1: +13 -8
lines
sync to netbsd-5
Revision 1.516.2.1
Sat Apr 10 17:55:25 2010 UTC (14 years, 8 months ago) by uebayasi
Branches: uebayasi-xip
FILE REMOVED
Changes since revision 1.516: +0 -217
lines
file Makefile was added on branch uebayasi-xip on 2010-08-17 06:40:01 +0000
Revision 1.516: download - view: text, markup, annotated - select for diffs
Sat Apr 10 17:55:25 2010 UTC (14 years, 8 months ago) by jruoho
Branches: MAIN
CVS tags: uebayasi-xip-base1
Branch point for: uebayasi-xip
Diff to: previous 1.515: preferred, colored
Changes since revision 1.515: +2 -2
lines
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).
Revision 1.515: download - view: text, markup, annotated - select for diffs
Thu Apr 8 18:20:46 2010 UTC (14 years, 8 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.514: preferred, colored
Changes since revision 1.514: +2 -2
lines
Fix build failure noted by tnn@.
Revision 1.514: download - view: text, markup, annotated - select for diffs
Thu Apr 8 17:44:22 2010 UTC (14 years, 8 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.513: preferred, colored
Changes since revision 1.513: +2 -2
lines
Add wmihp(4).
Revision 1.513: download - view: text, markup, annotated - select for diffs
Thu Apr 8 10:06:25 2010 UTC (14 years, 8 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.512: preferred, colored
Changes since revision 1.512: +5 -4
lines
Add acpiwmi(4).
Revision 1.512: download - view: text, markup, annotated - select for diffs
Fri Mar 19 04:04:27 2010 UTC (14 years, 8 months ago) by cnst
Branches: MAIN
Diff to: previous 1.511: preferred, colored
Changes since revision 1.511: +3 -2
lines
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>.
Revision 1.511: download - view: text, markup, annotated - select for diffs
Thu Mar 11 10:38:37 2010 UTC (14 years, 9 months ago) by enami
Branches: MAIN
Diff to: previous 1.510: preferred, colored
Changes since revision 1.510: +2 -2
lines
Port uyurex(4) from OpenBSD. There is some XXX but works enough to
play with it.
Revision 1.510: download - view: text, markup, annotated - select for diffs
Sat Mar 6 21:05:36 2010 UTC (14 years, 9 months ago) by plunky
Branches: MAIN
Diff to: previous 1.509: preferred, colored
Changes since revision 1.509: +2 -2
lines
Add uhso(4) driver and manpage for Option N.V. Wireless WAN modems
Revision 1.509: download - view: text, markup, annotated - select for diffs
Sat Feb 27 16:12:49 2010 UTC (14 years, 9 months ago) by jruoho
Branches: MAIN
Diff to: previous 1.508: preferred, colored
Changes since revision 1.508: +2 -1
lines
Link acpiecdt to acpiec(4).
Revision 1.508: download - view: text, markup, annotated - select for diffs
Mon Feb 22 07:55:32 2010 UTC (14 years, 9 months ago) by jnemeth
Branches: MAIN
Diff to: previous 1.507: preferred, colored
Changes since revision 1.507: +2 -2
lines
smcsmon.4 -> smscmon.4
Revision 1.507: download - view: text, markup, annotated - select for diffs
Mon Feb 22 07:52:52 2010 UTC (14 years, 9 months ago) by jnemeth
Branches: MAIN
Diff to: previous 1.506: preferred, colored
Changes since revision 1.506: +2 -2
lines
remove accidentally committed et.4/etphy.4
Revision 1.506: download - view: text, markup, annotated - select for diffs
Mon Feb 22 07:48:43 2010 UTC (14 years, 9 months ago) by jnemeth
Branches: MAIN
Diff to: previous 1.505: preferred, colored
Changes since revision 1.505: +3 -3
lines
fix build breakage -- add new smscmon.4 man page
Revision 1.505: download - view: text, markup, annotated - select for diffs
Sun Feb 21 05:16:29 2010 UTC (14 years, 9 months ago) by cnst
Branches: MAIN
Diff to: previous 1.504: preferred, colored
Changes since revision 1.504: +3 -3
lines
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>.
Revision 1.504: download - view: text, markup, annotated - select for diffs
Tue Feb 9 03:19:50 2010 UTC (14 years, 10 months ago) by cnst
Branches: MAIN
Diff to: previous 1.503: preferred, colored
Changes since revision 1.503: +2 -2
lines
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>.
Revision 1.503: download - view: text, markup, annotated - select for diffs
Sat Feb 6 20:11:33 2010 UTC (14 years, 10 months ago) by pgoyette
Branches: MAIN
Diff to: previous 1.502: preferred, colored
Changes since revision 1.502: +2 -2
lines
Add man page and cross-refs for experimental acpismbus(4)
Revision 1.502: download - view: text, markup, annotated - select for diffs
Sat Feb 6 11:26:56 2010 UTC (14 years, 10 months ago) by tonio
Branches: MAIN
Diff to: previous 1.501: preferred, colored
Changes since revision 1.501: +2 -2
lines
Add uthum(4) man page
Revision 1.501: download - view: text, markup, annotated - select for diffs
Thu Jan 7 09:23:54 2010 UTC (14 years, 11 months ago) by jdc
Branches: MAIN
Diff to: previous 1.500: preferred, colored
Changes since revision 1.500: +2 -2
lines
Add cas(4) manual page.
Revision 1.500: download - view: text, markup, annotated - select for diffs
Mon Jan 4 16:57:48 2010 UTC (14 years, 11 months ago) by haad
Branches: MAIN
Diff to: previous 1.499: preferred, colored
Changes since revision 1.499: +2 -2
lines
Add device-mapper manual page to build and add it to apropriate lists.
Revision 1.482.2.8: download - view: text, markup, annotated - select for diffs
Wed Oct 28 09:03:42 2009 UTC (15 years, 1 month ago) by bouyer
Branches: netbsd-5
CVS tags: netbsd-5-1-RELEASE,
netbsd-5-1-RC4,
netbsd-5-1-RC3,
netbsd-5-1-RC2,
netbsd-5-1-RC1,
netbsd-5-1-5-RELEASE,
netbsd-5-1-4-RELEASE,
netbsd-5-1-3-RELEASE,
netbsd-5-1-2-RELEASE,
netbsd-5-1-1-RELEASE,
netbsd-5-1
Diff to: previous 1.482.2.7: preferred, colored; branchpoint 1.482: preferred, colored
Changes since revision 1.482.2.7: +3 -2
lines
Pull up the following revisions, requested by sborrill in ticket #1114:
share/man/man4/sdhc.4 1.1-1.2
sys/dev/pci/sdhc_pci.c 1.1-1.3
distrib/sets/lists/man/mi patch
share/man/man4/Makefile patch
sys/arch/amd64/conf/GENERIC patch
sys/arch/i386/conf/ALL patch
sys/arch/i386/conf/GENERIC patch
sys/dev/pci/files.pci patch
sys/dev/pci/pcidevs patch
sys/dev/pci/pcidevs.h regen
sys/dev/pci/pcidevs_data.h regen
Add sdhc(4), a driver for SD controllers following the SD Host
Controller Standard Simplified Specification.
Revision 1.482.2.7: download - view: text, markup, annotated - select for diffs
Thu Oct 8 09:47:08 2009 UTC (15 years, 2 months ago) by sborrill
Branches: netbsd-5
Diff to: previous 1.482.2.6: preferred, colored; branchpoint 1.482: preferred, colored
Changes since revision 1.482.2.6: +2 -2
lines
Pull up the following revisions(s) (requested by jmcneill in ticket #1045):
distrib/sets/lists/man/mi: revision 1.1160
share/man/man4/Makefile: revision 1.499
share/man/man4/wb.4: revision 1.1-1.2
share/man/man4/ld.4: revision 1.17
sys/arch/i386/conf/ALL: revision 1.215-1.216 + patch
sys/arch/i386/conf/GENERIC: revision 1.946-1.947 + patch
sys/arch/amd64/conf/GENERIC: revision 1.254-1.256 + patch
sys/conf/files: revision 1.958
sys/dev/acpi/files.acpi: revision 1.59
sys/dev/acpi/wb_acpi.c: revision 1.1
sys/dev/ic/w83l518d.c: revision 1.1
sys/dev/ic/w83l518d_sdmmc.c: revision 1.1
sys/dev/ic/w83l518d_sdmmc.h: revision 1.1
sys/dev/ic/w83l518dreg.h: revision 1.1
sys/dev/ic/w83l518dvar.h.c: revision 1.1
wb(4): Add a driver for Winbond W83L518D SD/MMC readers.
Revision 1.482.2.6: download - view: text, markup, annotated - select for diffs
Wed Oct 7 15:41:13 2009 UTC (15 years, 2 months ago) by sborrill
Branches: netbsd-5
Diff to: previous 1.482.2.5: preferred, colored; branchpoint 1.482: preferred, colored
Changes since revision 1.482.2.5: +2 -2
lines
Pull up the following revisions(s) (requested by jmcneill in ticket #1044):
distrib/sets/lists/man/mi: patch
share/man/man4/Makefile: patch
sys/arch/amd64/conf/files.amd64: 1.67
sys/arch/i386/conf/files.i386: 1.349
sys/conf/files 1.945
share/man/man4/sdmmc.4: 1.1-1.4
sys/dev/sdmmc/Makefile.sdmmcdevs 1.1
sys/dev/sdmmc/devlist2h.awk 1.1
sys/dev/sdmmc/files.sdmmc 1.1-1.2
sys/dev/sdmmc/ld_sdmmc.c 1.1-1.3
sys/dev/sdmmc/sbt.c 1.1-1.2
sys/dev/sdmmc/sdhc.c 1.1-1.3
sys/dev/sdmmc/sdhcreg.h 1.1
sys/dev/sdmmc/sdhcvar.h 1.1
sys/dev/sdmmc/sdmmc.c 1.1
sys/dev/sdmmc/sdmmc_cis.c 1.1
sys/dev/sdmmc/sdmmc_io.c 1.1
sys/dev/sdmmc/sdmmc_ioreg.h 1.1
sys/dev/sdmmc/sdmmc_mem.c 1.1-1.2
sys/dev/sdmmc/sdmmcchip.h 1.1
sys/dev/sdmmc/sdmmcdevs 1.1
sys/dev/sdmmc/sdmmcdevs.h 1.1-1.2
sys/dev/sdmmc/sdmmcreg.h 1.1-1.3
sys/dev/sdmmc/sdmmcvar.h 1.1
Add sdmmc framework
Revision 1.499: download - view: text, markup, annotated - select for diffs
Wed Sep 30 22:32:04 2009 UTC (15 years, 2 months ago) by jmcneill
Branches: MAIN
CVS tags: matt-premerge-20091211
Diff to: previous 1.498: preferred, colored
Changes since revision 1.498: +2 -2
lines
add wb(4) man page.
Revision 1.482.2.5: download - view: text, markup, annotated - select for diffs
Sat Sep 26 19:52:09 2009 UTC (15 years, 2 months ago) by snj
Branches: netbsd-5
Diff to: previous 1.482.2.4: preferred, colored; branchpoint 1.482: preferred, colored
Changes since revision 1.482.2.4: +4 -2
lines
Pull up following revision(s) (requested by jmcneill in ticket #946):
distrib/sets/lists/man/mi: revision 1.1155
doc/CHANGES: revision 1.1285
etc/MAKEDEV.tmpl: revision 1.128
share/man/man4/Makefile: revision 1.498 via patch
share/man/man4/hdaudio.4: revision 1.1-1.3
share/man/man8/MAKEDEV.8: revision 1.36
sys/arch/amd64/conf/GENERIC: revision 1.250-1.251
sys/arch/amd64/conf/XEN3_DOM0: revision 1.44-1.45
sys/arch/i386/conf/ALL: revision 1.206-1.207
sys/arch/i386/conf/GENERIC: revision 1.942-1.943
sys/arch/i386/conf/XEN3_DOM0: patch
sys/conf/majors: revision 1.47 via patch
sys/dev/pci/hdaudio/files.hdaudio: revision 1.1-1.2
sys/dev/pci/hdaudio/hdaudio.c: revision 1.1-1.4
sys/dev/pci/hdaudio/hdaudio_afg.c: revisions 1.1-1.14
sys/dev/pci/hdaudio/hdaudio_mixer.h: revisions 1.1-1.3
sys/dev/pci/hdaudio/hdaudio_pci.c: revisions 1.1-1.2
sys/dev/pci/hdaudio/hdaudioio.h: revisions 1.1-1.2
sys/dev/pci/hdaudio/hdaudioreg.h: revisions 1.1-1.3
sys/dev/pci/hdaudio/hdaudiovar.h: revisions 1.1-1.4
sys/dev/pci/files.pci: revisions 1.319 and 1.322 via patch
hdaudio(4) is a standards-compliant driver for 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:
hdaudio* at pci? dev ? function ?
hdafg* at hdaudiobus?
You should also:
cd /dev
sh MAKEDEV audio
Revision 1.498: download - view: text, markup, annotated - select for diffs
Sun Sep 6 17:25:55 2009 UTC (15 years, 3 months ago) by sborrill
Branches: MAIN
Diff to: previous 1.497: preferred, colored
Changes since revision 1.497: +4 -2
lines
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
Revision 1.497: download - view: text, markup, annotated - select for diffs
Fri Aug 14 21:17:21 2009 UTC (15 years, 4 months ago) by mbalmer
Branches: MAIN
Diff to: previous 1.496: preferred, colored
Changes since revision 1.496: +3 -3
lines
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.
Revision 1.496: download - view: text, markup, annotated - select for diffs
Sun Aug 9 08:20:53 2009 UTC (15 years, 4 months ago) by mbalmer
Branches: MAIN
Diff to: previous 1.495: preferred, colored
Changes since revision 1.495: +2 -2
lines
Add the manual page for the gpioiic(4) driver.
Revision 1.495: download - view: text, markup, annotated - select for diffs
Sun Aug 9 06:40:09 2009 UTC (15 years, 4 months ago) by kiyohara
Branches: MAIN
Diff to: previous 1.494: preferred, colored
Changes since revision 1.494: +2 -2
lines
Support SMSC LAN9118 Family Ethernet interfaces device driver.
It tested on GUMSTIX only.
Revision 1.494: download - view: text, markup, annotated - select for diffs
Sat Aug 1 15:43:01 2009 UTC (15 years, 4 months ago) by mbalmer
Branches: MAIN
Diff to: previous 1.493: preferred, colored
Changes since revision 1.493: +2 -2
lines
Add a manual page for the gpiosim(4) pseudo-device.
Revision 1.493: download - view: text, markup, annotated - select for diffs
Mon Jul 27 12:34:13 2009 UTC (15 years, 4 months ago) by kiyohara
Branches: MAIN
Diff to: previous 1.492: preferred, colored
Changes since revision 1.492: +2 -2
lines
Support Marvell Hercules-I/II SATA Controllers.
Revision 1.492: download - view: text, markup, annotated - select for diffs
Fri Jun 5 07:21:14 2009 UTC (15 years, 6 months ago) by hubertf
Branches: MAIN
Diff to: previous 1.491: preferred, colored
Changes since revision 1.491: +2 -2
lines
Add iic(4) manpage, partly taken from OpenBSD.
Revision 1.350.2.17: download - view: text, markup, annotated - select for diffs
Sat May 30 06:27:00 2009 UTC (15 years, 6 months ago) by snj
Branches: netbsd-3
Diff to: previous 1.350.2.16: preferred, colored; branchpoint 1.350: preferred, colored; next MAIN 1.351: preferred, colored
Changes since revision 1.350.2.16: +2 -2
lines
Pull up following revision(s) (requested by jnemeth in ticket #2017):
share/man/man4/Makefile: revision 1.430
note new xirc manpage
Revision 1.487.2.1: download - view: text, markup, annotated - select for diffs
Wed May 13 19:19:08 2009 UTC (15 years, 7 months ago) by jym
Branches: jym-xensuspend
Diff to: previous 1.487: preferred, colored; next MAIN 1.488: preferred, colored
Changes since revision 1.487: +7 -3
lines
Sync with HEAD.
Third (and last) commit. See http://mail-index.netbsd.org/source-changes/2009/05/13/msg221222.html
Revision 1.491: download - view: text, markup, annotated - select for diffs
Sat May 9 15:04:25 2009 UTC (15 years, 7 months ago) by pgoyette
Branches: MAIN
CVS tags: jym-xensuspend-nbase,
jym-xensuspend-base
Diff to: previous 1.490: preferred, colored
Changes since revision 1.490: +2 -2
lines
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.)
Revision 1.482.2.4: download - view: text, markup, annotated - select for diffs
Mon May 4 01:31:49 2009 UTC (15 years, 7 months ago) by snj
Branches: netbsd-5
Diff to: previous 1.482.2.3: preferred, colored; branchpoint 1.482: preferred, colored
Changes since revision 1.482.2.3: +2 -2
lines
Revert revision 1.488 (addition of altmem), which was part of ticket
735. Bad cegger!
Revision 1.482.2.3: download - view: text, markup, annotated - select for diffs
Sun May 3 23:45:47 2009 UTC (15 years, 7 months ago) by snj
Branches: netbsd-5
Diff to: previous 1.482.2.2: preferred, colored; branchpoint 1.482: preferred, colored
Changes since revision 1.482.2.2: +6 -4
lines
Pull up following revision(s) (requested by cegger in ticket #735):
sys/dev/pci/if_age.c: revisions 1.1-1.28
sys/dev/pci/if_agereg.h: revisions 1.1-1.2
sys/dev/pci/if_ale.c: revisions 1.1-1.3
sys/dev/pci/if_alereg.h: revisions 1.1-1.2
sys/dev/pci/files.pci: revisions 1.310-1.313
sys/dev/mii/atphy.c: revisions 1.1-1.5
sys/dev/mii/files.mii: revision 1.42
share/man/man4/age.4: revisions 1.1-1.3
share/man/man4/ale.4: revisions 1.1-1.2
share/man/man4/atphy.4: revisions 1.1-1.2
share/man/man4/Makefile: revisions 1.486, 1.489
distrib/sets/lists/man/mi: revisions 1.1118, 1.1132
sys/arch/i386/conf/GENERIC: revisions 1.928, 1.933
sys/arch/i386/conf/XEN2_DOM0: revisions 1.57, 1.60
sys/arch/amd64/conf/GENERIC: revisions 1.239, 1.241
sys/arch/amd64/conf/XEN3_DOM0: revisions 1.38, 1.42
Add the age(4) and ale(4) drivers for Attansic L1 and Atheros
AR8121/AR8113/AR8114 devices respectively.
Revision 1.482.2.2: download - view: text, markup, annotated - select for diffs
Fri May 1 01:24:18 2009 UTC (15 years, 7 months ago) by snj
Branches: netbsd-5
Diff to: previous 1.482.2.1: preferred, colored; branchpoint 1.482: preferred, colored
Changes since revision 1.482.2.1: +2 -2
lines
Pull up following revision(s) (requested by jmcneill in ticket #261):
distrib/sets/lists/man/mi: revision 1.1117
share/man/man4/Makefile: revision 1.485
share/man/man4/gcscaudio.4: revision 1.1
Add man page for gcscaudio driver.
Revision 1.490: download - view: text, markup, annotated - select for diffs
Tue Apr 21 21:42:53 2009 UTC (15 years, 7 months ago) by pgoyette
Branches: MAIN
Diff to: previous 1.489: preferred, colored
Changes since revision 1.489: +4 -1
lines
Add man pages for recently imported SD/MMC drivers.
Revision 1.489: download - view: text, markup, annotated - select for diffs
Mon Apr 20 20:14:21 2009 UTC (15 years, 7 months ago) by cegger
Branches: MAIN
Diff to: previous 1.488: preferred, colored
Changes since revision 1.488: +3 -2
lines
add manpage for ale(4) driver
Revision 1.415.2.11: download - view: text, markup, annotated - select for diffs
Tue Mar 24 21:25:02 2009 UTC (15 years, 8 months ago) by bouyer
Branches: netbsd-4
Diff to: previous 1.415.2.10: preferred, colored; branchpoint 1.415: preferred, colored
Changes since revision 1.415.2.10: +2 -2
lines
Pullup the following revisions (requested by msaitoh in ticket #1284):
distrib/sets/lists/base/mi 1.706-707,1.797
distrib/sets/lists/man/mi 1.1006
etc/mtree/NetBSD.dist 1.340
share/man/man4/Makefile 1.432
sys/arch/amd64/conf/GENERIC 1.149 via patch
sys/arch/i386/conf/ALL 1.103
sys/arch/i386/conf/GENERIC 1.832
sys/arch/i386/conf/GENERIC_LAPTOP 1.237
sys/arch/macppc/conf/GENERIC 1.257
sys/arch/sparc64/conf/GENERIC 1.86
sys/dev/usb/usbdevs 1.468,1.479-480 via patch
sys/dev/usb/usbdevs.h regen
sys/dev/usb/usbdevs_data.h regen
sys/dev/microcode/Makefile 1.7
sys/dev/usb/files.usb patch
share/man/man4/zyd.4 1.1 via patch
sys/dev/microcode/zyd/Makefile 1.1-1.2
sys/dev/microcode/zyd/build.c 1.1
sys/dev/microcode/zyd/microcode.h 1.1
sys/dev/microcode/zyd/zd1211-license 1.1
sys/dev/microcode/zyd/zyd-zd1211 1.1
sys/dev/microcode/zyd/zyd-zd1211b 1.1
sys/dev/usb/if_zyd.c patch
sys/dev/usb/if_zydreg.h 1.1-1.2
Add ZyDAS ZD1211/ZD1211B USB IEEE 802.11b/g wireless network device support
Revision 1.488: download - view: text, markup, annotated - select for diffs
Thu Mar 12 00:16:16 2009 UTC (15 years, 9 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.487: preferred, colored
Changes since revision 1.487: +2 -2
lines
Add altmem(4) man page.
Revision 1.487: download - view: text, markup, annotated - select for diffs
Thu Feb 5 18:03:30 2009 UTC (15 years, 10 months ago) by sborrill
Branches: MAIN
Branch point for: jym-xensuspend
Diff to: previous 1.486: preferred, colored
Changes since revision 1.486: +2 -1
lines
Add bwi(4) man page based on Dragonfly man page
Revision 1.486: download - view: text, markup, annotated - select for diffs
Fri Jan 16 21:27:41 2009 UTC (15 years, 10 months ago) by cegger
Branches: MAIN
Diff to: previous 1.485: preferred, colored
Changes since revision 1.485: +4 -3
lines
manpages for new age(4) and atphy(4) drivers.
Revision 1.485: download - view: text, markup, annotated - select for diffs
Sun Jan 4 15:34:17 2009 UTC (15 years, 11 months ago) by wiz
Branches: MAIN
Diff to: previous 1.484: preferred, colored
Changes since revision 1.484: +2 -2
lines
Add man page for gcscaudio driver.
Revision 1.484: download - view: text, markup, annotated - select for diffs
Wed Nov 12 12:35:53 2008 UTC (16 years, 1 month ago) by ad
Branches: MAIN
Diff to: previous 1.483: preferred, colored
Changes since revision 1.483: +2 -2
lines
Remove LKMs and switch to the module framework, pass 1.
Proposed on tech-kern@.
Revision 1.482.2.1: download - view: text, markup, annotated - select for diffs
Sun Nov 9 04:55:31 2008 UTC (16 years, 1 month ago) by snj
Branches: netbsd-5
CVS tags: netbsd-5-0-RELEASE,
netbsd-5-0-RC4,
netbsd-5-0-RC3,
netbsd-5-0-RC2,
netbsd-5-0-RC1,
netbsd-5-0-2-RELEASE,
netbsd-5-0-1-RELEASE,
netbsd-5-0,
matt-nb5-mips64-u2-k2-k4-k7-k8-k9,
matt-nb5-mips64-u1-k1-k5,
matt-nb5-mips64-premerge-20091211,
matt-nb4-mips64-k7-u2a-k9b
Branch point for: matt-nb5-mips64
Diff to: previous 1.482: preferred, colored
Changes since revision 1.482: +2 -2
lines
Pull up following revision(s) (requested by tls in ticket #37):
share/man/man4/Makefile: revision 1.483
add new nsp.4 manpage
Revision 1.483: download - view: text, markup, annotated - select for diffs
Sun Nov 2 23:47:41 2008 UTC (16 years, 1 month ago) by jnemeth
Branches: MAIN
Diff to: previous 1.482: preferred, colored
Changes since revision 1.482: +2 -2
lines
add new nsp.4 manpage
Revision 1.482: download - view: text, markup, annotated - select for diffs
Wed Oct 29 17:26:57 2008 UTC (16 years, 1 month ago) by jkunz
Branches: MAIN
CVS tags: netbsd-5-base
Branch point for: netbsd-5
Diff to: previous 1.481: preferred, colored
Changes since revision 1.481: +3 -3
lines
Ported alipm(4) and admtemp(4) from OpenBSD.
Revision 1.481: download - view: text, markup, annotated - select for diffs
Sat Oct 18 20:44:53 2008 UTC (16 years, 1 month ago) by jmcneill
Branches: MAIN
CVS tags: matt-mips64-base2
Diff to: previous 1.480: preferred, colored
Changes since revision 1.480: +3 -2
lines
Add thinkpad(4) man page.
Revision 1.480: download - view: text, markup, annotated - select for diffs
Sat Oct 11 21:54:11 2008 UTC (16 years, 2 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.479: preferred, colored
Changes since revision 1.479: +2 -2
lines
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.
Revision 1.479: download - view: text, markup, annotated - select for diffs
Fri Oct 10 16:37:15 2008 UTC (16 years, 2 months ago) by joerg
Branches: MAIN
Diff to: previous 1.478: preferred, colored
Changes since revision 1.478: +2 -2
lines
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.
Revision 1.478: download - view: text, markup, annotated - select for diffs
Wed Oct 8 01:15:11 2008 UTC (16 years, 2 months ago) by pgoyette
Branches: MAIN
Diff to: previous 1.477: preferred, colored
Changes since revision 1.477: +2 -2
lines
Since I nuked the old adt7467c driver, I might as well nuke the man page.
Revision 1.462.2.4: download - view: text, markup, annotated - select for diffs
Sun Oct 5 20:11:21 2008 UTC (16 years, 2 months ago) by mjf
Branches: mjf-devfs2
Diff to: previous 1.462.2.3: preferred, colored; branchpoint 1.462: preferred, colored; next MAIN 1.463: preferred, colored
Changes since revision 1.462.2.3: +49 -34
lines
Sync with HEAD.
Revision 1.477: download - view: text, markup, annotated - select for diffs
Thu Oct 2 11:05:23 2008 UTC (16 years, 2 months ago) by pgoyette
Branches: MAIN
CVS tags: mjf-devfs2-base
Diff to: previous 1.476: preferred, colored
Changes since revision 1.476: +2 -2
lines
Remove reference to sdtemp.4 - committed in error
Revision 1.476: download - view: text, markup, annotated - select for diffs
Thu Oct 2 00:47:51 2008 UTC (16 years, 2 months ago) by pgoyette
Branches: MAIN
Diff to: previous 1.475: preferred, colored
Changes since revision 1.475: +12 -2
lines
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@
Revision 1.475: download - view: text, markup, annotated - select for diffs
Tue Sep 30 16:48:39 2008 UTC (16 years, 2 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.474: preferred, colored
Changes since revision 1.474: +2 -2
lines
Remove esl(4)
Revision 1.464.2.3: download - view: text, markup, annotated - select for diffs
Wed Sep 24 16:41:21 2008 UTC (16 years, 2 months ago) by wrstuden
Branches: wrstuden-revivesa
Diff to: previous 1.464.2.2: preferred, colored; branchpoint 1.464: preferred, colored; next MAIN 1.465: preferred, colored
Changes since revision 1.464.2.2: +2 -2
lines
Merge in changes between wrstuden-revivesa-base-2 and
wrstuden-revivesa-base-3.
Revision 1.474: download - view: text, markup, annotated - select for diffs
Sun Sep 21 10:25:07 2008 UTC (16 years, 2 months ago) by hannken
Branches: MAIN
Diff to: previous 1.473: preferred, colored
Changes since revision 1.473: +1 -2
lines
Obsolete fssbs(4). The kernel thread is named fssN now.
Revision 1.464.2.2: download - view: text, markup, annotated - select for diffs
Thu Sep 18 04:38:08 2008 UTC (16 years, 2 months ago) by wrstuden
Branches: wrstuden-revivesa
Diff to: previous 1.464.2.1: preferred, colored; branchpoint 1.464: preferred, colored
Changes since revision 1.464.2.1: +37 -31
lines
Sync with wrstuden-revivesa-base-2.
Revision 1.473: download - view: text, markup, annotated - select for diffs
Tue Sep 9 01:16:03 2008 UTC (16 years, 3 months ago) by jmcneill
Branches: MAIN
CVS tags: wrstuden-revivesa-base-3
Diff to: previous 1.472: preferred, colored
Changes since revision 1.472: +2 -2
lines
uvideo(4) man page
Revision 1.472: download - view: text, markup, annotated - select for diffs
Sat Sep 6 19:39:39 2008 UTC (16 years, 3 months ago) by jmcneill
Branches: MAIN
CVS tags: wrstuden-revivesa-base-2
Diff to: previous 1.471: preferred, colored
Changes since revision 1.471: +3 -3
lines
Add man page for pseye(4)
Revision 1.471: download - view: text, markup, annotated - select for diffs
Sat Sep 6 19:08:29 2008 UTC (16 years, 3 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.470: preferred, colored
Changes since revision 1.470: +3 -2
lines
Add video(4) and video(9) man pages.
Revision 1.470: download - view: text, markup, annotated - select for diffs
Wed Sep 3 23:44:24 2008 UTC (16 years, 3 months ago) by ober
Branches: MAIN
Diff to: previous 1.469: preferred, colored
Changes since revision 1.469: +2 -2
lines
Updates to enable the iwn man page
Revision 1.469: download - view: text, markup, annotated - select for diffs
Thu Jul 31 08:28:17 2008 UTC (16 years, 4 months ago) by simonb
Branches: MAIN
Diff to: previous 1.468: preferred, colored
Changes since revision 1.468: +3 -3
lines
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.
Revision 1.468: download - view: text, markup, annotated - select for diffs
Thu Jul 31 08:01:59 2008 UTC (16 years, 4 months ago) by simonb
Branches: MAIN
Diff to: previous 1.467: preferred, colored
Changes since revision 1.467: +36 -31
lines
Wrap long lines, break lines on start of new letter.
Revision 1.464.2.1: download - view: text, markup, annotated - select for diffs
Mon Jun 23 04:30:00 2008 UTC (16 years, 5 months ago) by wrstuden
Branches: wrstuden-revivesa
Diff to: previous 1.464: preferred, colored
Changes since revision 1.464: +5 -4
lines
Sync w/ -current. 34 merge conflicts to follow.
Revision 1.462.4.2: download - view: text, markup, annotated - select for diffs
Wed Jun 4 02:04:38 2008 UTC (16 years, 6 months ago) by yamt
Branches: yamt-pf42
Diff to: previous 1.462.4.1: preferred, colored; branchpoint 1.462: preferred, colored; next MAIN 1.463: preferred, colored
Changes since revision 1.462.4.1: +5 -4
lines
sync with head
Revision 1.415.2.5.2.3: download - view: text, markup, annotated - select for diffs
Tue Jun 3 20:47:13 2008 UTC (16 years, 6 months ago) by skrll
Branches: wrstuden-fixsa
Diff to: previous 1.415.2.5.2.2: preferred, colored; next MAIN 1.415.2.6: preferred, colored
Changes since revision 1.415.2.5.2.2: +3 -3
lines
Sync with netbsd-4.
Revision 1.462.2.3: download - view: text, markup, annotated - select for diffs
Mon Jun 2 13:21:34 2008 UTC (16 years, 6 months ago) by mjf
Branches: mjf-devfs2
Diff to: previous 1.462.2.2: preferred, colored; branchpoint 1.462: preferred, colored
Changes since revision 1.462.2.2: +7 -6
lines
Sync with HEAD.
Revision 1.467: download - view: text, markup, annotated - select for diffs
Mon May 26 00:31:32 2008 UTC (16 years, 6 months ago) by christos
Branches: MAIN
CVS tags: yamt-pf42-base4,
yamt-pf42-base3,
wrstuden-revivesa-base-1,
wrstuden-revivesa-base
Diff to: previous 1.466: preferred, colored
Changes since revision 1.466: +2 -2
lines
A manual page.
Revision 1.466: download - view: text, markup, annotated - select for diffs
Fri May 23 21:11:40 2008 UTC (16 years, 6 months ago) by jnemeth
Branches: MAIN
Diff to: previous 1.465: preferred, colored
Changes since revision 1.465: +2 -2
lines
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 1.465: download - view: text, markup, annotated - select for diffs
Sun May 18 22:05:59 2008 UTC (16 years, 6 months ago) by cegger
Branches: MAIN
CVS tags: hpcarm-cleanup-nbase
Diff to: previous 1.464: preferred, colored
Changes since revision 1.464: +3 -2
lines
acpidalb(4): Driver for PNP0C32 Hotkeys aka "Direct Application Launch Buttons".
"awesome" jmcneill
Revision 1.462.4.1: download - view: text, markup, annotated - select for diffs
Sun May 18 12:31:04 2008 UTC (16 years, 6 months ago) by yamt
Branches: yamt-pf42
Diff to: previous 1.462: preferred, colored
Changes since revision 1.462: +3 -3
lines
sync with head.
Revision 1.464: download - view: text, markup, annotated - select for diffs
Thu May 1 20:18:19 2008 UTC (16 years, 7 months ago) by cegger
Branches: MAIN
CVS tags: yamt-pf42-base2
Branch point for: wrstuden-revivesa
Diff to: previous 1.463: preferred, colored
Changes since revision 1.463: +2 -2
lines
hpqlb(4): driver for HP Quick Launch buttons - found on HP Pavilion Notebooks
Revision 1.463: download - view: text, markup, annotated - select for diffs
Tue Apr 22 22:37:13 2008 UTC (16 years, 7 months ago) by cegger
Branches: MAIN
Diff to: previous 1.462: preferred, colored
Changes since revision 1.462: +2 -2
lines
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 1.415.2.10: download - view: text, markup, annotated - select for diffs
Sat Apr 19 15:57:56 2008 UTC (16 years, 7 months ago) by bouyer
Branches: netbsd-4
CVS tags: wrstuden-fixsa-newbase,
wrstuden-fixsa-base
Diff to: previous 1.415.2.9: preferred, colored; branchpoint 1.415: preferred, colored
Changes since revision 1.415.2.9: +2 -2
lines
Pull up following revision(s) (requested by sborrill in ticket #1128):
sys/dev/pci/if_lii.c: revisions 1.1, 1.3 via patch
sys/arch/i386/conf/ALL: revision 1.161 via patch
share/man/man4/lii.4: revision 1.1 via patch
sys/dev/pci/files.pci: revision 1.303 via patch
sys/dev/DEVNAMES: revision 1.238 via patch
sys/arch/i386/conf/GENERIC: revision 1.885 via patch
distrib/sets/lists/man/mi: revisions 1.1062, 1.1063 via patch
sys/arch/i386/conf/XEN2_DOM0: revision 1.43 via patch
share/man/man4/Makefile: revision 1.460 via patch
sys/arch/i386/conf/INSTALL: revision 1.323 via patch
sys/dev/pci/if_liireg.h: revision 1.1 via patch
Add a driver for the Atheros/Attansic L2 Fast-Ethernet chip found on a
series of hardware that includes Asus's famous EeePC.
Revision 1.462.2.2: download - view: text, markup, annotated - select for diffs
Fri Apr 4 10:52:56 2008 UTC (16 years, 8 months ago) by mjf
Branches: mjf-devfs2
Diff to: previous 1.462.2.1: preferred, colored; branchpoint 1.462: preferred, colored
Changes since revision 1.462.2.1: +189 -0
lines
Add man page for devfsctl(4).
Hi hubert!
Revision 1.462.2.1
Thu Apr 3 22:46:22 2008 UTC (16 years, 8 months ago) by mjf
Branches: mjf-devfs2
FILE REMOVED
Changes since revision 1.462: +0 -189
lines
file Makefile was added on branch mjf-devfs2 on 2008-04-04 10:52:56 +0000
Revision 1.462: download - view: text, markup, annotated - select for diffs
Thu Apr 3 22:46:22 2008 UTC (16 years, 8 months ago) by xtraeme
Branches: MAIN
CVS tags: yamt-pf42-baseX,
yamt-pf42-base
Branch point for: yamt-pf42,
mjf-devfs2
Diff to: previous 1.461: preferred, colored
Changes since revision 1.461: +2 -2
lines
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.
Revision 1.461: download - view: text, markup, annotated - select for diffs
Wed Apr 2 01:34:36 2008 UTC (16 years, 8 months ago) by dyoung
Branches: MAIN
Diff to: previous 1.460: preferred, colored
Changes since revision 1.460: +2 -2
lines
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.
Revision 1.460: download - view: text, markup, annotated - select for diffs
Sat Mar 29 01:24:30 2008 UTC (16 years, 8 months ago) by mjf
Branches: MAIN
Diff to: previous 1.459: preferred, colored
Changes since revision 1.459: +2 -2
lines
Include lii(4).
Revision 1.459: download - view: text, markup, annotated - select for diffs
Tue Mar 25 20:04:33 2008 UTC (16 years, 8 months ago) by reed
Branches: MAIN
Diff to: previous 1.458: preferred, colored
Changes since revision 1.458: +7 -1
lines
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.)
Revision 1.458: download - view: text, markup, annotated - select for diffs
Tue Mar 25 19:41:56 2008 UTC (16 years, 8 months ago) by apb
Branches: MAIN
Diff to: previous 1.457: preferred, colored
Changes since revision 1.457: +2 -2
lines
Install the stuirda.4 man page, which was created in June 2007.
Revision 1.439.2.3: download - view: text, markup, annotated - select for diffs
Sun Mar 23 00:45:35 2008 UTC (16 years, 8 months ago) by matt
Branches: matt-armv6
Diff to: previous 1.439.2.2: preferred, colored; next MAIN 1.440: preferred, colored
Changes since revision 1.439.2.2: +3 -3
lines
sync with HEAD
Revision 1.457.2.1: download - view: text, markup, annotated - select for diffs
Fri Feb 22 02:53:32 2008 UTC (16 years, 9 months ago) by keiichi
Branches: keiichi-mipv6
Diff to: previous 1.457: preferred, colored; next MAIN 1.458: preferred, colored
Changes since revision 1.457: +2 -2
lines
imported Mobile IPv6 code developed by the SHISA project
(http://www.mobileip.jp/).
Revision 1.457: download - view: text, markup, annotated - select for diffs
Mon Jan 21 11:36:47 2008 UTC (16 years, 10 months ago) by ichiro
Branches: MAIN
CVS tags: matt-armv6-nbase,
keiichi-mipv6-nbase,
keiichi-mipv6-base,
hpcarm-cleanup-base
Branch point for: keiichi-mipv6
Diff to: previous 1.456: preferred, colored
Changes since revision 1.456: +2 -2
lines
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
Revision 1.415.2.9: download - view: text, markup, annotated - select for diffs
Fri Jan 11 17:03:20 2008 UTC (16 years, 11 months ago) by xtraeme
Branches: netbsd-4
Diff to: previous 1.415.2.8: preferred, colored; branchpoint 1.415: preferred, colored
Changes since revision 1.415.2.8: +1 -1
lines
Pull up following revision(s) (requested by christos in ticket #1037):
sys/dev/pci/arcmsr.c: patch
sys/dev/pci/arcmsrvar.h: patch
sys/dev/pci/pcidevs: patch
sys/dev/pci/files.pci: patch
sys/arch/i386/conf/GENERIC: patch
sys/arch/i386/conf/XEN2_DOM0: patch
sys/arch/i386/conf/INSTALL_LARGE: patch
sys/arch/amd64/conf/GENERIC: patch
sys/arch/amd64/conf/INSTALL: patch
share/man/man4/Makefile: patch
share/man/man4/arcmsr.4: patch
distrib/sets/lists/man/mi: patch
Add the Areca Technology Corporation SATA RAID controller driver, ported
from OpenBSD.
Revision 1.456: download - view: text, markup, annotated - select for diffs
Wed Jan 9 11:26:09 2008 UTC (16 years, 11 months ago) by simonb
Branches: MAIN
Diff to: previous 1.455: preferred, colored
Changes since revision 1.455: +2 -2
lines
Remove support for NetBSD/pc532.
Revision 1.439.2.2: download - view: text, markup, annotated - select for diffs
Wed Jan 9 01:39:03 2008 UTC (16 years, 11 months ago) by matt
Branches: matt-armv6
Diff to: previous 1.439.2.1: preferred, colored
Changes since revision 1.439.2.1: +8 -8
lines
sync with HEAD
Revision 1.455: download - view: text, markup, annotated - select for diffs
Mon Dec 31 15:31:41 2007 UTC (16 years, 11 months ago) by ad
Branches: MAIN
CVS tags: pc532-eol-2008,
matt-armv6-base
Diff to: previous 1.454: preferred, colored
Changes since revision 1.454: +2 -2
lines
Remove systrace. Ok core@.
Revision 1.454: download - view: text, markup, annotated - select for diffs
Sun Dec 23 17:39:20 2007 UTC (16 years, 11 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.453: preferred, colored
Changes since revision 1.453: +2 -2
lines
Move sony.4 from i386 to MD man page directory
Revision 1.453: download - view: text, markup, annotated - select for diffs
Wed Dec 12 20:26:24 2007 UTC (17 years ago) by xtraeme
Branches: MAIN
Diff to: previous 1.452: preferred, colored
Changes since revision 1.452: +2 -2
lines
Rename battery(4) to battery_pmu(4), because at least we know that is
only specific to pmu.
Revision 1.452: download - view: text, markup, annotated - select for diffs
Wed Dec 12 20:09:27 2007 UTC (17 years ago) by macallan
Branches: MAIN
Diff to: previous 1.451: preferred, colored
Changes since revision 1.451: +2 -2
lines
add a simple battery(4) man page
Revision 1.451: download - view: text, markup, annotated - select for diffs
Wed Dec 5 00:18:06 2007 UTC (17 years ago) by xtraeme
Branches: MAIN
CVS tags: cube-autoconf-base,
cube-autoconf
Diff to: previous 1.450: preferred, colored
Changes since revision 1.450: +2 -2
lines
Rename the Areca RAID driver (known as arc(4) to arcmsr(4) to avoid
namespace conflict with NetBSD/arc.
Found by tsutsui@.
Revision 1.450: download - view: text, markup, annotated - select for diffs
Tue Dec 4 18:47:52 2007 UTC (17 years ago) by xtraeme
Branches: MAIN
Diff to: previous 1.449: preferred, colored
Changes since revision 1.449: +2 -2
lines
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.
Revision 1.449: download - view: text, markup, annotated - select for diffs
Wed Nov 21 19:10:23 2007 UTC (17 years ago) by pooka
Branches: MAIN
Diff to: previous 1.448: preferred, colored
Changes since revision 1.448: +2 -2
lines
A very terse manual for pud(4) (it leaves almost everything as
an exercise to the reader).
Revision 1.448: download - view: text, markup, annotated - select for diffs
Thu Nov 15 12:53:41 2007 UTC (17 years, 1 month ago) by xtraeme
Branches: MAIN
Diff to: previous 1.447: preferred, colored
Changes since revision 1.447: +2 -2
lines
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.
Revision 1.447: download - view: text, markup, annotated - select for diffs
Sun Nov 11 17:45:19 2007 UTC (17 years, 1 month ago) by jmcneill
Branches: MAIN
Diff to: previous 1.446: preferred, colored
Changes since revision 1.446: +2 -2
lines
Add man page for pseudo-audio device driver.
Revision 1.439.2.1: download - view: text, markup, annotated - select for diffs
Tue Nov 6 23:12:54 2007 UTC (17 years, 1 month ago) by matt
Branches: matt-armv6
CVS tags: matt-armv6-prevmlocking
Diff to: previous 1.439: preferred, colored
Changes since revision 1.439: +16 -14
lines
sync with HEAD
Revision 1.446: download - view: text, markup, annotated - select for diffs
Mon Oct 29 00:42:28 2007 UTC (17 years, 1 month ago) by xtraeme
Branches: MAIN
Diff to: previous 1.445: preferred, colored
Changes since revision 1.445: +2 -2
lines
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".
Revision 1.445: download - view: text, markup, annotated - select for diffs
Thu Oct 25 17:32:23 2007 UTC (17 years, 1 month ago) by christos
Branches: MAIN
Diff to: previous 1.444: preferred, colored
Changes since revision 1.444: +3 -3
lines
PR/37210: Jonathan Kollasch: Add seeprom man page.
Revision 1.444: download - view: text, markup, annotated - select for diffs
Wed Oct 17 23:10:04 2007 UTC (17 years, 1 month ago) by garbled
Branches: MAIN
Diff to: previous 1.443: preferred, colored
Changes since revision 1.443: +6 -6
lines
Remove the man4.pmppc but move the contents over to man4.evbppc as they
still contain worthwhile information.
Revision 1.350.2.16: download - view: text, markup, annotated - select for diffs
Mon Oct 15 05:09:54 2007 UTC (17 years, 2 months ago) by riz
Branches: netbsd-3
Diff to: previous 1.350.2.15: preferred, colored; branchpoint 1.350: preferred, colored
Changes since revision 1.350.2.15: +2 -2
lines
Pull up following revisions via patch (requested by bouyer in ticket #1838):
distrib/sets/lists/man/mi: revision 1.997
sbin/bioctl/strtonum.c: revision 1.1
sys/dev/Makefile: revision 1.25
sys/arch/amd64/conf/GENERIC: revision 1.139
sbin/bioctl/strtonum.h: revision 1.1
sys/dev/bio.c: revision 1.1
sbin/bioctl/bioctl.c: revision 1.1
share/man/man4/bio.4: revision 1.1
sbin/bioctl/bioctl.8: revision 1.1
sys/sys/envsys.h: revision 1.11
sbin/bioctl/bioctl.8: revision 1.3
sbin/bioctl/bioctl.8: revision 1.4
sys/arch/i386/conf/XEN2_DOM0: revision 1.25
distrib/sets/lists/base/mi: revision 1.704
sys/conf/majors: revision 1.34
share/man/man4/Makefile: revision 1.426
etc/MAKEDEV.tmpl: revision 1.86
sys/arch/i386/conf/GENERIC: revision 1.825
distrib/sets/lists/comp/mi: revision 1.1022
sys/conf/files: revision 1.839
usr.sbin/envstat/envstat.c: revision 1.24
sbin/Makefile: revision 1.105
sys/dev/ic/mfi.c: revision 1.4
sys/dev/biovar.h: revision 1.1
sys/dev/ic/mfivar.h: revision 1.4
sbin/bioctl/Makefile: revision 1.1
Fix typo.
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.
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.
Fix Dd argument (use full month names).
Use more markup.
Comment out references to safte(4) and softraid(4), which don't exist in
NetBSD.
Remove trailing whitespace.
Use macros instead of characters for HTML output (replace ">", "<"
with \*[Gt], \*[Lt]).
Sort sections.
Create /dev/bio
Revision 1.443: download - view: text, markup, annotated - select for diffs
Sun Sep 30 04:22:51 2007 UTC (17 years, 2 months ago) by kiyohara
Branches: MAIN
Diff to: previous 1.442: preferred, colored
Changes since revision 1.442: +3 -2
lines
Add bcsp(4).
Revision 1.415.2.5.2.2: download - view: text, markup, annotated - select for diffs
Sun Sep 30 03:38:58 2007 UTC (17 years, 2 months ago) by wrstuden
Branches: wrstuden-fixsa
Diff to: previous 1.415.2.5.2.1: preferred, colored
Changes since revision 1.415.2.5.2.1: +2 -2
lines
Catch up on netbsd-4 as of a few days ago.
Revision 1.415.2.8: download - view: text, markup, annotated - select for diffs
Thu Sep 27 22:04:27 2007 UTC (17 years, 2 months ago) by xtraeme
Branches: netbsd-4
CVS tags: wrstuden-fixsa-base-1,
netbsd-4-0-RELEASE,
netbsd-4-0-RC5,
netbsd-4-0-RC4,
netbsd-4-0-RC3,
netbsd-4-0-RC2,
netbsd-4-0-1-RELEASE,
netbsd-4-0
Diff to: previous 1.415.2.7: preferred, colored; branchpoint 1.415: preferred, colored
Changes since revision 1.415.2.7: +2 -2
lines
Pull up following revision(s) (requested by mlelstv in ticket #895):
sys/dev/usb/uslsa.c: revision 1.1
sys/dev/usb/uslsa.c: revision 1.2
sys/dev/usb/uslsa.c: revision 1.3
sys/dev/usb/usbdevs: revision 1.466 (via patch)
share/man/man4/uslsa.4: revision 1.1
share/man/man4/Makefile: revision 1.429
sys/arch/i386/conf/GENERIC: revision 1.828
distrib/sets/lists/man/mi: revision 1.1002
sys/dev/usb/files.usb: revision 1.77
sys/arch/i386/conf/ALL: revision 1.99
From PR kern/33496 - add uslsa(4), a CP210x USB-RS232 ucom driver.
Revision 1.442: download - view: text, markup, annotated - select for diffs
Tue Sep 25 06:27:04 2007 UTC (17 years, 2 months ago) by wiz
Branches: MAIN
Diff to: previous 1.441: preferred, colored
Changes since revision 1.441: +4 -3
lines
Add piixpcib(4), based on the one provided by Stephan Meisinger in
PR 37021.
Revision 1.441: download - view: text, markup, annotated - select for diffs
Tue Sep 11 21:46:52 2007 UTC (17 years, 3 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.440: preferred, colored
Changes since revision 1.440: +2 -2
lines
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.
Revision 1.440: download - view: text, markup, annotated - select for diffs
Mon Sep 3 18:02:16 2007 UTC (17 years, 3 months ago) by tshiozak
Branches: MAIN
Diff to: previous 1.439: preferred, colored
Changes since revision 1.439: +2 -2
lines
add manpage for uchcom(4).
Revision 1.415.2.5.2.1: download - view: text, markup, annotated - select for diffs
Mon Sep 3 07:02:53 2007 UTC (17 years, 3 months ago) by wrstuden
Branches: wrstuden-fixsa
Diff to: previous 1.415.2.5: preferred, colored
Changes since revision 1.415.2.5: +3 -3
lines
Sync w/ NetBSD-4-RC_1
Revision 1.415.2.7: download - view: text, markup, annotated - select for diffs
Fri Aug 31 20:09:27 2007 UTC (17 years, 3 months ago) by pavel
Branches: netbsd-4
CVS tags: netbsd-4-0-RC1
Diff to: previous 1.415.2.6: preferred, colored; branchpoint 1.415: preferred, colored
Changes since revision 1.415.2.6: +2 -2
lines
Pull up following revision(s) (requested by bouyer in ticket #678):
distrib/sets/lists/man/mi: revision 1.1001
doc/CHANGES: revision 1.853 via patch
share/man/man4/Makefile: revision 1.428
share/man/man4/jmide.4: revision 1.1
sys/arch/amd64/conf/GENERIC: revision 1.143
sys/arch/amd64/conf/INSTALL: revision 1.69
sys/arch/i386/conf/GENERIC: revision 1.827
sys/arch/i386/conf/INSTALL_LARGE: revision 1.2 via patch
sys/arch/i386/conf/XEN2_DOM0: revision 1.26
sys/conf/files: revision 1.844 via patch
sys/dev/ic/ahcisata_core.c: revision 1.1 via patch
sys/dev/ic/ahcisata_core.c: revision 1.3
sys/dev/ic/ahcisatareg.h: revision 1.1
sys/dev/ic/ahcisatavar.h: revision 1.1
sys/dev/pci/ahcisata.c: delete
sys/dev/pci/ahcisatareg.h: delete
sys/dev/pci/ahcisata_pci.c: revision 1.1
sys/dev/pci/files.pci: revision 1.287-1.288
sys/dev/pci/jmide.c: revision 1.1-1.2
sys/dev/pci/jmide_reg.h: revision 1.1
sys/dev/pci/pcidevs: revision 1.878
Add JMicron Technology vendor ID, and their current PCIe SATA/PATA
controllers.
Split the ahcisata driver in pci front-end and bus-independant back-end.
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.
Move mapping of AHCI register so that jmide knows if it fails, and avoids
calling ahci_intr() (which would cause a panic).
Try to use the pciide function for SATA drives if attaching ahci fails (this
doesn't seems to work though, it may be BIOS dependant).
Thanks to Gary Duzan for testing multiple pacthes.
We're not ready to handle ATAPI yet so just claim there's no drive to the
upper layer. This should work around a NULL pointer dereference when
an ATAPI device is detected on a AHCI device.
Revision 1.439: download - view: text, markup, annotated - select for diffs
Sun Aug 26 18:05:43 2007 UTC (17 years, 3 months ago) by xtraeme
Branches: MAIN
Branch point for: matt-armv6
Diff to: previous 1.438: preferred, colored
Changes since revision 1.438: +3 -3
lines
Add a manpage for the ichlpcib(4) driver. This needs some wizd-ification.
Revision 1.438: download - view: text, markup, annotated - select for diffs
Mon Aug 20 00:29:43 2007 UTC (17 years, 3 months ago) by kiyohara
Branches: MAIN
Diff to: previous 1.437: preferred, colored
Changes since revision 1.437: +2 -2
lines
Add support for AnyCom BlueCard.
Revision 1.437: download - view: text, markup, annotated - select for diffs
Sun Aug 19 18:58:36 2007 UTC (17 years, 3 months ago) by tnn
Branches: MAIN
Diff to: previous 1.436: preferred, colored
Changes since revision 1.436: +3 -3
lines
Move spdmem.4 to the i2c section.
Revision 1.436: download - view: text, markup, annotated - select for diffs
Sat Aug 18 11:26:36 2007 UTC (17 years, 3 months ago) by tnn
Branches: MAIN
Diff to: previous 1.435: preferred, colored
Changes since revision 1.435: +2 -2
lines
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 1.435.4.2: download - view: text, markup, annotated - select for diffs
Sat Jul 28 10:51:59 2007 UTC (17 years, 4 months ago) by kiyohara
Branches: matt-mips64
Diff to: previous 1.435.4.1: preferred, colored; branchpoint 1.435: preferred, colored; next MAIN 1.436: preferred, colored
Changes since revision 1.435.4.1: +181 -0
lines
Add support for Intel ICH SMBus controller.
Revision 1.435.4.1
Sat Jul 28 10:51:58 2007 UTC (17 years, 4 months ago) by kiyohara
Branches: matt-mips64
FILE REMOVED
Changes since revision 1.435: +0 -181
lines
file Makefile was added on branch matt-mips64 on 2007-07-28 10:51:59 +0000
Revision 1.435: download - view: text, markup, annotated - select for diffs
Sat Jul 28 10:51:58 2007 UTC (17 years, 4 months ago) by kiyohara
Branches: MAIN
CVS tags: matt-mips64-base,
hpcarm-cleanup
Branch point for: matt-mips64
Diff to: previous 1.434: preferred, colored
Changes since revision 1.434: +2 -2
lines
Add support for Intel ICH SMBus controller.
Revision 1.434: download - view: text, markup, annotated - select for diffs
Wed Jul 11 07:53:30 2007 UTC (17 years, 5 months ago) by kiyohara
Branches: MAIN
Diff to: previous 1.433: preferred, colored
Changes since revision 1.433: +4 -2
lines
Add support for NVIDIA nForce 2/3/4 SMBus controller and SMBus driver.
Revision 1.433: download - view: text, markup, annotated - select for diffs
Wed Jun 20 13:31:54 2007 UTC (17 years, 5 months ago) by tsutsui
Branches: MAIN
Diff to: previous 1.432: preferred, colored
Changes since revision 1.432: +2 -2
lines
sn(4) driver on mac68k has been switched to using MI SONIC driver,
so prepare MI sn(4) man page. Also improve some descriptions.
Revision 1.432: download - view: text, markup, annotated - select for diffs
Sat Jun 9 12:28:25 2007 UTC (17 years, 6 months ago) by kiyohara
Branches: MAIN
Diff to: previous 1.431: preferred, colored
Changes since revision 1.431: +2 -2
lines
Add zyd(4).
Revision 1.415.2.6: download - view: text, markup, annotated - select for diffs
Mon Jun 4 19:56:21 2007 UTC (17 years, 6 months ago) by bouyer
Branches: netbsd-4
Diff to: previous 1.415.2.5: preferred, colored; branchpoint 1.415: preferred, colored
Changes since revision 1.415.2.5: +1 -1
lines
Pull up following revision(s) (requested by jnemeth in ticket #691):
share/man/man4/xirc.4: revision 1.1
distrib/sets/lists/man/mi: revision 1.1004
share/man/man4/com.4: revision 1.13
share/man/man4/xi.4: revision 1.11
share/man/man4/Makefile: revision 1.430
xi now attaches at xirc, not pcmcia
PR/36310 -- Joerg Niendorf
note new xirc manpage
Revision 1.431: download - view: text, markup, annotated - select for diffs
Fri Jun 1 18:10:00 2007 UTC (17 years, 6 months ago) by uwe
Branches: MAIN
Diff to: previous 1.430: preferred, colored
Changes since revision 1.430: +2 -2
lines
Add smsc.4 (hi, brett!)
Revision 1.430: download - view: text, markup, annotated - select for diffs
Fri Jun 1 11:34:32 2007 UTC (17 years, 6 months ago) by jnemeth
Branches: MAIN
Diff to: previous 1.429: preferred, colored
Changes since revision 1.429: +2 -2
lines
note new xirc manpage
Revision 1.429: download - view: text, markup, annotated - select for diffs
Sun May 20 05:10:28 2007 UTC (17 years, 6 months ago) by dogcow
Branches: MAIN
Diff to: previous 1.428: preferred, colored
Changes since revision 1.428: +2 -2
lines
Add uslsa.4, as per PR kern/33496
Revision 1.428: download - view: text, markup, annotated - select for diffs
Tue May 15 17:53:43 2007 UTC (17 years, 7 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.427: preferred, colored
Changes since revision 1.427: +2 -2
lines
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.
Revision 1.427: download - view: text, markup, annotated - select for diffs
Tue May 15 14:12:08 2007 UTC (17 years, 7 months ago) by macallan
Branches: MAIN
Diff to: previous 1.426: preferred, colored
Changes since revision 1.426: +9 -8
lines
add a couple man pages for the new ADB subsystem
Revision 1.415.2.5: download - view: text, markup, annotated - select for diffs
Tue May 8 10:45:06 2007 UTC (17 years, 7 months ago) by pavel
Branches: netbsd-4
Branch point for: wrstuden-fixsa
Diff to: previous 1.415.2.4: preferred, colored; branchpoint 1.415: preferred, colored
Changes since revision 1.415.2.4: +1 -1
lines
Pull up following revision(s) (requested by bouyer in ticket #603):
distrib/sets/lists/base/mi: revision 1.704
distrib/sets/lists/comp/mi: revision 1.1022
distrib/sets/lists/man/mi: revision 1.997
doc/CHANGES: revision 1.839
sbin/Makefile: patch
sbin/bioctl/Makefile: revision 1.1
sbin/bioctl/bioctl.8: revision 1.1
sbin/bioctl/bioctl.c: revision 1.1
sbin/bioctl/strtonum.c: revision 1.1
sbin/bioctl/strtonum.h: revision 1.1
share/man/man4/Makefile: revision 1.426
share/man/man4/bio.4: revision 1.1
sys/arch/amd64/conf/GENERIC: revision 1.139
sys/arch/i386/conf/GENERIC: revision 1.825
sys/arch/i386/conf/XEN2_DOM0: revision 1.25
sys/conf/files: revision 1.839
sys/conf/majors: patch
sys/dev/Makefile: revision 1.25
sys/dev/bio.c: patch
sys/dev/biovar.h: patch
sys/dev/ic/mfi.c: revision 1.4-1.5
sys/dev/ic/mfivar.h: revision 1.4
sys/sys/envsys.h: revision 1.11
usr.sbin/envstat/envstat.c: revision 1.24
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.
note bio(4), envsys(4) DRIVE, and mfi(4) support for both.
tred->sensor is a u_int.
Revision 1.426: download - view: text, markup, annotated - select for diffs
Tue May 1 17:18:54 2007 UTC (17 years, 7 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.425: preferred, colored
Changes since revision 1.425: +2 -2
lines
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.
Revision 1.425: download - view: text, markup, annotated - select for diffs
Sat Apr 21 06:11:58 2007 UTC (17 years, 7 months ago) by plunky
Branches: MAIN
Diff to: previous 1.424: preferred, colored
Changes since revision 1.424: +2 -2
lines
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)
Revision 1.424: download - view: text, markup, annotated - select for diffs
Thu Apr 12 18:21:26 2007 UTC (17 years, 8 months ago) by macallan
Branches: MAIN
Diff to: previous 1.423: preferred, colored
Changes since revision 1.423: +3 -3
lines
Add chipsfb.4 and genfb.4
Revision 1.423: download - view: text, markup, annotated - select for diffs
Sun Mar 25 09:11:56 2007 UTC (17 years, 8 months ago) by wiz
Branches: MAIN
Diff to: previous 1.422: preferred, colored
Changes since revision 1.422: +13 -2
lines
Add basic drm(4) man page, and link it to drivers.
Feel free to improve it!
Revision 1.422: download - view: text, markup, annotated - select for diffs
Wed Mar 14 00:43:51 2007 UTC (17 years, 9 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.421: preferred, colored
Changes since revision 1.421: +3 -2
lines
aiboost(4) manpage.
Revision 1.415.2.4: download - view: text, markup, annotated - select for diffs
Sun Mar 4 14:17:08 2007 UTC (17 years, 9 months ago) by bouyer
Branches: netbsd-4
Diff to: previous 1.415.2.3: preferred, colored; branchpoint 1.415: preferred, colored
Changes since revision 1.415.2.3: +2 -2
lines
Pull up following revision(s) (requested by garbled in ticket #482):
share/man/man4/man4.prep/intro.4: revision 1.1
usr.sbin/eeprom/eeprom.8: revision 1.12
usr.sbin/eeprom/prephandlers.c: revision 1.1
distrib/sets/lists/base/md.prep: revision 1.13
distrib/sets/lists/comp/md.prep: revision 1.22
sys/arch/prep/conf/majors.prep: revision 1.19
share/man/man4/man4.prep/Makefile: revision 1.1
share/man/man4/Makefile: revision 1.421
usr.sbin/eeprom/defs.h: revision 1.10
share/man/man4/man4.prep/nvram.4: revision 1.1
sys/arch/prep/pnpbus/nvram_pnpbus.c: revision 1.6
usr.sbin/eeprom/Makefile: revision 1.14
etc/mtree/NetBSD.dist: revision 1.333
usr.sbin/eeprom/main.c: revision 1.17
etc/etc.prep/MAKEDEV.conf: revision 1.5
distrib/sets/lists/man/mi: revision 1.978
usr.sbin/eeprom/pathnames.h: revision 1.3
sys/arch/prep/include/Makefile: revision 1.19
sys/arch/prep/include/nvram.h: revision 1.3
Finish the code in the prep nvram driver that makes it an actual device
(/dev/nvram) and implement all the associated ioctls fully. Tested with
a hacked up copy of eeprom(8). Right now it can only be used to see the
nvram GEV contents, not actually edit them. Will do that later some day.
Revision 1.350.2.15: download - view: text, markup, annotated - select for diffs
Sat Mar 3 23:30:19 2007 UTC (17 years, 9 months ago) by bouyer
Branches: netbsd-3
Diff to: previous 1.350.2.14: preferred, colored; branchpoint 1.350: preferred, colored
Changes since revision 1.350.2.14: +3 -3
lines
Pull up following revision(s) (requested by tsutsui in ticket #1673):
distrib/sets/lists/man/mi 1.844, 1.871
share/man/man4/Makefile 1.372, 1.379 via patch
share/man/man4/re.4 1.8, 1.9, 1.11, 1.12
share/man/man4/rgephy.4 1.1
share/man/man4/rlphy.4 1.1, 1.2
sys/arch/amd64/conf/GENERIC 1.79, 1.89
sys/arch/amd64/conf/INSTALL 1.45, 1.49
sys/arch/i386/conf/GENERIC 1.717, 1.747
sys/arch/i386/conf/GENERIC_LAPTOP 1.164
sys/arch/i386/conf/INSTALL 1.277, 1.283
sys/arch/i386/conf/INSTALL_LAPTOP 1.96, 1.98
sys/arch/i386/conf/XEN2_DOM0 1.22 via patch
sys/arch/macppc/conf/GENERIC 1.220, 1.246
sys/arch/macppc/conf/INSTALL 1.96, 1.100
sys/dev/cardbus/if_re_cardbus.c 1.10
sys/dev/cardbus/if_rtk_cardbus.c 1.29-1.31
sys/dev/ic/rtl8169.c 1.14, 1.20, 1.24, 1.25, 1.28-1.61, 1.63, 1.64-1.81 via patch
sys/dev/ic/rtl81x9.c 1.52, 1.54-1.63, 1.65, 1.67-1.70
sys/dev/ic/rtl81x9reg.h 1.15-1.26
sys/dev/ic/rtl81x9var.h 1.19, 1.21-1.37
sys/dev/mii/files.mii 1.38
sys/dev/mii/miidevs 1.62, 1.64
sys/dev/mii/rgephy.c 1.10, 1.13-1.16
sys/dev/mii/rlphy.c 1.1, 1.6, 1.7, 1.11 via patch
sys/dev/pci/if_re_pci.c 1.13, 1.15-1.17, 1.19-1.23
sys/dev/pci/if_rtk_pci.c 1.25, 1.28, 1.29, 1.31
sys/dev/pci/pcidevs 1.851, 1.852
on re(4):
- improve stability (I believe ;-)
- add a workaround for hardware ip4csum-tx bug
- support newer chips (8169SB/SC, PCIe based 8168 etc.)
- fix 8139C+ support
- enable hardware VLAN
- misc bus_dma(9) fix (which makes re(4) work on mips ports)
on rtk(4):
- fix kern/31348
- fix possible panic on dreamcast
Revision 1.421: download - view: text, markup, annotated - select for diffs
Thu Mar 1 18:42:11 2007 UTC (17 years, 9 months ago) by garbled
Branches: MAIN
Diff to: previous 1.420: preferred, colored
Changes since revision 1.420: +3 -3
lines
Add man4.prep subdir
Revision 1.420: download - view: text, markup, annotated - select for diffs
Tue Feb 20 16:56:10 2007 UTC (17 years, 9 months ago) by kiyohara
Branches: MAIN
Diff to: previous 1.419: preferred, colored
Changes since revision 1.419: +2 -2
lines
Supprot Bluetooth HCI UART (H4) driver and daemon.
Revision 1.419: download - view: text, markup, annotated - select for diffs
Sat Jan 20 18:44:26 2007 UTC (17 years, 10 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.418: preferred, colored
Changes since revision 1.418: +1 -2
lines
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.
Revision 1.415.2.3: download - view: text, markup, annotated - select for diffs
Fri Jan 12 23:13:21 2007 UTC (17 years, 11 months ago) by bouyer
Branches: netbsd-4
Diff to: previous 1.415.2.2: preferred, colored; branchpoint 1.415: preferred, colored
Changes since revision 1.415.2.2: +2 -1
lines
Pull up following revision(s) (requested by xtraeme in ticket #341):
distrib/sets/lists/man/mi: revision 1.965
share/man/man4/ug.4: revision 1.1
sys/dev/isa/files.isa: revision 1.145
sys/arch/amd64/conf/GENERIC: revision 1.124
sys/dev/isa/ug.c: revision 1.1
sys/dev/isa/ugvar.h: revision 1.1
share/man/man4/envsys.4: revision 1.21
share/man/man4/Makefile: revision 1.418
Driver for the Abit uGuru Hardware system monitor, contributed by
Mihai Chelaru. Minor changes (simplification and KNF) by me.
Thanks.
Add ug0 at isa? commented out (driver for the Abit uGuru
Hardware system monitor).
ug(4): manual page for the Abit uGuru hardware system monitor
(wiz please review, thanks).
+ ug(4)
Revision 1.350.2.14: download - view: text, markup, annotated - select for diffs
Mon Jan 8 16:36:20 2007 UTC (17 years, 11 months ago) by ghen
Branches: netbsd-3
Diff to: previous 1.350.2.13: preferred, colored; branchpoint 1.350: preferred, colored
Changes since revision 1.350.2.13: +1 -1
lines
Pull up following revision(s) (requested by bouyer in ticket #1621):
sys/arch/i386/conf/GENERIC: revision 1.787 via patch
share/man/man4/Makefile: revision 1.407 via patch
distrib/sets/lists/man/mi: revision 1.936 via patch
share/man/man4/ipmi.4: revision 1.1 via patch
sys/arch/i386/i386/bios32.c: revision 1.11 via patch
sys/dev/DEVNAMES: revision 1.221 via patch
sys/arch/x86/x86/ipmi.c: revision 1.1 via patch
sys/arch/i386/i386/mainbus.c: revision 1.65 via patch
sys/arch/x86/include/smbiosvar.h: revision 1.1 via patch
sys/arch/x86/include/ipmivar.h: revision 1.1 via patch
sys/arch/x86/conf/files.x86: revision 1.20 via patch
sys/arch/i386/conf/files.i386: revision 1.293 via patch
Add ipmi(4) driver, from OpenBSD. This requires SMBios support, so add
SMBios detection and mapping to bios32.c, also from OpenBSD (for now this
is only compiled in if ipmi(4) is configured). The sensors and watchdog are
accessible though envsys(4).
Works on i386; some work is needed on amd64 to access the BIOS. It would
eventually work on Xen if the SMBios is accessible (to be tested).
Add manpage for new ipmi driver.
Claim ipmi.
Revision 1.418: download - view: text, markup, annotated - select for diffs
Sun Jan 7 03:14:09 2007 UTC (17 years, 11 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.417: preferred, colored
Changes since revision 1.417: +3 -2
lines
ug(4): manual page for the Abit uGuru hardware system monitor
(wiz please review, thanks).
Revision 1.350.2.13: download - view: text, markup, annotated - select for diffs
Sat Dec 23 16:43:19 2006 UTC (17 years, 11 months ago) by ghen
Branches: netbsd-3
Diff to: previous 1.350.2.12: preferred, colored; branchpoint 1.350: preferred, colored
Changes since revision 1.350.2.12: +1 -1
lines
Pull up following revision(s) (requested by bouyer in ticket #1609):
sys/arch/i386/conf/INSTALL: revision 1.298
sys/arch/i386/conf/GENERIC: revision 1.802
sys/dev/pci/files.pci: revision 1.274
sys/arch/amd64/conf/GENERIC: revision 1.122
sys/dev/pci/mfi_pci.c: revision 1.1 via patch
distrib/sets/lists/man/mi: revision 1.958
sys/arch/amd64/conf/INSTALL: revision 1.61
sys/dev/ic/mfireg.h: revision 1.1
share/man/man4/Makefile: revision 1.416 via patch
sys/dev/ic/mfi.c: revision 1.1
sys/arch/i386/conf/XEN2_DOM0: revision 1.19
sys/dev/ic/mfivar.h: revision 1.1
sys/conf/files: revision 1.821
share/man/man4/mfi.4: revision 1.1
share/man/man4/mfi.4: revision 1.2
sys/dev/pci/pcidevs via patch
Add mfi(4), a driver for LSI Logic & Dell MegaRAID SAS RAID controller.
Ported from OpenBSD, tested on i386 and amd64.
Punctuation issues.
Revision 1.350.2.12: download - view: text, markup, annotated - select for diffs
Sat Dec 23 14:43:47 2006 UTC (17 years, 11 months ago) by ghen
Branches: netbsd-3
Diff to: previous 1.350.2.11: preferred, colored; branchpoint 1.350: preferred, colored
Changes since revision 1.350.2.11: +2 -2
lines
Pull up following revision(s) (requested by bouyer in ticket #1608):
sys/arch/i386/conf/INSTALL: revision 1.299 via patch
sys/arch/i386/conf/XEN2_DOM0: revision 1.20 via patch
sys/arch/i386/conf/GENERIC: revision 1.803 via patch
sys/dev/pci/files.pci: revision 1.275 via patch
sys/arch/i386/conf/GENERIC_LAPTOP: revision 1.218 via patch
sys/arch/amd64/conf/GENERIC: revision 1.123 via patch
sys/dev/pci/if_bnx.c: revision 1.1 via patch
share/man/man4/bnx.4: revision 1.1-1.2 via patch
distrib/sets/lists/man/mi: revision 1.959 via patch
sys/arch/amd64/conf/INSTALL: revision 1.62 via patch
sys/dev/microcode/bnx/bnxfw.h: revision 1.1-1.2 via patch
sys/dev/pci/if_bnxreg.h: revision 1.1 via patch
share/man/man4/Makefile: revision 1.417 via patch
sys/arch/i386/conf/INSTALL_LAPTOP: revision 1.112 via patch
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.
Add a NetBSD RCS tag.
Nx -> Ox; remove trailing whitespace.
Revision 1.415.2.2: download - view: text, markup, annotated - select for diffs
Thu Dec 21 13:44:01 2006 UTC (17 years, 11 months ago) by tron
Branches: netbsd-4
Diff to: previous 1.415.2.1: preferred, colored; branchpoint 1.415: preferred, colored
Changes since revision 1.415.2.1: +1 -1
lines
Pull up following revision(s) (requested by bouyer in ticket #287):
sys/arch/i386/conf/INSTALL: revision 1.299
sys/arch/i386/conf/XEN2_DOM0: revision 1.20
sys/arch/i386/conf/GENERIC: revision 1.803
sys/dev/pci/files.pci: revision 1.275
sys/arch/i386/conf/GENERIC_LAPTOP: revision 1.218
sys/arch/amd64/conf/GENERIC: revision 1.123
sys/dev/pci/if_bnx.c: revision 1.1
share/man/man4/bnx.4: revision 1.1
distrib/sets/lists/man/mi: revision 1.959
sys/arch/amd64/conf/INSTALL: revision 1.62
sys/dev/microcode/bnx/bnxfw.h: revision 1.1
sys/arch/i386/conf/ALL: revision 1.76
sys/dev/pci/if_bnxreg.h: revision 1.1
share/man/man4/Makefile: revision 1.417
sys/arch/i386/conf/INSTALL_LAPTOP: revision 1.112
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.
Revision 1.415.2.1: download - view: text, markup, annotated - select for diffs
Thu Dec 21 12:46:21 2006 UTC (17 years, 11 months ago) by tron
Branches: netbsd-4
Diff to: previous 1.415: preferred, colored
Changes since revision 1.415: +2 -2
lines
Pull up following revision(s) (requested by bouyer in ticket #286):
sys/arch/i386/conf/INSTALL: revision 1.298
sys/arch/i386/conf/GENERIC: revision 1.802
sys/dev/pci/files.pci: revision 1.274
sys/arch/amd64/conf/GENERIC: revision 1.122
sys/dev/pci/mfi_pci.c: revision 1.1
distrib/sets/lists/man/mi: revision 1.958
sys/arch/amd64/conf/INSTALL: revision 1.61
sys/arch/i386/conf/ALL: revision 1.75
sys/dev/ic/mfireg.h: revision 1.1
share/man/man4/Makefile: revision 1.416
sys/dev/ic/mfi.c: revision 1.1
sys/arch/i386/conf/XEN2_DOM0: revision 1.19
sys/dev/ic/mfivar.h: revision 1.1
sys/conf/files: revision 1.821
share/man/man4/mfi.4: revision 1.1
Add mfi(4), a driver for LSI Logic & Dell MegaRAID SAS RAID controller.
Ported from OpenBSD, tested on i386 and amd64.
Revision 1.417: download - view: text, markup, annotated - select for diffs
Sun Dec 17 23:02:06 2006 UTC (17 years, 11 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.416: preferred, colored
Changes since revision 1.416: +2 -2
lines
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.
Revision 1.416: download - view: text, markup, annotated - select for diffs
Sun Dec 17 22:57:14 2006 UTC (17 years, 11 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.415: preferred, colored
Changes since revision 1.415: +2 -2
lines
Add mfi(4), a driver for LSI Logic & Dell MegaRAID SAS RAID controller.
Ported from OpenBSD, tested on i386 and amd64.
Revision 1.415: download - view: text, markup, annotated - select for diffs
Thu Nov 30 21:01:16 2006 UTC (18 years ago) by bouyer
Branches: MAIN
CVS tags: netbsd-4-base
Branch point for: netbsd-4
Diff to: previous 1.414: preferred, colored
Changes since revision 1.414: +2 -2
lines
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.
Revision 1.414: download - view: text, markup, annotated - select for diffs
Thu Nov 23 04:07:07 2006 UTC (18 years ago) by rpaulo
Branches: MAIN
Diff to: previous 1.413: preferred, colored
Changes since revision 1.413: +2 -2
lines
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.
Revision 1.413: download - view: text, markup, annotated - select for diffs
Thu Nov 9 01:29:34 2006 UTC (18 years, 1 month ago) by pooka
Branches: MAIN
Diff to: previous 1.412: preferred, colored
Changes since revision 1.412: +2 -2
lines
initial documentation for the puffs message interface
Revision 1.412: download - view: text, markup, annotated - select for diffs
Tue Oct 31 22:21:18 2006 UTC (18 years, 1 month ago) by joerg
Branches: MAIN
Diff to: previous 1.411: preferred, colored
Changes since revision 1.411: +2 -2
lines
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.
Revision 1.411: download - view: text, markup, annotated - select for diffs
Thu Oct 26 21:37:08 2006 UTC (18 years, 1 month ago) by bjh21
Branches: MAIN
Diff to: previous 1.410: preferred, colored
Changes since revision 1.410: +3 -2
lines
At wiz's suggestion, replace the two MD podulebus(4) pages with a single MI
one, modelled somewhat on pci(4).
Revision 1.410: download - view: text, markup, annotated - select for diffs
Sun Oct 22 14:29:24 2006 UTC (18 years, 1 month ago) by bjh21
Branches: MAIN
Diff to: previous 1.409: preferred, colored
Changes since revision 1.409: +2 -2
lines
ei(4) is MI, shared by acorn26 and acorn32. Pull its man page up out of the
acorn26 directory.
Revision 1.409: download - view: text, markup, annotated - select for diffs
Sat Oct 21 14:10:33 2006 UTC (18 years, 1 month ago) by bouyer
Branches: MAIN
Diff to: previous 1.408: preferred, colored
Changes since revision 1.408: +2 -2
lines
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
Revision 1.408: download - view: text, markup, annotated - select for diffs
Mon Oct 9 16:51:51 2006 UTC (18 years, 2 months ago) by gdamore
Branches: MAIN
Diff to: previous 1.407: preferred, colored
Changes since revision 1.407: +5 -2
lines
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.
Revision 1.407: download - view: text, markup, annotated - select for diffs
Sun Oct 1 18:43:11 2006 UTC (18 years, 2 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.406: preferred, colored
Changes since revision 1.406: +2 -2
lines
Add manpage for new ipmi driver.
Revision 1.406: download - view: text, markup, annotated - select for diffs
Sun Oct 1 14:59:05 2006 UTC (18 years, 2 months ago) by bjh21
Branches: MAIN
Diff to: previous 1.405: preferred, colored
Changes since revision 1.405: +2 -2
lines
Add a sec(4) manual page.
Revision 1.397.2.3: download - view: text, markup, annotated - select for diffs
Fri Sep 15 11:56:40 2006 UTC (18 years, 3 months ago) by tron
Branches: abandoned-netbsd-4
Diff to: previous 1.397.2.2: preferred, colored; branchpoint 1.397: preferred, colored; next MAIN 1.398: preferred, colored
Changes since revision 1.397.2.2: +2 -2
lines
Pull up following revision(s) (requested by riz in ticket #153):
share/man/man4/pci.4: revision 1.84
share/man/man4/Makefile: revision 1.404
distrib/sets/lists/man/mi: revision 1.929
share/man/man4/sk.4: revision 1.10
sys/dev/DEVNAMES: revision 1.216
Add msk(4) info to the sk(4) manpage, and install links (from OpenBSD).
Also, add msk to DEVNAMES.
Revision 1.397.2.2: download - view: text, markup, annotated - select for diffs
Thu Sep 14 21:16:31 2006 UTC (18 years, 3 months ago) by riz
Branches: abandoned-netbsd-4
Diff to: previous 1.397.2.1: preferred, colored; branchpoint 1.397: preferred, colored
Changes since revision 1.397.2.1: +2 -2
lines
Pull up following revision(s) (requested by plunky in ticket #161):
sys/dev/bluetooth/btdev.h: revision 1.4
distrib/sets/lists/comp/mi: revision 1.922
usr.sbin/postinstall/postinstall: revision 1.25
sys/netbt/hci_unit.c: revision 1.3
sys/netbt/hci_ioctl.c: revision 1.4
usr.sbin/sdpd/profile.c: revision 1.2
usr.sbin/btdevctl/btdevctl.c: revision 1.2
share/man/man4/Makefile: revision 1.405
distrib/sets/lists/man/mi: revision 1.930
distrib/sets/lists/etc/mi: revision 1.176
usr.sbin/sdpd/profile.c: revision 1.3
usr.sbin/btdevctl/btdevctl.c: revision 1.3
etc/MAKEDEV.tmpl: revision 1.62
distrib/sets/lists/base/mi: revision 1.650
usr.sbin/btdevctl/btdevctl.h: revision 1.2
usr.bin/sdpquery/sdpquery.1: revision 1.4
sys/netbt/rfcomm_session.c: revision 1.2
usr.sbin/btdevctl/btdevctl.8: revision 1.3
usr.bin/sdpquery/search.c: revision 1.2
usr.sbin/sdpd/Makefile: revision 1.2
sys/dev/bluetooth/Makefile: revision 1.3
usr.sbin/btdevctl/cfg.c: file removal
sys/netbt/files.netbt: revision 1.4
usr.sbin/btdevctl/sdp.c: revision 1.1
sys/dev/bluetooth/bthidev.c: revision 1.3
etc/bluetooth/Makefile: revision 1.3
sys/dev/pcmcia/files.pcmcia: revision 1.51
sys/dev/bluetooth/bthidev.c: revision 1.4
sys/dev/bluetooth/bthidev.h: revision 1.3
usr.sbin/btdevctl/dev.c: file removal
sys/dev/bluetooth/files.bluetooth: revision 1.10
sys/arch/i386/conf/GENERIC: revision 1.777
share/man/man4/ubt.4: revision 1.6
share/man/man4/bthub.4: revision 1.3
sys/netbt/hci.h: revision 1.5
sys/arch/i386/conf/GENERIC_LAPTOP: revision 1.202
lib/libsdp/sdp.h: revision 1.2
usr.sbin/btdevctl/print.c: revision 1.1
share/man/man4/bthidev.4: revision 1.5
share/man/man4/btdev.4: file removal
usr.sbin/btdevctl/print.c: revision 1.2
sys/arch/i386/conf/GENERIC_LAPTOP: revision 1.205
usr.sbin/btdevctl/Makefile: revision 1.2
sys/dev/usb/files.usb: revision 1.70
sys/netbt/l2cap_signal.c: revision 1.2
sys/netbt/hci_link.c: revision 1.4
sys/dev/bluetooth/bthub.c: revision 1.3
share/man/man4/btsco.4: revision 1.5
sys/netbt/hci_link.c: revision 1.5
share/man/man4/btdev.4: revision 1.4
sys/dev/bluetooth/btkbd.c: revision 1.3
sys/dev/bluetooth/btdev.c: file removal
sys/netbt/hci_event.c: revision 1.2
sys/dev/bluetooth/btsco.h: revision 1.2
etc/mtree/special: revision 1.101
sys/dev/bluetooth/btsco.c: revision 1.3
sys/conf/majors: revision 1.27
usr.sbin/sdpd/hf.c: revision 1.1
sys/dev/bluetooth/btsco.c: revision 1.4
share/man/man5/rc.conf.5: revision 1.107
sys/dev/bluetooth/btdev.c: revision 1.2
etc/rc.d/btdevctl: revision 1.2
usr.sbin/btdevctl/db.c: revision 1.1
etc/rc.d/btdevctl: revision 1.3
etc/bluetooth/btdevctl.conf: revision 1.1
usr.sbin/btdevctl/hid.c: file removal
sys/arch/i386/conf/GENERIC: revision 1.781
sys/dev/bluetooth/btdev.h: revision 1.3
Make btdev default count explicit
Fix typo in variable name
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
also include service name in dictionary being sent to kernel.
(this is not used just yet, but it might be in the future and it will
be easier if we dont have to provide code to handle its absence)
clarify the CAVEAT section somewhat
Add service discovery support for the Handsfree profile
Replace static 'FreeBSD' string with operating system name gleaned
from uname(3)
Halt the callout on detach
btsco.c:
- sco_getopt(..., SO_SCO_MTU, ...) expects the address of a uint16_t,
not an int. So change sc_mtu's type to uint16_t.
- Try a little harder to ensure btsco_round_blocksize() does not
return zero. Prevents a subsequent panic in audio_init_ringbuffer().
from scw@
Endian issues:
hci_event.c:
- Convert memo->response.clock_offset to host-endian.
hci_ioctl.c:
- printf format tweak (size_t)
hci_link.c:
- Convert memo->response.clock_offset from host-endian.
- Tweak a DIAGNOSTIC message.
l2cap_signal.c:
- In l2cap_recv_config_req(), rp->scid is little-endian so make sure
we convert from host-endian.
from scw@
hci_link.c:
- In hci_link_free(), do not unlink items from a LIST queue within
a LIST_FOREACH() iterator.
rfcomm_session.c:
- In rfcomm_session_recv_mcc_nsc(), do not unlink items from a LIST
queue within a LIST_FOREACH() iterator.
from scw@
guard against a possible situation where the list of l2cap channels is changed
when the bluetooth code is not expecting it to be. During a disconnect, we can
detach the channel that is being disconnected, but its not really safe to detach
any others.
Print explicit 64-bit types using the format macros from int_fmtio.h.
Unbreaks the build for our LP64 ports, where "long long" typically is
not 64 bits.
Revision 1.405: download - view: text, markup, annotated - select for diffs
Sun Sep 10 15:45:56 2006 UTC (18 years, 3 months ago) by plunky
Branches: MAIN
Diff to: previous 1.404: preferred, colored
Changes since revision 1.404: +2 -2
lines
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
Revision 1.404: download - view: text, markup, annotated - select for diffs
Sat Sep 9 23:52:27 2006 UTC (18 years, 3 months ago) by riz
Branches: MAIN
Diff to: previous 1.403: preferred, colored
Changes since revision 1.403: +2 -2
lines
Add msk(4) info to the sk(4) manpage, and install links (from OpenBSD).
Also, add msk to DEVNAMES.
Revision 1.403: download - view: text, markup, annotated - select for diffs
Thu Sep 7 14:22:08 2006 UTC (18 years, 3 months ago) by itohy
Branches: MAIN
Diff to: previous 1.402: preferred, colored
Changes since revision 1.402: +2 -2
lines
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.
Revision 1.402: download - view: text, markup, annotated - select for diffs
Sat Sep 2 23:39:56 2006 UTC (18 years, 3 months ago) by wiz
Branches: MAIN
Diff to: previous 1.401: preferred, colored
Changes since revision 1.401: +4 -4
lines
Remove some ns(4)-related man pages.
Revision 1.401: download - view: text, markup, annotated - select for diffs
Sat Aug 26 16:14:29 2006 UTC (18 years, 3 months ago) by matt
Branches: MAIN
Diff to: previous 1.400: preferred, colored
Changes since revision 1.400: +2 -2
lines
Remove XNS protocol man page.
Revision 1.397.2.1: download - view: text, markup, annotated - select for diffs
Fri Aug 25 12:33:57 2006 UTC (18 years, 3 months ago) by tron
Branches: abandoned-netbsd-4
Diff to: previous 1.397: preferred, colored
Changes since revision 1.397: +2 -2
lines
Pull up following revision(s) (requested by plunky in ticket #49):
share/man/man4/Makefile: revision 1.400
sys/dev/usb/FILES: revision 1.10
sys/dev/usb/files.usb: revision 1.69
share/man/man4/ubt.4: revision 1.2
sys/dev/usb/ubt.c: revision 1.15
share/man/man4/ubtbcmfw.4: file removal
distrib/sets/lists/man/mi: revision 1.922
sys/dev/DEVNAMES: revision 1.210
sys/dev/usb/ubtbcmfw.c: file removal
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
Revision 1.400: download - view: text, markup, annotated - select for diffs
Sat Aug 19 16:35:02 2006 UTC (18 years, 3 months ago) by plunky
Branches: MAIN
Diff to: previous 1.399: preferred, colored
Changes since revision 1.399: +2 -2
lines
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
Revision 1.399: download - view: text, markup, annotated - select for diffs
Sun Aug 13 09:28:23 2006 UTC (18 years, 4 months ago) by wiz
Branches: MAIN
Diff to: previous 1.398: preferred, colored
Changes since revision 1.398: +2 -2
lines
Add dk(4) manpage written by Jonathan A. Kollasch, provided in PR 34193.
Revision 1.398: download - view: text, markup, annotated - select for diffs
Sun Aug 13 02:21:45 2006 UTC (18 years, 4 months ago) by simonb
Branches: MAIN
Diff to: previous 1.397: preferred, colored
Changes since revision 1.397: +2 -2
lines
Add a port of the OpenBSD Intel 3945ABG wpi(4) wireless driver, by
Jean-Baptiste Campesato.
From PR kern/33778.
Revision 1.350.2.11: download - view: text, markup, annotated - select for diffs
Mon Jul 31 12:35:22 2006 UTC (18 years, 4 months ago) by tron
Branches: netbsd-3
CVS tags: netbsd-3-1-RELEASE,
netbsd-3-1-RC4,
netbsd-3-1-RC3,
netbsd-3-1-RC2,
netbsd-3-1-RC1,
netbsd-3-1-1-RELEASE,
netbsd-3-1
Diff to: previous 1.350.2.10: preferred, colored; branchpoint 1.350: preferred, colored
Changes since revision 1.350.2.10: +2 -2
lines
Apply patch (requested by bouyer in ticket #1441):
Pullup the twa(4) driver for the 3ware Apache RAID controllers.
Matching revisions in current:
share/man/man4/twa.4 1.1
sys/dev/pci/ld_twa.c 1.2
sys/dev/pci/twa.c 1.9
sys/dev/pci/twaio.h 1.3
sys/dev/pci/twareg.h 1.5
sys/dev/pci/twavar.h 1.5
Revision 1.397: download - view: text, markup, annotated - select for diffs
Sat Jul 29 08:54:52 2006 UTC (18 years, 4 months ago) by wiz
Branches: MAIN
CVS tags: abandoned-netbsd-4-base
Branch point for: abandoned-netbsd-4
Diff to: previous 1.396: preferred, colored
Changes since revision 1.396: +2 -2
lines
Install twa(4) and add it to set list.
Revision 1.396: download - view: text, markup, annotated - select for diffs
Wed Jul 26 10:43:01 2006 UTC (18 years, 4 months ago) by tron
Branches: MAIN
Diff to: previous 1.395: preferred, colored
Changes since revision 1.395: +2 -2
lines
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.
Revision 1.395: download - view: text, markup, annotated - select for diffs
Wed Jul 26 10:31:00 2006 UTC (18 years, 4 months ago) by tron
Branches: MAIN
Diff to: previous 1.394: preferred, colored
Changes since revision 1.394: +2 -2
lines
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.
Revision 1.394: download - view: text, markup, annotated - select for diffs
Sat Jul 8 17:22:14 2006 UTC (18 years, 5 months ago) by tsutsui
Branches: MAIN
Diff to: previous 1.393: preferred, colored
Changes since revision 1.393: +2 -1
lines
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.
Revision 1.393: download - view: text, markup, annotated - select for diffs
Wed Jul 5 10:17:20 2006 UTC (18 years, 5 months ago) by martin
Branches: MAIN
Diff to: previous 1.392: preferred, colored
Changes since revision 1.392: +2 -2
lines
Add man page for ugensa
Revision 1.392: download - view: text, markup, annotated - select for diffs
Fri Jun 30 23:12:48 2006 UTC (18 years, 5 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.391: preferred, colored
Changes since revision 1.391: +3 -3
lines
Enable kse(4).
Revision 1.391: download - view: text, markup, annotated - select for diffs
Tue Jun 27 21:43:26 2006 UTC (18 years, 5 months ago) by peter
Branches: MAIN
Diff to: previous 1.390: preferred, colored
Changes since revision 1.390: +2 -2
lines
Add man4.hpcarm. Pointed out by Hisashi T Fujinaka.
Revision 1.390: download - view: text, markup, annotated - select for diffs
Sat Jun 24 12:22:52 2006 UTC (18 years, 5 months ago) by kardel
Branches: MAIN
Diff to: previous 1.389: preferred, colored
Changes since revision 1.389: +1 -1
lines
move geodecntr.4 into i386 section where it actually belongs
Revision 1.389: download - view: text, markup, annotated - select for diffs
Sat Jun 24 08:27:16 2006 UTC (18 years, 5 months ago) by kardel
Branches: MAIN
Diff to: previous 1.388: preferred, colored
Changes since revision 1.388: +2 -2
lines
add description for geodecntr
Revision 1.388: download - view: text, markup, annotated - select for diffs
Mon Jun 19 15:44:36 2006 UTC (18 years, 5 months ago) by gdamore
Branches: MAIN
Diff to: previous 1.387: preferred, colored
Changes since revision 1.387: +7 -5
lines
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 1.387: download - view: text, markup, annotated - select for diffs
Thu May 18 09:05:51 2006 UTC (18 years, 6 months ago) by liamjfoy
Branches: MAIN
CVS tags: chap-midi-nbase,
chap-midi-base,
chap-midi
Diff to: previous 1.386: preferred, colored
Changes since revision 1.386: +2 -2
lines
Integrate Common Address Redundancy Procotol (CARP) from OpenBSD
'pseudo-device carp'
Thanks to: joerg@ christos@ riz@ and others who tested
Ok: core@
Revision 1.386: download - view: text, markup, annotated - select for diffs
Wed May 17 00:28:02 2006 UTC (18 years, 7 months ago) by kiyohara
Branches: MAIN
Diff to: previous 1.385: preferred, colored
Changes since revision 1.385: +4 -1
lines
Add man page for lmtemp(4).
Revision 1.385: download - view: text, markup, annotated - select for diffs
Sat May 13 09:02:19 2006 UTC (18 years, 7 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.384: preferred, colored
Changes since revision 1.384: +2 -2
lines
Driver for iTE IT87xxF and compatibles hardware monitor. Add
commented out entries on GENERIC and GENERIC_LAPTOP.
Adapted from OpenBSD.
Revision 1.384: download - view: text, markup, annotated - select for diffs
Thu May 11 21:00:18 2006 UTC (18 years, 7 months ago) by gdamore
Branches: MAIN
Diff to: previous 1.383: preferred, colored
Changes since revision 1.383: +2 -2
lines
Add preliminary documentation for DDC and EDID subsystem.
Revision 1.383: download - view: text, markup, annotated - select for diffs
Sun May 7 01:34:46 2006 UTC (18 years, 7 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.382: preferred, colored
Changes since revision 1.382: +3 -3
lines
Man page for the Intel PIIX4 power management driver.
Revision 1.350.2.10: download - view: text, markup, annotated - select for diffs
Thu May 4 12:12:07 2006 UTC (18 years, 7 months ago) by tron
Branches: netbsd-3
Diff to: previous 1.350.2.9: preferred, colored; branchpoint 1.350: preferred, colored
Changes since revision 1.350.2.9: +3 -2
lines
Pull up following revision(s) (requested by jonathan in ticket #1298):
share/man/man4/pciide.4: revision 1.60
share/man/man4/Makefile: revision 1.376 via patch
sys/dev/pci/svwsata.c: revision 1.1
sys/dev/pci/files.pci: revision 1.243
sys/arch/i386/conf/INSTALL: revision 1.281
sys/dev/pci/pcidevs: revision 1.771 via patch
sys/dev/pci/pciidevar.h: revision 1.33
sys/arch/i386/conf/XEN0: revision 1.34
sys/arch/i386/conf/GENERIC: revision 1.732
sys/dev/pci/pciide_svwsata_reg.h: revision 1.1
Add svwsata(4), a driver for Serverworks K2 SATA controllers. From
OpenBSD via Joerg Sonnenberger.
Revision 1.350.2.9: download - view: text, markup, annotated - select for diffs
Thu Apr 20 03:11:14 2006 UTC (18 years, 7 months ago) by snj
Branches: netbsd-3
Diff to: previous 1.350.2.8: preferred, colored; branchpoint 1.350: preferred, colored
Changes since revision 1.350.2.8: +1 -1
lines
Pull up following revision(s) (requested by tron in ticket #1266):
share/man/man4/Makefile: revision 1.377
sys/dev/pci/if_nfe.c: revision 1.1
sys/dev/pci/if_nfereg.h: revision 1.1
share/man/man4/nfe.4: revision 1.1
sys/dev/pci/if_nfevar.h: revision 1.1
distrib/sets/lists/man/mi: revision 1.863
add nfe driver and manpage from OpenBSD.
Revision 1.313.2.5.2.4: download - view: text, markup, annotated - select for diffs
Tue Apr 11 02:12:59 2006 UTC (18 years, 8 months ago) by riz
Branches: netbsd-2
Diff to: previous 1.313.2.5.2.3: preferred, colored; branchpoint 1.313.2.5: preferred, colored; next MAIN 1.313.2.6: preferred, colored
Changes since revision 1.313.2.5.2.3: +2 -2
lines
Pull up following revision(s) (requested by he in ticket #10409):
share/man/man4/Makefile: revision 1.378 via patch
Enable ciss(4) manpage.
Revision 1.350.2.8: download - view: text, markup, annotated - select for diffs
Sat Apr 8 23:36:13 2006 UTC (18 years, 8 months ago) by tron
Branches: netbsd-3
Diff to: previous 1.350.2.7: preferred, colored; branchpoint 1.350: preferred, colored
Changes since revision 1.350.2.7: +1 -1
lines
Pull up following revision(s) (requested by he in ticket #1247):
share/man/man4/Makefile: revision 1.378
distrib/sets/lists/man/mi: revision 1.870 via patch
Enable ciss(4) manpage.
Revision 1.382: download - view: text, markup, annotated - select for diffs
Fri Apr 7 18:55:21 2006 UTC (18 years, 8 months ago) by riz
Branches: MAIN
Diff to: previous 1.381: preferred, colored
Changes since revision 1.381: +4 -1
lines
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.
Revision 1.381: download - view: text, markup, annotated - select for diffs
Mon Apr 3 08:15:49 2006 UTC (18 years, 8 months ago) by scw
Branches: MAIN
Diff to: previous 1.380: preferred, colored
Changes since revision 1.380: +2 -2
lines
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.
Revision 1.380: download - view: text, markup, annotated - select for diffs
Tue Mar 28 20:50:57 2006 UTC (18 years, 8 months ago) by riz
Branches: MAIN
Diff to: previous 1.379: preferred, colored
Changes since revision 1.379: +2 -1
lines
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.
Revision 1.379: download - view: text, markup, annotated - select for diffs
Sat Mar 25 17:38:34 2006 UTC (18 years, 8 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.378: preferred, colored
Changes since revision 1.378: +3 -3
lines
Add basic rgephy(4) manpage, from OpenBSD.
Revision 1.378: download - view: text, markup, annotated - select for diffs
Thu Mar 23 20:51:18 2006 UTC (18 years, 8 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.377: preferred, colored
Changes since revision 1.377: +2 -2
lines
Enable ciss(4) manpage.
Revision 1.377: download - view: text, markup, annotated - select for diffs
Sun Mar 12 22:40:42 2006 UTC (18 years, 9 months ago) by chs
Branches: MAIN
Diff to: previous 1.376: preferred, colored
Changes since revision 1.376: +2 -2
lines
add nfe driver and manpage from OpenBSD.
Revision 1.376: download - view: text, markup, annotated - select for diffs
Mon Mar 6 18:35:24 2006 UTC (18 years, 9 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.375: preferred, colored
Changes since revision 1.375: +3 -2
lines
Add svwsata(4), a driver for Serverworks K2 SATA controllers. From
OpenBSD via Joerg Sonnenberger.
Revision 1.375: download - view: text, markup, annotated - select for diffs
Sat Feb 25 01:58:03 2006 UTC (18 years, 9 months ago) by christos
Branches: MAIN
Diff to: previous 1.374: preferred, colored
Changes since revision 1.374: +2 -2
lines
remove vinum
Revision 1.374: download - view: text, markup, annotated - select for diffs
Fri Feb 10 21:50:06 2006 UTC (18 years, 10 months ago) by gdamore
Branches: MAIN
Diff to: previous 1.373: preferred, colored
Changes since revision 1.373: +3 -3
lines
Added evbmips section, including intro and aupci man pages.
Revision 1.373: download - view: text, markup, annotated - select for diffs
Tue Jan 17 19:08:29 2006 UTC (18 years, 10 months ago) by jmmv
Branches: MAIN
Diff to: previous 1.372: preferred, colored
Changes since revision 1.372: +2 -2
lines
The tb(4) driver is gone, so should be the manual page.
Revision 1.372: download - view: text, markup, annotated - select for diffs
Wed Jan 4 21:52:17 2006 UTC (18 years, 11 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.371: preferred, colored
Changes since revision 1.371: +3 -2
lines
Add rlphy(4) (Realtek 8139/8201L PHY) from OpenBSD.
Revision 1.259.2.6: download - view: text, markup, annotated - select for diffs
Wed Oct 26 22:16:26 2005 UTC (19 years, 1 month ago) by jmc
Branches: netbsd-1-6
Diff to: previous 1.259.2.5: preferred, colored; branchpoint 1.259: preferred, colored; next MAIN 1.260: preferred, colored
Changes since revision 1.259.2.5: +2 -2
lines
Pullup (via patch) requested in ticket #5754 by itohy
Provide a backport for ukyopon(4) and pullup umodem(4) updates.
Revision 1.371: download - view: text, markup, annotated - select for diffs
Tue Sep 27 02:38:03 2005 UTC (19 years, 2 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.370: preferred, colored
Changes since revision 1.370: +2 -2
lines
Add man page for gpio framework (from OpenBSD)
Revision 1.370: download - view: text, markup, annotated - select for diffs
Thu Sep 15 15:04:55 2005 UTC (19 years, 3 months ago) by nonaka
Branches: MAIN
Diff to: previous 1.369: preferred, colored
Changes since revision 1.369: +4 -4
lines
Added rs5c372rtc, shpcic man pages.
Revision 1.350.2.7: download - view: text, markup, annotated - select for diffs
Tue Sep 13 21:00:39 2005 UTC (19 years, 3 months ago) by tron
Branches: netbsd-3
CVS tags: netbsd-3-0-RELEASE,
netbsd-3-0-RC6,
netbsd-3-0-RC5,
netbsd-3-0-RC4,
netbsd-3-0-RC3,
netbsd-3-0-RC2,
netbsd-3-0-RC1,
netbsd-3-0-3-RELEASE,
netbsd-3-0-2-RELEASE,
netbsd-3-0-1-RELEASE,
netbsd-3-0
Diff to: previous 1.350.2.6: preferred, colored; branchpoint 1.350: preferred, colored
Changes since revision 1.350.2.6: +1 -1
lines
Pull up following revision(s) (requested by ragge in ticket #768):
share/man/man4/xge.4: revision 1.1
share/man/man4/Makefile: revision 1.368
Add man page for the xge driver.
Revision 1.369: download - view: text, markup, annotated - select for diffs
Mon Sep 12 08:16:29 2005 UTC (19 years, 3 months ago) by wiz
Branches: MAIN
Diff to: previous 1.368: preferred, colored
Changes since revision 1.368: +2 -2
lines
Add adt7467c.4.
Revision 1.368: download - view: text, markup, annotated - select for diffs
Fri Sep 9 11:20:38 2005 UTC (19 years, 3 months ago) by ragge
Branches: MAIN
Diff to: previous 1.367: preferred, colored
Changes since revision 1.367: +2 -2
lines
Add man page for the xge driver.
Revision 1.350.2.6: download - view: text, markup, annotated - select for diffs
Thu Aug 4 18:40:18 2005 UTC (19 years, 4 months ago) by tron
Branches: netbsd-3
Diff to: previous 1.350.2.5: preferred, colored; branchpoint 1.350: preferred, colored
Changes since revision 1.350.2.5: +2 -2
lines
Pull up revision 1.366 (requested by nakayama in ticket #638):
Add man page for teliosio(4).
Revision 1.367: download - view: text, markup, annotated - select for diffs
Sun Jul 31 13:31:07 2005 UTC (19 years, 4 months ago) by augustss
Branches: MAIN
Diff to: previous 1.366: preferred, colored
Changes since revision 1.366: +2 -2
lines
Add ucycom.4
Revision 1.366: download - view: text, markup, annotated - select for diffs
Sun Jul 31 00:12:17 2005 UTC (19 years, 4 months ago) by nakayama
Branches: MAIN
Diff to: previous 1.365: preferred, colored
Changes since revision 1.365: +3 -3
lines
Add man page for teliosio(4).
Revision 1.313.2.5.2.3: download - view: text, markup, annotated - select for diffs
Thu Jul 21 19:26:54 2005 UTC (19 years, 4 months ago) by riz
Branches: netbsd-2
CVS tags: netbsd-2-1-RELEASE,
netbsd-2-1-RC6,
netbsd-2-1-RC5,
netbsd-2-1-RC4,
netbsd-2-1-RC3,
netbsd-2-1-RC2,
netbsd-2-1-RC1,
netbsd-2-1
Diff to: previous 1.313.2.5.2.2: preferred, colored; branchpoint 1.313.2.5: preferred, colored
Changes since revision 1.313.2.5.2.2: +2 -2
lines
Pull up revision 1.354 (requested by itohy in ticket #1430):
ukyopon(4): Kyocera AIR-EDGE PHONE driver
Close NetBSD PR #25954 in a different way.
Revision 1.350.2.5: download - view: text, markup, annotated - select for diffs
Wed Jul 20 12:11:01 2005 UTC (19 years, 4 months ago) by tron
Branches: netbsd-3
Diff to: previous 1.350.2.4: preferred, colored; branchpoint 1.350: preferred, colored
Changes since revision 1.350.2.4: +1 -1
lines
Pull up revision 1.364 via patch (requested by rpaulo in ticket #601):
Add rtw.4
Revision 1.365: download - view: text, markup, annotated - select for diffs
Mon Jul 18 11:36:46 2005 UTC (19 years, 4 months ago) by augustss
Branches: MAIN
Diff to: previous 1.364: preferred, colored
Changes since revision 1.364: +2 -2
lines
Add uipaq(4). From OpenBSD.
Revision 1.364: download - view: text, markup, annotated - select for diffs
Sun Jul 17 22:04:07 2005 UTC (19 years, 4 months ago) by rpaulo
Branches: MAIN
Diff to: previous 1.363: preferred, colored
Changes since revision 1.363: +2 -2
lines
Add rtw.4
Revision 1.363: download - view: text, markup, annotated - select for diffs
Thu Jul 14 12:46:45 2005 UTC (19 years, 5 months ago) by drochner
Branches: MAIN
Diff to: previous 1.362: preferred, colored
Changes since revision 1.362: +2 -2
lines
add a manpage for the ral (at pci/cardbus/uhub) wlan driver,
mostly from OpenBSD
Revision 1.362: download - view: text, markup, annotated - select for diffs
Mon Jul 11 15:37:00 2005 UTC (19 years, 5 months ago) by kiyohara
Branches: MAIN
Diff to: previous 1.361: preferred, colored
Changes since revision 1.361: +6 -3
lines
ieee1394 import from FreeBSD.
Revision 1.350.2.4: download - view: text, markup, annotated - select for diffs
Sun Jul 3 11:33:33 2005 UTC (19 years, 5 months ago) by tron
Branches: netbsd-3
Diff to: previous 1.350.2.3: preferred, colored; branchpoint 1.350: preferred, colored
Changes since revision 1.350.2.3: +4 -2
lines
Pull up revision 1.358 via patch (requested by briggs in ticket #520):
Add an initial man page for ataraid(4).
Revision 1.350.2.3: download - view: text, markup, annotated - select for diffs
Sat Jul 2 16:38:38 2005 UTC (19 years, 5 months ago) by tron
Branches: netbsd-3
Diff to: previous 1.350.2.2: preferred, colored; branchpoint 1.350: preferred, colored
Changes since revision 1.350.2.2: +2 -2
lines
Pull up revision 1.359 via patch (requested by kent in ticket #494):
add azalia(4) man page
Revision 1.361: download - view: text, markup, annotated - select for diffs
Tue Jun 28 08:36:48 2005 UTC (19 years, 5 months ago) by kent
Branches: MAIN
Diff to: previous 1.360: preferred, colored
Changes since revision 1.360: +2 -3
lines
remove pss(4) driver. It has never been workable and has not been
compilable for a long time.
Revision 1.360: download - view: text, markup, annotated - select for diffs
Tue Jun 21 18:11:38 2005 UTC (19 years, 5 months ago) by wiz
Branches: MAIN
Diff to: previous 1.359: preferred, colored
Changes since revision 1.359: +2 -2
lines
Add ac97(4) man page from OpenBSD, written by Constantine Sapuntzakis.
Suggested by kent@.
Revision 1.359: download - view: text, markup, annotated - select for diffs
Tue Jun 21 17:37:06 2005 UTC (19 years, 5 months ago) by kent
Branches: MAIN
Diff to: previous 1.358: preferred, colored
Changes since revision 1.358: +3 -2
lines
add azalia(4) man page
Revision 1.358: download - view: text, markup, annotated - select for diffs
Mon Jun 20 03:08:25 2005 UTC (19 years, 5 months ago) by briggs
Branches: MAIN
Diff to: previous 1.357: preferred, colored
Changes since revision 1.357: +3 -2
lines
Add an initial man page for ataraid(4).
Revision 1.357: download - view: text, markup, annotated - select for diffs
Fri Jun 17 17:12:57 2005 UTC (19 years, 5 months ago) by peter
Branches: MAIN
Diff to: previous 1.356: preferred, colored
Changes since revision 1.356: +2 -2
lines
Install vinum(4) manpage.
Revision 1.350.2.2: download - view: text, markup, annotated - select for diffs
Fri Jun 10 15:03:23 2005 UTC (19 years, 6 months ago) by tron
Branches: netbsd-3
Diff to: previous 1.350.2.1: preferred, colored; branchpoint 1.350: preferred, colored
Changes since revision 1.350.2.1: +1 -1
lines
Pull up revision 1.356 (requested by elad in ticket #389):
Remove outdated verifiedexec(4) man page, add veriexec(4) to makefile
Revision 1.356: download - view: text, markup, annotated - select for diffs
Mon Apr 25 00:43:26 2005 UTC (19 years, 7 months ago) by blymn
Branches: MAIN
Diff to: previous 1.355: preferred, colored
Changes since revision 1.355: +2 -2
lines
Remove outdated verifiedexec(4) man page, add veriexec(4) to makefile
Revision 1.355: download - view: text, markup, annotated - select for diffs
Sun Apr 24 21:43:03 2005 UTC (19 years, 7 months ago) by dyoung
Branches: MAIN
Diff to: previous 1.354: preferred, colored
Changes since revision 1.354: +2 -2
lines
Add IEEE 802.11 manual pages from FreeBSD to both the Makefiles
and the set lists.
Revision 1.350.2.1: download - view: text, markup, annotated - select for diffs
Sun Apr 17 10:34:32 2005 UTC (19 years, 7 months ago) by tron
Branches: netbsd-3
Diff to: previous 1.350: preferred, colored
Changes since revision 1.350: +2 -2
lines
Pull up revision 1.354 (requested by itohy in ticket #160):
ukyopon(4): Kyocera AIR-EDGE PHONE driver
Close NetBSD PR #25954 in a different way.
Revision 1.354: download - view: text, markup, annotated - select for diffs
Fri Apr 15 17:18:18 2005 UTC (19 years, 8 months ago) by itohy
Branches: MAIN
Diff to: previous 1.353: preferred, colored
Changes since revision 1.353: +2 -2
lines
ukyopon(4): Kyocera AIR-EDGE PHONE driver
Close NetBSD PR #25954 in a different way.
Revision 1.313.2.7: download - view: text, markup, annotated - select for diffs
Thu Apr 7 09:15:55 2005 UTC (19 years, 8 months ago) by tron
Branches: netbsd-2-0
CVS tags: netbsd-2-0-3-RELEASE
Diff to: previous 1.313.2.6: preferred, colored; branchpoint 1.313: preferred, colored; next MAIN 1.314: preferred, colored
Changes since revision 1.313.2.6: +2 -2
lines
Backout changes for tickets 1057 to 1059. They shouldn't have gone
into this branch.
Revision 1.313.2.6: download - view: text, markup, annotated - select for diffs
Wed Apr 6 16:42:21 2005 UTC (19 years, 8 months ago) by tron
Branches: netbsd-2-0
Diff to: previous 1.313.2.5: preferred, colored; branchpoint 1.313: preferred, colored
Changes since revision 1.313.2.5: +1 -1
lines
Pull up revision 1.342 via patch (requested by he in ticket #1059):
Add manual page for the ahd driver. Taken from FreeBSD and adapted
to the NetBSD port of the driver.
OK'ed by fvdl.
Revision 1.313.2.5.2.2: download - view: text, markup, annotated - select for diffs
Wed Apr 6 16:42:19 2005 UTC (19 years, 8 months ago) by tron
Branches: netbsd-2
Diff to: previous 1.313.2.5.2.1: preferred, colored; branchpoint 1.313.2.5: preferred, colored
Changes since revision 1.313.2.5.2.1: +2 -2
lines
Pull up revision 1.342 via patch (requested by he in ticket #1059):
Add manual page for the ahd driver. Taken from FreeBSD and adapted
to the NetBSD port of the driver.
OK'ed by fvdl.
Revision 1.353: download - view: text, markup, annotated - select for diffs
Sun Apr 3 11:56:29 2005 UTC (19 years, 8 months ago) by jdolecek
Branches: MAIN
Diff to: previous 1.352: preferred, colored
Changes since revision 1.352: +2 -2
lines
add tra(4) manpage
Revision 1.313.2.5.2.1: download - view: text, markup, annotated - select for diffs
Sat Apr 2 21:33:19 2005 UTC (19 years, 8 months ago) by he
Branches: netbsd-2
Diff to: previous 1.313.2.5: preferred, colored
Changes since revision 1.313.2.5: +2 -2
lines
Pull up revision 1.336 (via patch, requested by bouyer in ticket #1019):
Add pdcsata(4), a driver for the Promise SATA150 (aka PDC203xx)
series of controllers.
Revision 1.352: download - view: text, markup, annotated - select for diffs
Fri Mar 25 23:30:56 2005 UTC (19 years, 8 months ago) by cube
Branches: MAIN
Diff to: previous 1.351: preferred, colored
Changes since revision 1.351: +2 -2
lines
Add a manpage for attimer(4), and cross-reference it from pcppi(4).
Revision 1.351: download - view: text, markup, annotated - select for diffs
Fri Mar 18 11:11:51 2005 UTC (19 years, 8 months ago) by yamt
Branches: MAIN
Diff to: previous 1.350: preferred, colored
Changes since revision 1.350: +2 -2
lines
add agr(4), a pseudo network device driver for link aggregation.
Revision 1.350: download - view: text, markup, annotated - select for diffs
Sun Feb 20 18:41:14 2005 UTC (19 years, 9 months ago) by jdolecek
Branches: MAIN
CVS tags: netbsd-3-base
Branch point for: netbsd-3
Diff to: previous 1.349: preferred, colored
Changes since revision 1.349: +2 -2
lines
add vge(4) manpage, obtained from FreeBSD
Revision 1.349: download - view: text, markup, annotated - select for diffs
Sun Feb 20 16:53:10 2005 UTC (19 years, 9 months ago) by jdolecek
Branches: MAIN
Diff to: previous 1.348: preferred, colored
Changes since revision 1.348: +2 -2
lines
add ciphy(4) manpage
Revision 1.348: download - view: text, markup, annotated - select for diffs
Mon Jan 24 02:06:14 2005 UTC (19 years, 10 months ago) by joff
Branches: MAIN
Diff to: previous 1.347: preferred, colored
Changes since revision 1.347: +2 -2
lines
Add atu(4) manpage: 802.11b USB wifi dongle. From OpenBSD.
Revision 1.347: download - view: text, markup, annotated - select for diffs
Sat Jan 22 03:34:08 2005 UTC (19 years, 10 months ago) by briggs
Branches: MAIN
Diff to: previous 1.346: preferred, colored
Changes since revision 1.346: +2 -2
lines
Add sem.4 from FreeBSD.
Revision 1.346: download - view: text, markup, annotated - select for diffs
Wed Jan 12 00:07:36 2005 UTC (19 years, 11 months ago) by reinoud
Branches: MAIN
Diff to: previous 1.345: preferred, colored
Changes since revision 1.345: +2 -2
lines
Add documentation for the new auixp(4) driver.
Revision 1.345: download - view: text, markup, annotated - select for diffs
Tue Jan 11 18:37:26 2005 UTC (19 years, 11 months ago) by skrll
Branches: MAIN
Diff to: previous 1.344: preferred, colored
Changes since revision 1.344: +3 -3
lines
Add iwi.4
Revision 1.344: download - view: text, markup, annotated - select for diffs
Sun Jan 9 22:51:32 2005 UTC (19 years, 11 months ago) by smb
Branches: MAIN
Diff to: previous 1.343: preferred, colored
Changes since revision 1.343: +3 -3
lines
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@.
Revision 1.343: download - view: text, markup, annotated - select for diffs
Sat Jan 8 22:29:38 2005 UTC (19 years, 11 months ago) by cube
Branches: MAIN
Diff to: previous 1.342: preferred, colored
Changes since revision 1.342: +2 -2
lines
Add and install a manual page for tap(4).
Revision 1.342: download - view: text, markup, annotated - select for diffs
Thu Dec 23 23:13:14 2004 UTC (19 years, 11 months ago) by he
Branches: MAIN
Diff to: previous 1.341: preferred, colored
Changes since revision 1.341: +2 -2
lines
Add manual page for the ahd driver. Taken from FreeBSD and adapted
to the NetBSD port of the driver.
OK'ed by fvdl.
Revision 1.341: download - view: text, markup, annotated - select for diffs
Mon Dec 20 18:32:46 2004 UTC (19 years, 11 months ago) by christos
Branches: MAIN
Diff to: previous 1.340: preferred, colored
Changes since revision 1.340: +1 -1
lines
revert previous change while discussion is in progress
Revision 1.340: download - view: text, markup, annotated - select for diffs
Mon Dec 20 03:50:05 2004 UTC (19 years, 11 months ago) by itojun
Branches: MAIN
Diff to: previous 1.339: preferred, colored
Changes since revision 1.339: +2 -2
lines
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.
Revision 1.339: download - view: text, markup, annotated - select for diffs
Mon Dec 6 19:34:01 2004 UTC (20 years ago) by cube
Branches: MAIN
Diff to: previous 1.338: preferred, colored
Changes since revision 1.338: +2 -2
lines
Add a manual page for ixpide(4).
Revision 1.338: download - view: text, markup, annotated - select for diffs
Wed Dec 1 22:27:45 2004 UTC (20 years ago) by grant
Branches: MAIN
Diff to: previous 1.337: preferred, colored
Changes since revision 1.337: +2 -2
lines
add iteide(4) driver for ITE8212-based IDE controllers. from
OpenBSD, ported to NetBSD by me.
ok'd by bouyer@, thorpej@.
Revision 1.337: download - view: text, markup, annotated - select for diffs
Wed Nov 24 22:38:44 2004 UTC (20 years ago) by wiz
Branches: MAIN
Diff to: previous 1.336: preferred, colored
Changes since revision 1.336: +24 -23
lines
Remove netsmb(4); nsmb(4) replaces it (and is linked to it for now).
Sort MLINKS lines in Makefile.
Revision 1.336: download - view: text, markup, annotated - select for diffs
Wed Nov 24 20:49:19 2004 UTC (20 years ago) by bouyer
Branches: MAIN
Diff to: previous 1.335: preferred, colored
Changes since revision 1.335: +2 -2
lines
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).
Revision 1.335: download - view: text, markup, annotated - select for diffs
Sun Nov 14 11:26:44 2004 UTC (20 years, 1 month ago) by yamt
Branches: MAIN
Diff to: previous 1.334: preferred, colored
Changes since revision 1.334: +1 -4
lines
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
Revision 1.259.2.5: download - view: text, markup, annotated - select for diffs
Thu Nov 11 23:24:16 2004 UTC (20 years, 1 month ago) by he
Branches: netbsd-1-6
Diff to: previous 1.259.2.4: preferred, colored; branchpoint 1.259: preferred, colored
Changes since revision 1.259.2.4: +3 -3
lines
Pull up revision 1.329 (via patch, requested by itohy in ticket #1741):
Add support for the Workbit NinjaSCSI-32 PCI/Cardbus
SCSI driver, njs(4).
Revision 1.334: download - view: text, markup, annotated - select for diffs
Sat Oct 23 13:46:45 2004 UTC (20 years, 1 month ago) by augustss
Branches: MAIN
Diff to: previous 1.333: preferred, colored
Changes since revision 1.333: +2 -2
lines
s/uax/axe/
Revision 1.333: download - view: text, markup, annotated - select for diffs
Fri Oct 22 13:22:25 2004 UTC (20 years, 1 month ago) by augustss
Branches: MAIN
Diff to: previous 1.332: preferred, colored
Changes since revision 1.332: +2 -2
lines
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.
Revision 1.332: download - view: text, markup, annotated - select for diffs
Sun Oct 10 16:48:04 2004 UTC (20 years, 2 months ago) by augustss
Branches: MAIN
Diff to: previous 1.331: preferred, colored
Changes since revision 1.331: +2 -2
lines
Add auacer.
Revision 1.331: download - view: text, markup, annotated - select for diffs
Fri Sep 24 13:49:50 2004 UTC (20 years, 2 months ago) by wiz
Branches: MAIN
Diff to: previous 1.330: preferred, colored
Changes since revision 1.330: +3 -3
lines
Install sti(4) and descend into man4.hp700.
Revision 1.330: download - view: text, markup, annotated - select for diffs
Sat Sep 4 23:54:51 2004 UTC (20 years, 3 months ago) by manu
Branches: MAIN
Diff to: previous 1.329: preferred, colored
Changes since revision 1.329: +4 -4
lines
Documentation on the PIM kernel options and on multicast, from Pavlin
Radoslavov, imported from FreeBSD.
Revision 1.313.2.5: download - view: text, markup, annotated - select for diffs
Mon Aug 30 09:46:53 2004 UTC (20 years, 3 months ago) by tron
Branches: netbsd-2-0
CVS tags: netbsd-2-base,
netbsd-2-0-RELEASE,
netbsd-2-0-RC5,
netbsd-2-0-RC4,
netbsd-2-0-RC3,
netbsd-2-0-RC2,
netbsd-2-0-RC1,
netbsd-2-0-2-RELEASE,
netbsd-2-0-1-RELEASE
Branch point for: netbsd-2
Diff to: previous 1.313.2.4: preferred, colored; branchpoint 1.313: preferred, colored
Changes since revision 1.313.2.4: +1 -1
lines
Pull up revision 1.329 (requested by itohy in ticket #800):
Add njs.4
Revision 1.329: download - view: text, markup, annotated - select for diffs
Thu Aug 26 14:19:56 2004 UTC (20 years, 3 months ago) by itohy
Branches: MAIN
Diff to: previous 1.328: preferred, colored
Changes since revision 1.328: +2 -2
lines
Add njs.4
Revision 1.328: download - view: text, markup, annotated - select for diffs
Mon Aug 23 13:25:40 2004 UTC (20 years, 3 months ago) by wiz
Branches: MAIN
Diff to: previous 1.327: preferred, colored
Changes since revision 1.327: +3 -3
lines
Move ipw(4) from usr.sbin/ipwctl to share/man/man4.
Revision 1.327: download - view: text, markup, annotated - select for diffs
Sat Jul 24 19:42:49 2004 UTC (20 years, 4 months ago) by mrg
Branches: MAIN
Diff to: previous 1.326: preferred, colored
Changes since revision 1.326: +3 -3
lines
install spif(4).
Revision 1.326: download - view: text, markup, annotated - select for diffs
Tue Jul 20 09:04:47 2004 UTC (20 years, 4 months ago) by wiz
Branches: MAIN
Diff to: previous 1.325: preferred, colored
Changes since revision 1.325: +2 -2
lines
Add ptm(4). Christos thinks it's minimal but ok :)
Revision 1.313.2.4: download - view: text, markup, annotated - select for diffs
Wed Jul 14 09:06:40 2004 UTC (20 years, 5 months ago) by tron
Branches: netbsd-2-0
Diff to: previous 1.313.2.3: preferred, colored; branchpoint 1.313: preferred, colored
Changes since revision 1.313.2.3: +2 -2
lines
Pull up revision 1.325 (requested by bouyer in ticket #644):
Add geodeide(4), a driver for the AMD Geode CS5530A IDE controller.
Tested by Ian Zagorskih (ianzag at megasignal.com).
Revision 1.325: download - view: text, markup, annotated - select for diffs
Fri Jul 9 18:38:39 2004 UTC (20 years, 5 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.324: preferred, colored
Changes since revision 1.324: +2 -2
lines
Add geodeide(4), a driver for the AMD Geode CS5530A IDE controller.
Tested by Ian Zagorskih (ianzag at megasignal.com).
Revision 1.313.2.3: download - view: text, markup, annotated - select for diffs
Sun Jun 27 13:22:42 2004 UTC (20 years, 5 months ago) by he
Branches: netbsd-2-0
Diff to: previous 1.313.2.2: preferred, colored; branchpoint 1.313: preferred, colored
Changes since revision 1.313.2.2: +2 -2
lines
Pull up revision 1.323 (via patch, requested by toshii in ticket #555):
Add re(4) manual page.
Revision 1.324: download - view: text, markup, annotated - select for diffs
Tue Jun 22 14:58:41 2004 UTC (20 years, 5 months ago) by itojun
Branches: MAIN
Diff to: previous 1.323: preferred, colored
Changes since revision 1.323: +4 -1
lines
add pf manpage for installation
Revision 1.323: download - view: text, markup, annotated - select for diffs
Mon May 31 13:46:29 2004 UTC (20 years, 6 months ago) by toshii
Branches: MAIN
Diff to: previous 1.322: preferred, colored
Changes since revision 1.322: +2 -2
lines
Add re(4) manpage, from FreeBSD.
Revision 1.322: download - view: text, markup, annotated - select for diffs
Tue May 25 00:18:13 2004 UTC (20 years, 6 months ago) by tsarna
Branches: MAIN
Diff to: previous 1.321: preferred, colored
Changes since revision 1.321: +2 -2
lines
basic uep(4) manpage.
kill -HUP `cat /var/run/wizd.pid`
Revision 1.321: download - view: text, markup, annotated - select for diffs
Mon May 10 12:48:19 2004 UTC (20 years, 7 months ago) by wiz
Branches: MAIN
Diff to: previous 1.320: preferred, colored
Changes since revision 1.320: +2 -2
lines
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.)
Revision 1.313.2.2: download - view: text, markup, annotated - select for diffs
Thu May 6 05:03:13 2004 UTC (20 years, 7 months ago) by jmc
Branches: netbsd-2-0
Diff to: previous 1.313.2.1: preferred, colored; branchpoint 1.313: preferred, colored
Changes since revision 1.313.2.1: +5 -4
lines
Pullup rev 1.317-1.318 (requested by jonathan in ticket #237)
Add manpages for crypto(4),and for the hifn(4) and ubsec(4) hardware crypto accelerators.
Revision 1.320: download - view: text, markup, annotated - select for diffs
Wed May 5 21:29:35 2004 UTC (20 years, 7 months ago) by dyoung
Branches: MAIN
Diff to: previous 1.319: preferred, colored
Changes since revision 1.319: +3 -3
lines
Build and install atppc(4), plip(4), ppbus(4), ppi(4) manual pages.
Revision 1.319: download - view: text, markup, annotated - select for diffs
Mon May 3 02:46:29 2004 UTC (20 years, 7 months ago) by kochi
Branches: MAIN
Diff to: previous 1.318: preferred, colored
Changes since revision 1.318: +2 -2
lines
Move spic.4 from man4 to man4.i386.
Revision 1.313.2.1: download - view: text, markup, annotated - select for diffs
Fri Apr 30 04:05:09 2004 UTC (20 years, 7 months ago) by jmc
Branches: netbsd-2-0
Diff to: previous 1.313: preferred, colored
Changes since revision 1.313: +2 -2
lines
Pullup rev 1.316 (requested by jonathan in ticket #236)
Add a lightly-modified copy of Sam Leffler's FreeBSD manpage for fast_ipsec,
along with an explicit caveat about the unsupported, unsafe state of
combining both IPv6 and fast_ipsec.
Revision 1.318: download - view: text, markup, annotated - select for diffs
Thu Apr 29 19:42:29 2004 UTC (20 years, 7 months ago) by jonathan
Branches: MAIN
Diff to: previous 1.317: preferred, colored
Changes since revision 1.317: +3 -3
lines
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.
Revision 1.317: download - view: text, markup, annotated - select for diffs
Tue Apr 27 21:34:10 2004 UTC (20 years, 7 months ago) by jonathan
Branches: MAIN
Diff to: previous 1.316: preferred, colored
Changes since revision 1.316: +3 -2
lines
Commit first draft of a manpage for crypto(4), the user-mode API
to opencrypto(9).
Revision 1.316: download - view: text, markup, annotated - select for diffs
Tue Apr 27 01:48:27 2004 UTC (20 years, 7 months ago) by jonathan
Branches: MAIN
Diff to: previous 1.315: preferred, colored
Changes since revision 1.315: +2 -2
lines
Add fast_ipsec.4 to Makefile. Thanks to Klaus Klein for the reminder.
Revision 1.315: download - view: text, markup, annotated - select for diffs
Sat Apr 3 02:39:27 2004 UTC (20 years, 8 months ago) by uwe
Branches: MAIN
Diff to: previous 1.314: preferred, colored
Changes since revision 1.314: +2 -2
lines
Add kloader(4).
Revision 1.314: download - view: text, markup, annotated - select for diffs
Wed Mar 31 07:52:43 2004 UTC (20 years, 8 months ago) by mrg
Branches: MAIN
Diff to: previous 1.313: preferred, colored
Changes since revision 1.313: +5 -5
lines
install man pages for be(4) qe(4) qec(4) xbox(4) ie(4) pnozz(4) tctrl(4)
xd(4) and xy(4)
Revision 1.313: download - view: text, markup, annotated - select for diffs
Sat Mar 27 01:47:38 2004 UTC (20 years, 8 months ago) by uwe
Branches: MAIN
CVS tags: netbsd-2-0-base
Branch point for: netbsd-2-0
Diff to: previous 1.312: preferred, colored
Changes since revision 1.312: +2 -2
lines
Add shb(4).
Revision 1.312: download - view: text, markup, annotated - select for diffs
Thu Mar 18 20:38:30 2004 UTC (20 years, 8 months ago) by ragge
Branches: MAIN
Diff to: previous 1.311: preferred, colored
Changes since revision 1.311: +2 -2
lines
Manpage for the dge card.
Revision 1.311: download - view: text, markup, annotated - select for diffs
Mon Mar 1 00:51:57 2004 UTC (20 years, 9 months ago) by perry
Branches: MAIN
Diff to: previous 1.310: preferred, colored
Changes since revision 1.310: +41 -38
lines
re-format the main list of man pages -- it was getting ugly.
Revision 1.310: download - view: text, markup, annotated - select for diffs
Mon Mar 1 00:20:35 2004 UTC (20 years, 9 months ago) by perry
Branches: MAIN
Diff to: previous 1.309: preferred, colored
Changes since revision 1.309: +2 -2
lines
add ath.4
Revision 1.309: download - view: text, markup, annotated - select for diffs
Sun Jan 11 19:05:26 2004 UTC (20 years, 11 months ago) by hannken
Branches: MAIN
Diff to: previous 1.308: preferred, colored
Changes since revision 1.308: +2 -1
lines
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.
Revision 1.308: download - view: text, markup, annotated - select for diffs
Wed Jan 7 15:52:54 2004 UTC (20 years, 11 months ago) by augustss
Branches: MAIN
Diff to: previous 1.307: preferred, colored
Changes since revision 1.307: +1 -4
lines
Remove accidental extra stuff.
Revision 1.307: download - view: text, markup, annotated - select for diffs
Wed Jan 7 14:34:09 2004 UTC (20 years, 11 months ago) by augustss
Branches: MAIN
Diff to: previous 1.306: preferred, colored
Changes since revision 1.306: +5 -1
lines
Make usbtask(4) be usb(4).
Revision 1.306: download - view: text, markup, annotated - select for diffs
Sun Dec 14 01:38:04 2003 UTC (21 years ago) by thorpej
Branches: MAIN
Diff to: previous 1.305: preferred, colored
Changes since revision 1.305: +2 -2
lines
Split the Artisea bits out of piixide(4) into artsata(4).
Revision 1.305: download - view: text, markup, annotated - select for diffs
Sun Dec 14 01:00:20 2003 UTC (21 years ago) by thorpej
Branches: MAIN
Diff to: previous 1.304: preferred, colored
Changes since revision 1.304: +2 -2
lines
Split the SATALink bits out of the cmdide(4) manpage into the satalink(4)
manpage.
Revision 1.304: download - view: text, markup, annotated - select for diffs
Wed Dec 10 11:40:11 2003 UTC (21 years ago) by hannken
Branches: MAIN
Diff to: previous 1.303: preferred, colored
Changes since revision 1.303: +2 -2
lines
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>
Revision 1.303: download - view: text, markup, annotated - select for diffs
Wed Nov 5 02:59:09 2003 UTC (21 years, 1 month ago) by uwe
Branches: MAIN
Diff to: previous 1.302: preferred, colored
Changes since revision 1.302: +5 -4
lines
Descend into man4.hpcsh.
Install adc(4) and j6x0tp(4) manual pages.
Revision 1.302: download - view: text, markup, annotated - select for diffs
Fri Oct 31 06:49:58 2003 UTC (21 years, 1 month ago) by nisimura
Branches: MAIN
Diff to: previous 1.301: preferred, colored
Changes since revision 1.301: +2 -2
lines
Added stpcide(4) driver for STMicroelectronics STPC IDE controllers.
Revision 1.301: download - view: text, markup, annotated - select for diffs
Thu Oct 30 08:21:19 2003 UTC (21 years, 1 month ago) by wiz
Branches: MAIN
Diff to: previous 1.300: preferred, colored
Changes since revision 1.300: +2 -2
lines
Descend into man4.sparc64 and install man pages there.
Revision 1.300: download - view: text, markup, annotated - select for diffs
Wed Oct 8 12:02:40 2003 UTC (21 years, 2 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.299: preferred, colored
Changes since revision 1.299: +11 -11
lines
Add man page for per-chip pciide drivers.
Revision 1.299: download - view: text, markup, annotated - select for diffs
Wed Oct 8 11:20:09 2003 UTC (21 years, 2 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.298: preferred, colored
Changes since revision 1.298: +3 -2
lines
Add a ata(4) man page, with a symlink to atabus(4), and xref where
appropriate.
Revision 1.259.2.4: download - view: text, markup, annotated - select for diffs
Sun Oct 5 12:35:37 2003 UTC (21 years, 2 months ago) by tron
Branches: netbsd-1-6
CVS tags: netbsd-1-6-PATCH002-RELEASE,
netbsd-1-6-PATCH002-RC4,
netbsd-1-6-PATCH002-RC3,
netbsd-1-6-PATCH002-RC2,
netbsd-1-6-PATCH002-RC1,
netbsd-1-6-PATCH002
Diff to: previous 1.259.2.3: preferred, colored; branchpoint 1.259: preferred, colored
Changes since revision 1.259.2.3: +2 -2
lines
Pull up revision 1.297 (requested by mbw in ticket #1485):
Combine mac68k and macppc mc.4 man page into an MI man page.
Revision 1.259.2.3: download - view: text, markup, annotated - select for diffs
Sun Oct 5 12:31:04 2003 UTC (21 years, 2 months ago) by tron
Branches: netbsd-1-6
Diff to: previous 1.259.2.2: preferred, colored; branchpoint 1.259: preferred, colored
Changes since revision 1.259.2.2: +3 -0
lines
Pull up revision 1.296 (requested by mbw in ticket #1485):
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).
Revision 1.259.2.2: download - view: text, markup, annotated - select for diffs
Sun Oct 5 11:54:43 2003 UTC (21 years, 2 months ago) by tron
Branches: netbsd-1-6
Diff to: previous 1.259.2.1: preferred, colored; branchpoint 1.259: preferred, colored
Changes since revision 1.259.2.1: +1 -1
lines
Pull up revision 1.298 (requested by mrg in ticket #1486):
Add man page for bce(4), and xref it from bge(4).
Revision 1.298: download - view: text, markup, annotated - select for diffs
Sun Sep 28 18:32:18 2003 UTC (21 years, 2 months ago) by wiz
Branches: MAIN
Diff to: previous 1.297: preferred, colored
Changes since revision 1.297: +2 -2
lines
Add man page for bce(4), and xref it from bge(4).
Revision 1.297: download - view: text, markup, annotated - select for diffs
Fri Sep 26 19:53:50 2003 UTC (21 years, 2 months ago) by mbw
Branches: MAIN
Diff to: previous 1.296: preferred, colored
Changes since revision 1.296: +2 -2
lines
Combine mac68k and macppc mc.4 man page into an MI man page.
Revision 1.296: download - view: text, markup, annotated - select for diffs
Fri Sep 26 19:15:15 2003 UTC (21 years, 2 months ago) by mbw
Branches: MAIN
Diff to: previous 1.295: preferred, colored
Changes since revision 1.295: +4 -1
lines
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).
Revision 1.295: download - view: text, markup, annotated - select for diffs
Thu Sep 25 16:48:04 2003 UTC (21 years, 2 months ago) by pooka
Branches: MAIN
Diff to: previous 1.294: preferred, colored
Changes since revision 1.294: +2 -2
lines
build iavc.4 and isdncapi.4
Revision 1.294: download - view: text, markup, annotated - select for diffs
Thu Sep 25 16:34:55 2003 UTC (21 years, 2 months ago) by pooka
Branches: MAIN
Diff to: previous 1.293: preferred, colored
Changes since revision 1.293: +3 -3
lines
move iwic.4 to the same place with its isdn friends
Revision 1.293: download - view: text, markup, annotated - select for diffs
Thu Sep 4 03:17:03 2003 UTC (21 years, 3 months ago) by dan
Branches: MAIN
Diff to: previous 1.292: preferred, colored
Changes since revision 1.292: +2 -2
lines
build atw.4
Revision 1.292: download - view: text, markup, annotated - select for diffs
Sat Aug 30 22:00:37 2003 UTC (21 years, 3 months ago) by jdolecek
Branches: MAIN
Diff to: previous 1.291: preferred, colored
Changes since revision 1.291: +3 -2
lines
add sk(4) manpage, adapted from OpenBSD by Stephen Degler
followup to PR kern/22511
Revision 1.291: download - view: text, markup, annotated - select for diffs
Fri Aug 22 06:42:01 2003 UTC (21 years, 3 months ago) by itojun
Branches: MAIN
Diff to: previous 1.290: preferred, colored
Changes since revision 1.290: +2 -2
lines
manpage for udav*
Revision 1.290: download - view: text, markup, annotated - select for diffs
Fri Aug 1 02:36:04 2003 UTC (21 years, 4 months ago) by tsutsui
Branches: MAIN
Diff to: previous 1.289: preferred, colored
Changes since revision 1.289: +2 -2
lines
Add spc(4) man page for Fujitsu MB87030/MB89352 SCSI Protocol Controller
(SPC) driver.
Revision 1.289: download - view: text, markup, annotated - select for diffs
Fri Jul 4 16:05:47 2003 UTC (21 years, 5 months ago) by drochner
Branches: MAIN
Diff to: previous 1.288: preferred, colored
Changes since revision 1.288: +2 -2
lines
add a manpage for the "txp" driver (3c990), from OpenBSD
Revision 1.288: download - view: text, markup, annotated - select for diffs
Mon Jun 2 04:00:25 2003 UTC (21 years, 6 months ago) by gmcgarry
Branches: MAIN
Diff to: previous 1.287: preferred, colored
Changes since revision 1.287: +6 -4
lines
GPIB manpages.
Revision 1.287: download - view: text, markup, annotated - select for diffs
Sun Jun 1 11:38:17 2003 UTC (21 years, 6 months ago) by uwe
Branches: MAIN
Diff to: previous 1.286: preferred, colored
Changes since revision 1.286: +2 -2
lines
Add igsfb(4).
Revision 1.286: download - view: text, markup, annotated - select for diffs
Wed May 14 12:18:07 2003 UTC (21 years, 7 months ago) by drochner
Branches: MAIN
Diff to: previous 1.285: preferred, colored
Changes since revision 1.285: +1 -2
lines
opms(4) is long gone
Revision 1.285: download - view: text, markup, annotated - select for diffs
Fri May 2 00:42:40 2003 UTC (21 years, 7 months ago) by fair
Branches: MAIN
Diff to: previous 1.284: preferred, colored
Changes since revision 1.284: +2 -1
lines
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.
Revision 1.284: download - view: text, markup, annotated - select for diffs
Thu May 1 08:36:50 2003 UTC (21 years, 7 months ago) by gmcgarry
Branches: MAIN
Diff to: previous 1.283: preferred, colored
Changes since revision 1.283: +2 -2
lines
Manpage for amr(4) from FreeBSD. Addresses PR#17110.
Revision 1.283: download - view: text, markup, annotated - select for diffs
Tue Apr 29 21:00:29 2003 UTC (21 years, 7 months ago) by gmcgarry
Branches: MAIN
Diff to: previous 1.282: preferred, colored
Changes since revision 1.282: +3 -2
lines
arc and cobalt directories
Revision 1.282: download - view: text, markup, annotated - select for diffs
Tue Apr 29 11:49:50 2003 UTC (21 years, 7 months ago) by augustss
Branches: MAIN
Diff to: previous 1.281: preferred, colored
Changes since revision 1.281: +8 -7
lines
Add more (skeleton) missing man pages.
Revision 1.281: download - view: text, markup, annotated - select for diffs
Tue Apr 29 11:35:54 2003 UTC (21 years, 7 months ago) by augustss
Branches: MAIN
Diff to: previous 1.280: preferred, colored
Changes since revision 1.280: +4 -4
lines
Add some man pages that were missing. The pages are empty, but has the
email address of the person who added the driver. ;-)
Revision 1.280: download - view: text, markup, annotated - select for diffs
Mon Apr 28 09:54:57 2003 UTC (21 years, 7 months ago) by augustss
Branches: MAIN
Diff to: previous 1.279: preferred, colored
Changes since revision 1.279: +2 -1
lines
Link opms to pms.
Revision 1.279: download - view: text, markup, annotated - select for diffs
Thu Apr 17 10:17:03 2003 UTC (21 years, 8 months ago) by wiz
Branches: MAIN
Diff to: previous 1.278: preferred, colored
Changes since revision 1.278: +3 -3
lines
Install oak(4), and descend into man4.acorn32 instead of man4.arm32.
Revision 1.278: download - view: text, markup, annotated - select for diffs
Wed Apr 16 22:32:15 2003 UTC (21 years, 8 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.277: preferred, colored
Changes since revision 1.277: +3 -3
lines
Manual page for the LSI Fusion-MPT SCSI/Fibre Channel driver.
Revision 1.277: download - view: text, markup, annotated - select for diffs
Sun Apr 6 10:22:21 2003 UTC (21 years, 8 months ago) by tsutsui
Branches: MAIN
Diff to: previous 1.276: preferred, colored
Changes since revision 1.276: +3 -2
lines
Build and install oosiop(4).
Revision 1.276: download - view: text, markup, annotated - select for diffs
Sun Feb 16 14:10:39 2003 UTC (21 years, 9 months ago) by augustss
Branches: MAIN
Diff to: previous 1.275: preferred, colored
Changes since revision 1.275: +2 -2
lines
Add uax(4) man page.
Revision 1.259.2.1: download - view: text, markup, annotated - select for diffs
Tue Feb 11 08:31:54 2003 UTC (21 years, 10 months ago) by jmc
Branches: netbsd-1-6
CVS tags: netbsd-1-6-PATCH001-RELEASE,
netbsd-1-6-PATCH001-RC3,
netbsd-1-6-PATCH001-RC2,
netbsd-1-6-PATCH001-RC1,
netbsd-1-6-PATCH001
Diff to: previous 1.259: preferred, colored
Changes since revision 1.259: +2 -2
lines
Pullup rev 1.275 (requested by tron in ticket #1159)
Add man page for Broadcom BCM570x family Gigabit Ethernet driver.
Revision 1.275: download - view: text, markup, annotated - select for diffs
Sun Feb 9 10:00:54 2003 UTC (21 years, 10 months ago) by tron
Branches: MAIN
Diff to: previous 1.274: preferred, colored
Changes since revision 1.274: +2 -2
lines
Add manual page for Broadcom BCM570x family Gigabit Ethernet driver.
Revision 1.274: download - view: text, markup, annotated - select for diffs
Sun Jan 5 21:10:57 2003 UTC (21 years, 11 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.273: preferred, colored
Changes since revision 1.273: +3 -2
lines
Add man pages for the ACPI Thermal Zone driver.
Revision 1.273: download - view: text, markup, annotated - select for diffs
Sun Nov 17 05:54:30 2002 UTC (22 years ago) by itohy
Branches: MAIN
CVS tags: fvdl_fs64_base
Diff to: previous 1.272: preferred, colored
Changes since revision 1.272: +5 -5
lines
Add man4.dreamcast
Revision 1.272: download - view: text, markup, annotated - select for diffs
Mon Nov 11 22:34:27 2002 UTC (22 years, 1 month ago) by wiz
Branches: MAIN
Diff to: previous 1.271: preferred, colored
Changes since revision 1.271: +2 -2
lines
Add mtd(4) man page by Martin Husemann and Peter Bex, with some
improvements by me.
Revision 1.271: download - view: text, markup, annotated - select for diffs
Wed Oct 30 15:45:10 2002 UTC (22 years, 1 month ago) by agc
Branches: MAIN
Diff to: previous 1.270: preferred, colored
Changes since revision 1.270: +3 -2
lines
Might as well install the veriexec(4) man page.
Revision 1.270: download - view: text, markup, annotated - select for diffs
Tue Oct 8 13:18:42 2002 UTC (22 years, 2 months ago) by augustss
Branches: MAIN
Diff to: previous 1.269: preferred, colored
Changes since revision 1.269: +2 -2
lines
Add ubsa(4).
Revision 1.269: download - view: text, markup, annotated - select for diffs
Fri Oct 4 19:01:31 2002 UTC (22 years, 2 months ago) by elric
Branches: MAIN
Diff to: previous 1.268: preferred, colored
Changes since revision 1.268: +2 -2
lines
Install documentation about cgd(4).
Revision 1.268: download - view: text, markup, annotated - select for diffs
Tue Sep 24 22:17:23 2002 UTC (22 years, 2 months ago) by pooka
Branches: MAIN
Diff to: previous 1.267: preferred, colored
Changes since revision 1.267: +2 -2
lines
add man page for iwic
from FreeBSD
Revision 1.267: download - view: text, markup, annotated - select for diffs
Sun Aug 11 15:35:09 2002 UTC (22 years, 4 months ago) by soren
Branches: MAIN
Diff to: previous 1.266: preferred, colored
Changes since revision 1.266: +2 -2
lines
Install slhci(4).
Revision 1.266: download - view: text, markup, annotated - select for diffs
Tue Aug 6 16:44:50 2002 UTC (22 years, 4 months ago) by drochner
Branches: MAIN
Diff to: previous 1.265: preferred, colored
Changes since revision 1.265: +3 -2
lines
add manpage for the PC87366 superI/O chip, temperature monitor part,
driver
Revision 1.265: download - view: text, markup, annotated - select for diffs
Sat Aug 3 00:40:03 2002 UTC (22 years, 4 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.264: preferred, colored
Changes since revision 1.264: +5 -5
lines
Descend into man4.evbarm.
Revision 1.264: download - view: text, markup, annotated - select for diffs
Fri Aug 2 00:43:12 2002 UTC (22 years, 4 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.263: preferred, colored
Changes since revision 1.263: +4 -4
lines
Manual page for pseudo-device access to hardware-assisted data movers.
Revision 1.263: download - view: text, markup, annotated - select for diffs
Tue Jul 9 23:30:23 2002 UTC (22 years, 5 months ago) by wiz
Branches: MAIN
Diff to: previous 1.262: preferred, colored
Changes since revision 1.262: +5 -4
lines
Add man page for gem(4). OK'd by eeh.
Revision 1.262: download - view: text, markup, annotated - select for diffs
Tue Jun 18 00:37:04 2002 UTC (22 years, 5 months ago) by enami
Branches: MAIN
Diff to: previous 1.261: preferred, colored
Changes since revision 1.261: +3 -2
lines
Add brief manpage for amdpm(4).
Revision 1.261: download - view: text, markup, annotated - select for diffs
Mon Jun 17 17:47:03 2002 UTC (22 years, 5 months ago) by christos
Branches: MAIN
Diff to: previous 1.260: preferred, colored
Changes since revision 1.260: +3 -3
lines
don't forget to install systrace.
Revision 1.260: download - view: text, markup, annotated - select for diffs
Fri May 31 12:20:32 2002 UTC (22 years, 6 months ago) by wiz
Branches: MAIN
Diff to: previous 1.259: preferred, colored
Changes since revision 1.259: +3 -2
lines
Descend into man4.pmppc.
Revision 1.259: download - view: text, markup, annotated - select for diffs
Sun May 19 20:39:18 2002 UTC (22 years, 6 months ago) by pooka
Branches: MAIN
CVS tags: netbsd-1-6-base,
netbsd-1-6-RELEASE,
netbsd-1-6-RC3,
netbsd-1-6-RC2,
netbsd-1-6-RC1
Branch point for: netbsd-1-6
Diff to: previous 1.258: preferred, colored
Changes since revision 1.258: +2 -2
lines
add man4.sgimips
Revision 1.258: download - view: text, markup, annotated - select for diffs
Fri Apr 26 02:05:07 2002 UTC (22 years, 7 months ago) by ad
Branches: MAIN
Diff to: previous 1.257: preferred, colored
Changes since revision 1.257: +2 -2
lines
Add a driver for Adaptec FSA RAID controllers, as often found in Dell
servers. Based on the FreeBSD/OpenBSD versions.
Revision 1.257: download - view: text, markup, annotated - select for diffs
Tue Apr 23 19:38:57 2002 UTC (22 years, 7 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.256: preferred, colored
Changes since revision 1.256: +2 -2
lines
Add a man page for esiop. While I'm there remove references to ncr(4).
Revision 1.256: download - view: text, markup, annotated - select for diffs
Tue Apr 23 12:01:16 2002 UTC (22 years, 7 months ago) by augustss
Branches: MAIN
Diff to: previous 1.255: preferred, colored
Changes since revision 1.255: +4 -1
lines
Add skeleton man pages for acpi drivers.
Revision 1.255: download - view: text, markup, annotated - select for diffs
Mon Apr 22 21:05:19 2002 UTC (22 years, 7 months ago) by ad
Branches: MAIN
Diff to: previous 1.254: preferred, colored
Changes since revision 1.254: +3 -2
lines
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.
Revision 1.254: download - view: text, markup, annotated - select for diffs
Tue Apr 2 20:45:40 2002 UTC (22 years, 8 months ago) by augustss
Branches: MAIN
Diff to: previous 1.253: preferred, colored
Changes since revision 1.253: +2 -1
lines
Xref urlphy.
Revision 1.253: download - view: text, markup, annotated - select for diffs
Thu Mar 28 21:38:10 2002 UTC (22 years, 8 months ago) by ichiro
Branches: MAIN
Diff to: previous 1.252: preferred, colored
Changes since revision 1.252: +2 -2
lines
add url(4)
Revision 1.252: download - view: text, markup, annotated - select for diffs
Thu Mar 28 05:07:58 2002 UTC (22 years, 8 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.251: preferred, colored
Changes since revision 1.251: +2 -2
lines
Manual page for the Intel i8254x Gigabit Ethernet driver.
Revision 1.251: download - view: text, markup, annotated - select for diffs
Mon Mar 25 19:15:35 2002 UTC (22 years, 8 months ago) by martin
Branches: MAIN
Diff to: previous 1.250: preferred, colored
Changes since revision 1.250: +2 -2
lines
Add man page for the Fritz!PCI ISDN card driver
Revision 1.250: download - view: text, markup, annotated - select for diffs
Sun Mar 24 22:29:54 2002 UTC (22 years, 8 months ago) by bjh21
Branches: MAIN
Diff to: previous 1.249: preferred, colored
Changes since revision 1.249: +2 -2
lines
Move manual pages, man[48].arm26 -> man[48].acorn26.
Revision 1.249: download - view: text, markup, annotated - select for diffs
Tue Mar 19 15:17:48 2002 UTC (22 years, 8 months ago) by augustss
Branches: MAIN
Diff to: previous 1.248: preferred, colored
Changes since revision 1.248: +2 -2
lines
Add uvscom(4).
Revision 1.248: download - view: text, markup, annotated - select for diffs
Sat Mar 16 17:57:34 2002 UTC (22 years, 9 months ago) by martin
Branches: MAIN
Diff to: previous 1.247: preferred, colored
Changes since revision 1.247: +2 -2
lines
Move man pages of renamed devices and adapt them to their new name.
Revision 1.247: download - view: text, markup, annotated - select for diffs
Thu Mar 14 12:19:55 2002 UTC (22 years, 9 months ago) by uwe
Branches: MAIN
Diff to: previous 1.246: preferred, colored
Changes since revision 1.246: +4 -4
lines
Add audiocs(4) and ebus(4).
Revision 1.246: download - view: text, markup, annotated - select for diffs
Mon Mar 4 13:24:07 2002 UTC (22 years, 9 months ago) by sommerfeld
Branches: MAIN
Diff to: previous 1.245: preferred, colored
Changes since revision 1.245: +2 -2
lines
The "gif*" tunnelling interface does everything ipip does.
Move usage example from ipip.4 to gif.4
Excise ipip and stitch up the scars.
Revision 1.160.2.16: download - view: text, markup, annotated - select for diffs
Tue Feb 26 20:30:36 2002 UTC (22 years, 9 months ago) by he
Branches: netbsd-1-5
CVS tags: netbsd-1-5-PATCH003
Diff to: previous 1.160.2.15: preferred, colored; branchpoint 1.160: preferred, colored; next MAIN 1.161: preferred, colored
Changes since revision 1.160.2.15: +2 -2
lines
Apply patch (requested by he):
Add manual page for the sip(4) Ethernet driver.
Revision 1.245: download - view: text, markup, annotated - select for diffs
Wed Feb 6 21:06:34 2002 UTC (22 years, 10 months ago) by jdolecek
Branches: MAIN
Diff to: previous 1.244: preferred, colored
Changes since revision 1.244: +3 -2
lines
Move the joy(4) manpage to MI location, too - it's not i386-only.
Pointed out by Thomas Klausner, thanks :)
Revision 1.160.2.15: download - view: text, markup, annotated - select for diffs
Thu Jan 24 22:38:50 2002 UTC (22 years, 10 months ago) by he
Branches: netbsd-1-5
Diff to: previous 1.160.2.14: preferred, colored; branchpoint 1.160: preferred, colored
Changes since revision 1.160.2.14: +2 -2
lines
Apply patch (requested by he):
Add driver for the ESS Allegro-1 / Maestro-3 audio hardware.
Revision 1.160.2.14: download - view: text, markup, annotated - select for diffs
Sat Jan 19 22:01:37 2002 UTC (22 years, 10 months ago) by he
Branches: netbsd-1-5
Diff to: previous 1.160.2.13: preferred, colored; branchpoint 1.160: preferred, colored
Changes since revision 1.160.2.13: +2 -2
lines
Pull up revision 1.229 (via patch, requested by he):
Add driver for Creative Labs SBLive! EMU10000 and (probably) PCI512.
Fixes PR#15260.
Revision 1.244: download - view: text, markup, annotated - select for diffs
Sun Jan 6 16:08:17 2002 UTC (22 years, 11 months ago) by jmcneill
Branches: MAIN
Diff to: previous 1.243: preferred, colored
Changes since revision 1.243: +3 -3
lines
Add manual page for esa(4)
Revision 1.243: download - view: text, markup, annotated - select for diffs
Thu Jan 3 18:29:33 2002 UTC (22 years, 11 months ago) by augustss
Branches: MAIN
Diff to: previous 1.242: preferred, colored
Changes since revision 1.242: +2 -2
lines
Add ustir(4) man page.
Revision 1.242: download - view: text, markup, annotated - select for diffs
Wed Jan 2 03:15:03 2002 UTC (22 years, 11 months ago) by augustss
Branches: MAIN
Diff to: previous 1.241: preferred, colored
Changes since revision 1.241: +3 -2
lines
Add udsbr(4).
Revision 1.241: download - view: text, markup, annotated - select for diffs
Tue Jan 1 22:09:42 2002 UTC (22 years, 11 months ago) by augustss
Branches: MAIN
Diff to: previous 1.240: preferred, colored
Changes since revision 1.240: +4 -1
lines
Add radio(4) man pages.
Revision 1.240: download - view: text, markup, annotated - select for diffs
Fri Dec 28 17:38:00 2001 UTC (22 years, 11 months ago) by augustss
Branches: MAIN
Diff to: previous 1.239: preferred, colored
Changes since revision 1.239: +2 -2
lines
Update for uhidev(4).
Revision 1.239: download - view: text, markup, annotated - select for diffs
Wed Dec 12 15:29:23 2001 UTC (23 years ago) by augustss
Branches: MAIN
Diff to: previous 1.238: preferred, colored
Changes since revision 1.238: +2 -2
lines
Add uirda(4).
Revision 1.238: download - view: text, markup, annotated - select for diffs
Mon Dec 10 20:49:29 2001 UTC (23 years ago) by martin
Branches: MAIN
Diff to: previous 1.237: preferred, colored
Changes since revision 1.237: +2 -2
lines
Add documentation for the in-kernel pppoe implementation.
Revision 1.160.2.13: download - view: text, markup, annotated - select for diffs
Sun Dec 9 19:13:58 2001 UTC (23 years ago) by he
Branches: netbsd-1-5
Diff to: previous 1.160.2.12: preferred, colored; branchpoint 1.160: preferred, colored
Changes since revision 1.160.2.12: +2 -2
lines
Apply patch (requested by ad):
Add driver for DPT/Adaptec I2O RAID management interface.
Revision 1.237: download - view: text, markup, annotated - select for diffs
Mon Dec 3 23:23:47 2001 UTC (23 years ago) by augustss
Branches: MAIN
Diff to: previous 1.236: preferred, colored
Changes since revision 1.236: +2 -2
lines
Add a man page for the IrDA line discipline driver.
Revision 1.236: download - view: text, markup, annotated - select for diffs
Sun Dec 2 19:52:37 2001 UTC (23 years ago) by augustss
Branches: MAIN
Diff to: previous 1.235: preferred, colored
Changes since revision 1.235: +2 -1
lines
Make a link from irda to irframe.
Revision 1.235: download - view: text, markup, annotated - select for diffs
Sun Dec 2 19:46:04 2001 UTC (23 years ago) by augustss
Branches: MAIN
Diff to: previous 1.234: preferred, colored
Changes since revision 1.234: +3 -3
lines
Add cir(4) and oboe(4) man pages.
Revision 1.234: download - view: text, markup, annotated - select for diffs
Sun Dec 2 16:42:37 2001 UTC (23 years ago) by augustss
Branches: MAIN
Diff to: previous 1.233: preferred, colored
Changes since revision 1.233: +5 -1
lines
Add irframe(4) man page.
Revision 1.160.2.12: download - view: text, markup, annotated - select for diffs
Sat Nov 24 21:14:04 2001 UTC (23 years ago) by he
Branches: netbsd-1-5
Diff to: previous 1.160.2.11: preferred, colored; branchpoint 1.160: preferred, colored
Changes since revision 1.160.2.11: +2 -2
lines
Apply patch (requested by he):
Install ld(4) manual page.
Revision 1.233: download - view: text, markup, annotated - select for diffs
Sun Nov 18 16:46:49 2001 UTC (23 years ago) by augustss
Branches: MAIN
Diff to: previous 1.232: preferred, colored
Changes since revision 1.232: +3 -3
lines
Add autri(4) man page.
Revision 1.232: download - view: text, markup, annotated - select for diffs
Fri Nov 16 17:08:12 2001 UTC (23 years, 1 month ago) by augustss
Branches: MAIN
Diff to: previous 1.231: preferred, colored
Changes since revision 1.231: +2 -2
lines
Add a man page for ehci(4) despite the driver not being finished yet.
Revision 1.231: download - view: text, markup, annotated - select for diffs
Wed Nov 7 16:37:13 2001 UTC (23 years, 1 month ago) by tsutsui
Branches: MAIN
Diff to: previous 1.230: preferred, colored
Changes since revision 1.230: +2 -2
lines
Add trm(4) man page.
Revision 1.160.2.11: download - view: text, markup, annotated - select for diffs
Thu Oct 25 18:05:25 2001 UTC (23 years, 1 month ago) by he
Branches: netbsd-1-5
Diff to: previous 1.160.2.10: preferred, colored; branchpoint 1.160: preferred, colored
Changes since revision 1.160.2.10: +5 -5
lines
Apply patch (requested by ad):
Add Mylex DACC960, CAC-EISA, and I2O block/SCSI drivers.
Revision 1.230: download - view: text, markup, annotated - select for diffs
Sat Oct 20 09:45:31 2001 UTC (23 years, 1 month ago) by manu
Branches: MAIN
Diff to: previous 1.229: preferred, colored
Changes since revision 1.229: +2 -2
lines
Added clockctl.4
Revision 1.229: download - view: text, markup, annotated - select for diffs
Thu Oct 18 18:40:15 2001 UTC (23 years, 1 month ago) by jdolecek
Branches: MAIN
Diff to: previous 1.228: preferred, colored
Changes since revision 1.228: +3 -2
lines
Add emuxki manpage
Revision 1.228: download - view: text, markup, annotated - select for diffs
Sat Sep 29 18:50:42 2001 UTC (23 years, 2 months ago) by augustss
Branches: MAIN
Diff to: previous 1.227: preferred, colored
Changes since revision 1.227: +3 -3
lines
Add the esl driver.
Revision 1.227: download - view: text, markup, annotated - select for diffs
Sat Sep 22 16:29:34 2001 UTC (23 years, 2 months ago) by ad
Branches: MAIN
Diff to: previous 1.226: preferred, colored
Changes since revision 1.226: +5 -5
lines
Add manual page for dpti.
Revision 1.226: download - view: text, markup, annotated - select for diffs
Fri Sep 21 17:34:58 2001 UTC (23 years, 2 months ago) by ad
Branches: MAIN
Diff to: previous 1.225: preferred, colored
Changes since revision 1.225: +2 -2
lines
Tweak tc fb manual pages.
Revision 1.225: download - view: text, markup, annotated - select for diffs
Fri Sep 21 09:11:40 2001 UTC (23 years, 2 months ago) by gmcgarry
Branches: MAIN
Diff to: previous 1.224: preferred, colored
Changes since revision 1.224: +17 -9
lines
Add missing pages for NetBSD/alpha and co-ordinate pages between
NetBSD/alpha and NetBSD/pmax. Some other minor fixes.
Revision 1.224: download - view: text, markup, annotated - select for diffs
Mon Sep 10 21:12:30 2001 UTC (23 years, 3 months ago) by gmcgarry
Branches: MAIN
Diff to: previous 1.223: preferred, colored
Changes since revision 1.223: +3 -2
lines
Add agp(4) man page.
Revision 1.223: download - view: text, markup, annotated - select for diffs
Mon Aug 27 19:51:29 2001 UTC (23 years, 3 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.222: preferred, colored
Changes since revision 1.222: +2 -2
lines
Manual page for the new pcn driver.
Revision 1.222: download - view: text, markup, annotated - select for diffs
Sat Aug 25 04:11:48 2001 UTC (23 years, 3 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.221: preferred, colored
Changes since revision 1.221: +2 -2
lines
Typo in a revious reg.
Revision 1.221: download - view: text, markup, annotated - select for diffs
Sat Aug 25 04:11:06 2001 UTC (23 years, 3 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.220: preferred, colored
Changes since revision 1.220: +10 -10
lines
Manual page for the amhphy driver.
Revision 1.220: download - view: text, markup, annotated - select for diffs
Sat Aug 25 03:29:58 2001 UTC (23 years, 3 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.219: preferred, colored
Changes since revision 1.219: +2 -2
lines
Manual page for the pnaphy HomePNA PHY driver.
Revision 1.219: download - view: text, markup, annotated - select for diffs
Fri Aug 24 17:55:06 2001 UTC (23 years, 3 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.218: preferred, colored
Changes since revision 1.218: +11 -11
lines
Add manual page for the Altima AC101 PHY driver.
Revision 1.218: download - view: text, markup, annotated - select for diffs
Fri Aug 17 22:20:34 2001 UTC (23 years, 3 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.217: preferred, colored
Changes since revision 1.217: +10 -9
lines
Manual page for the bridge driver.
Revision 1.217: download - view: text, markup, annotated - select for diffs
Fri Aug 17 07:16:18 2001 UTC (23 years, 4 months ago) by wiz
Branches: MAIN
Diff to: previous 1.216: preferred, colored
Changes since revision 1.216: +2 -2
lines
Descend into man4.sun2
Revision 1.216: download - view: text, markup, annotated - select for diffs
Mon Jul 30 19:59:07 2001 UTC (23 years, 4 months ago) by ad
Branches: MAIN
Diff to: previous 1.215: preferred, colored
Changes since revision 1.215: +2 -2
lines
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.
Revision 1.215: download - view: text, markup, annotated - select for diffs
Wed Jul 25 22:33:30 2001 UTC (23 years, 4 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.214: preferred, colored
Changes since revision 1.214: +3 -3
lines
Manual page for the makphy driver.
Revision 1.214: download - view: text, markup, annotated - select for diffs
Wed Jul 25 22:29:52 2001 UTC (23 years, 4 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.213: preferred, colored
Changes since revision 1.213: +2 -2
lines
Add a manual page for the dmphy driver.
Revision 1.213: download - view: text, markup, annotated - select for diffs
Wed Jul 25 22:27:35 2001 UTC (23 years, 4 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.212: preferred, colored
Changes since revision 1.212: +2 -2
lines
Add a manual page for the bmtphy driver.
Revision 1.212: download - view: text, markup, annotated - select for diffs
Wed Jul 25 22:11:28 2001 UTC (23 years, 4 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.211: preferred, colored
Changes since revision 1.211: +5 -5
lines
Add a manual page for the glxtphy driver.
Revision 1.211: download - view: text, markup, annotated - select for diffs
Wed Jul 25 22:07:12 2001 UTC (23 years, 4 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.210: preferred, colored
Changes since revision 1.210: +5 -5
lines
Add a manual page for the gentbi driver.
Revision 1.210: download - view: text, markup, annotated - select for diffs
Wed Jul 25 00:17:19 2001 UTC (23 years, 4 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.209: preferred, colored
Changes since revision 1.209: +2 -2
lines
Manual page for the Sundance/Tamarack TC9021 Gigabit Ethernet driver.
Revision 1.209: download - view: text, markup, annotated - select for diffs
Mon Jul 9 15:15:04 2001 UTC (23 years, 5 months ago) by wiz
Branches: MAIN
Diff to: previous 1.208: preferred, colored
Changes since revision 1.208: +2 -2
lines
Since ncr(4) isn't in-tree anymore, dump its man page too.
Revision 1.208: download - view: text, markup, annotated - select for diffs
Sun Jul 1 02:56:21 2001 UTC (23 years, 5 months ago) by gmcgarry
Branches: MAIN
Diff to: previous 1.207: preferred, colored
Changes since revision 1.207: +3 -3
lines
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>.
Revision 1.207: download - view: text, markup, annotated - select for diffs
Thu Jun 28 21:12:01 2001 UTC (23 years, 5 months ago) by fredette
Branches: MAIN
Diff to: previous 1.206: preferred, colored
Changes since revision 1.206: +2 -2
lines
Document the `sc' SCSI driver.
Revision 1.206: download - view: text, markup, annotated - select for diffs
Tue Jun 19 23:58:16 2001 UTC (23 years, 5 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.205: preferred, colored
Changes since revision 1.205: +3 -3
lines
Manual page for the ste(4) driver.
Revision 1.205: download - view: text, markup, annotated - select for diffs
Mon Jun 18 22:24:04 2001 UTC (23 years, 5 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.204: preferred, colored
Changes since revision 1.204: +3 -3
lines
Add sf(4) manual page.
Revision 1.204: download - view: text, markup, annotated - select for diffs
Wed Jun 13 21:03:08 2001 UTC (23 years, 6 months ago) by bjh21
Branches: MAIN
Diff to: previous 1.203: preferred, colored
Changes since revision 1.203: +2 -2
lines
Add hcide(4).
Revision 1.203: download - view: text, markup, annotated - select for diffs
Sat Jun 9 13:56:33 2001 UTC (23 years, 6 months ago) by bjh21
Branches: MAIN
Diff to: previous 1.202: preferred, colored
Changes since revision 1.202: +2 -2
lines
Like the driver, dtide(4) is now MI.
Revision 1.202: download - view: text, markup, annotated - select for diffs
Mon Jun 4 12:58:35 2001 UTC (23 years, 6 months ago) by tsutsui
Branches: MAIN
Diff to: previous 1.201: preferred, colored
Changes since revision 1.201: +2 -2
lines
Add man page for iha(4). From OpenBSD.
Revision 1.201: download - view: text, markup, annotated - select for diffs
Fri Jun 1 16:57:17 2001 UTC (23 years, 6 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.200: preferred, colored
Changes since revision 1.200: +2 -2
lines
Manual page for the brgphy driver.
Revision 1.200: download - view: text, markup, annotated - select for diffs
Thu May 31 20:48:56 2001 UTC (23 years, 6 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.199: preferred, colored
Changes since revision 1.199: +8 -8
lines
Add nsphyter(4) and gphyter(4) manual pages.
Revision 1.199: download - view: text, markup, annotated - select for diffs
Sun May 27 20:26:21 2001 UTC (23 years, 6 months ago) by pk
Branches: MAIN
Diff to: previous 1.198: preferred, colored
Changes since revision 1.198: +3 -3
lines
Add an sbus(4) page.
Revision 1.198: download - view: text, markup, annotated - select for diffs
Fri May 18 02:05:20 2001 UTC (23 years, 7 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.197: preferred, colored
Changes since revision 1.197: +4 -4
lines
Add manual pages for the sip(4) and gsip(4) Ethernet drivers.
Revision 1.197: download - view: text, markup, annotated - select for diffs
Sat May 12 14:06:30 2001 UTC (23 years, 7 months ago) by tsutsui
Branches: MAIN
Diff to: previous 1.196: preferred, colored
Changes since revision 1.196: +2 -2
lines
Add a manual page for osiop(4).
Revision 1.160.2.10: download - view: text, markup, annotated - select for diffs
Wed May 9 22:32:33 2001 UTC (23 years, 7 months ago) by he
Branches: netbsd-1-5
CVS tags: netbsd-1-5-PATCH002,
netbsd-1-5-PATCH001
Diff to: previous 1.160.2.9: preferred, colored; branchpoint 1.160: preferred, colored
Changes since revision 1.160.2.9: +2 -2
lines
Pull up revision 1.190 (requested by he):
Add a few manual pages specific to NetBSD/macppc.
Here: add man4.macppc to SUBDIR.
Revision 1.160.2.9: download - view: text, markup, annotated - select for diffs
Sun May 6 15:15:32 2001 UTC (23 years, 7 months ago) by he
Branches: netbsd-1-5
Diff to: previous 1.160.2.8: preferred, colored; branchpoint 1.160: preferred, colored
Changes since revision 1.160.2.8: +2 -2
lines
Pull up revision 1.179 (via patch, requested by he):
Add driver for Cirrus Logic CrystalClear PCI Audio CS4281.
Revision 1.160.2.8: download - view: text, markup, annotated - select for diffs
Sun May 6 14:42:02 2001 UTC (23 years, 7 months ago) by he
Branches: netbsd-1-5
Diff to: previous 1.160.2.7: preferred, colored; branchpoint 1.160: preferred, colored
Changes since revision 1.160.2.7: +2 -2
lines
Apply patch (requested by he):
Add a driver for the NeoMagic 256 AC'97 chip.
Revision 1.160.2.7: download - view: text, markup, annotated - select for diffs
Thu May 3 21:02:52 2001 UTC (23 years, 7 months ago) by he
Branches: netbsd-1-5
Diff to: previous 1.160.2.6: preferred, colored; branchpoint 1.160: preferred, colored
Changes since revision 1.160.2.6: +2 -2
lines
Pull up revision 1.177 (via patch, requested by skrll):
Add a driver for the ESS Technology Maestro-1/2/2E AC97 audio chips,
ES1968 and ES1978.
Revision 1.160.2.6: download - view: text, markup, annotated - select for diffs
Tue May 1 11:48:35 2001 UTC (23 years, 7 months ago) by he
Branches: netbsd-1-5
Diff to: previous 1.160.2.5: preferred, colored; branchpoint 1.160: preferred, colored
Changes since revision 1.160.2.5: +2 -2
lines
Pull up revision 1.188 (requested by minoura):
Add Yamaha YMF724/740/744/745-based sound driver and
its subordinates.
Revision 1.196: download - view: text, markup, annotated - select for diffs
Sat Apr 21 16:54:05 2001 UTC (23 years, 7 months ago) by jdolecek
Branches: MAIN
Diff to: previous 1.195: preferred, colored
Changes since revision 1.195: +4 -1
lines
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.
Revision 1.195: download - view: text, markup, annotated - select for diffs
Fri Apr 20 09:35:56 2001 UTC (23 years, 7 months ago) by jdolecek
Branches: MAIN
Diff to: previous 1.194: preferred, colored
Changes since revision 1.194: +2 -2
lines
Merge arm32-specific bits of com(4) manpage to i386 com(4) manpage
and form a MI com(4) manpage.
Revision 1.194: download - view: text, markup, annotated - select for diffs
Thu Apr 19 17:17:29 2001 UTC (23 years, 7 months ago) by jdolecek
Branches: MAIN
Diff to: previous 1.193: preferred, colored
Changes since revision 1.193: +3 -3
lines
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.
Revision 1.193: download - view: text, markup, annotated - select for diffs
Thu Apr 19 08:16:06 2001 UTC (23 years, 7 months ago) by jdolecek
Branches: MAIN
Diff to: previous 1.192: preferred, colored
Changes since revision 1.192: +2 -2
lines
Add very simplistic dasd(4) manpage. Link ed(4) to dasd(4) for i386 (is there
a better way?)
Revision 1.192: download - view: text, markup, annotated - select for diffs
Tue Apr 10 21:11:11 2001 UTC (23 years, 8 months ago) by bjh21
Branches: MAIN
Diff to: previous 1.191: preferred, colored
Changes since revision 1.191: +4 -1
lines
Create MI manpages for ea(4) and eb(4) and remove the arm{26,32}-specific ones.
Revision 1.191: download - view: text, markup, annotated - select for diffs
Mon Apr 9 19:16:03 2001 UTC (23 years, 8 months ago) by wiz
Branches: MAIN
Diff to: previous 1.190: preferred, colored
Changes since revision 1.190: +2 -2
lines
Rename i4bisp.4 to i4bisppp.4.
Revision 1.190: download - view: text, markup, annotated - select for diffs
Fri Apr 6 10:47:19 2001 UTC (23 years, 8 months ago) by wiz
Branches: MAIN
Diff to: previous 1.189: preferred, colored
Changes since revision 1.189: +2 -2
lines
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.
Revision 1.160.2.5: download - view: text, markup, annotated - select for diffs
Wed Apr 4 16:37:04 2001 UTC (23 years, 8 months ago) by he
Branches: netbsd-1-5
Diff to: previous 1.160.2.4: preferred, colored; branchpoint 1.160: preferred, colored
Changes since revision 1.160.2.4: +2 -2
lines
Pull up revision 1.189 (via patch, requested by wiz):
Build se(4) manpage.
Revision 1.189: download - view: text, markup, annotated - select for diffs
Tue Apr 3 11:28:03 2001 UTC (23 years, 8 months ago) by jdolecek
Branches: MAIN
Diff to: previous 1.188: preferred, colored
Changes since revision 1.188: +2 -2
lines
build se(4) manpage and add it do distrib lists
Revision 1.188: download - view: text, markup, annotated - select for diffs
Fri Mar 30 14:34:27 2001 UTC (23 years, 8 months ago) by minoura
Branches: MAIN
Diff to: previous 1.187: preferred, colored
Changes since revision 1.187: +2 -2
lines
Manual page for Yamaha YMF724/740/744/754 PCI audio driver.
Revision 1.187: download - view: text, markup, annotated - select for diffs
Fri Mar 30 13:55:38 2001 UTC (23 years, 8 months ago) by kleink
Branches: MAIN
Diff to: previous 1.186: preferred, colored
Changes since revision 1.186: +2 -2
lines
Add a strawman hme(4) manual page; with input from Matthew Green.
Revision 1.186: download - view: text, markup, annotated - select for diffs
Wed Mar 28 18:56:42 2001 UTC (23 years, 8 months ago) by ichiro
Branches: MAIN
Diff to: previous 1.185: preferred, colored
Changes since revision 1.185: +2 -2
lines
add man file of umct driver
Revision 1.185: download - view: text, markup, annotated - select for diffs
Wed Mar 21 20:10:41 2001 UTC (23 years, 8 months ago) by mjacob
Branches: MAIN
Diff to: previous 1.184: preferred, colored
Changes since revision 1.184: +2 -2
lines
Corrects PR misc/11479- add an ses(4) man page.
Revision 1.184: download - view: text, markup, annotated - select for diffs
Fri Mar 16 23:08:11 2001 UTC (23 years, 9 months ago) by jdolecek
Branches: MAIN
Diff to: previous 1.183: preferred, colored
Changes since revision 1.183: +2 -2
lines
add elmc(4) manpage, and xref it from ai(4), ef(4), ix(4)
Revision 1.160.2.4: download - view: text, markup, annotated - select for diffs
Mon Feb 26 21:13:31 2001 UTC (23 years, 9 months ago) by he
Branches: netbsd-1-5
Diff to: previous 1.160.2.3: preferred, colored; branchpoint 1.160: preferred, colored
Changes since revision 1.160.2.3: +2 -2
lines
Apply patch (requested by he):
Add manual page for Aironet/Cisco wireless cards.
Revision 1.183: download - view: text, markup, annotated - select for diffs
Sun Feb 4 17:05:15 2001 UTC (23 years, 10 months ago) by ad
Branches: MAIN
Diff to: previous 1.182: preferred, colored
Changes since revision 1.182: +3 -3
lines
Add a driver for the Mylex DAC960 family (including DEC SWXCR).
Revision 1.182: download - view: text, markup, annotated - select for diffs
Wed Jan 31 04:32:18 2001 UTC (23 years, 10 months ago) by augustss
Branches: MAIN
Diff to: previous 1.181: preferred, colored
Changes since revision 1.181: +3 -3
lines
Add umidi(4).
Revision 1.181: download - view: text, markup, annotated - select for diffs
Sun Jan 28 01:39:40 2001 UTC (23 years, 10 months ago) by nathanw
Branches: MAIN
Diff to: previous 1.180: preferred, colored
Changes since revision 1.180: +3 -2
lines
Edit pcppi(4) for clarity.
Make spkr(4) link to the speaker man page, not the pcppi man page.
Revision 1.180: download - view: text, markup, annotated - select for diffs
Tue Jan 23 02:14:01 2001 UTC (23 years, 10 months ago) by augustss
Branches: MAIN
Diff to: previous 1.179: preferred, colored
Changes since revision 1.179: +2 -2
lines
Add and xfer uplcom(4).
Revision 1.179: download - view: text, markup, annotated - select for diffs
Mon Jan 22 01:28:53 2001 UTC (23 years, 10 months ago) by augustss
Branches: MAIN
Diff to: previous 1.178: preferred, colored
Changes since revision 1.178: +2 -2
lines
Add clct(4) man page.
Revision 1.178: download - view: text, markup, annotated - select for diffs
Thu Jan 11 06:10:01 2001 UTC (23 years, 11 months ago) by augustss
Branches: MAIN
Diff to: previous 1.177: preferred, colored
Changes since revision 1.177: +4 -3
lines
Add usscanner(4).
Revision 1.177: download - view: text, markup, annotated - select for diffs
Mon Jan 8 20:03:34 2001 UTC (23 years, 11 months ago) by rh
Branches: MAIN
Diff to: previous 1.176: preferred, colored
Changes since revision 1.176: +2 -2
lines
Add manpage for 'esm' PCI audio driver
Revision 1.176: download - view: text, markup, annotated - select for diffs
Fri Jan 5 15:46:12 2001 UTC (23 years, 11 months ago) by martin
Branches: MAIN
Diff to: previous 1.175: preferred, colored
Changes since revision 1.175: +4 -1
lines
Enable new imported ISDN4BSD man pages.
Revision 1.175: download - view: text, markup, annotated - select for diffs
Tue Jan 2 22:32:28 2001 UTC (23 years, 11 months ago) by augustss
Branches: MAIN
Diff to: previous 1.174: preferred, colored
Changes since revision 1.174: +2 -2
lines
Add uyap(4) man page.
Revision 1.160.2.3: download - view: text, markup, annotated - select for diffs
Sun Dec 31 20:14:11 2000 UTC (23 years, 11 months ago) by jhawk
Branches: netbsd-1-5
Diff to: previous 1.160.2.2: preferred, colored; branchpoint 1.160: preferred, colored
Changes since revision 1.160.2.2: +2 -2
lines
Pull up revision 1.166 (requested by bouyer):
Add support for 802.1Q virtual LANs.
Revision 1.174: download - view: text, markup, annotated - select for diffs
Thu Dec 14 03:03:58 2000 UTC (24 years ago) by onoe
Branches: MAIN
Diff to: previous 1.173: preferred, colored
Changes since revision 1.173: +2 -2
lines
add an.4
Revision 1.173: download - view: text, markup, annotated - select for diffs
Tue Nov 28 05:15:12 2000 UTC (24 years ago) by thorpej
Branches: MAIN
Diff to: previous 1.172: preferred, colored
Changes since revision 1.172: +2 -2
lines
Manual page for the auich(4) driver.
Revision 1.172: download - view: text, markup, annotated - select for diffs
Sun Nov 26 17:44:11 2000 UTC (24 years ago) by ad
Branches: MAIN
Diff to: previous 1.171: preferred, colored
Changes since revision 1.171: +2 -2
lines
lsu -> ld, by popular request.
Revision 1.171: download - view: text, markup, annotated - select for diffs
Wed Nov 8 19:54:12 2000 UTC (24 years, 1 month ago) by ad
Branches: MAIN
Diff to: previous 1.170: preferred, colored
Changes since revision 1.170: +2 -2
lines
Add documentation for iop and iopsp drivers. XXX Needs more beef.
Revision 1.170: download - view: text, markup, annotated - select for diffs
Sun Nov 5 16:38:09 2000 UTC (24 years, 1 month ago) by thorpej
Branches: MAIN
Diff to: previous 1.169: preferred, colored
Changes since revision 1.169: +2 -2
lines
Manual page for the NeoMagic 256 driver.
Revision 1.169: download - view: text, markup, annotated - select for diffs
Sat Nov 4 18:51:58 2000 UTC (24 years, 1 month ago) by thorpej
Branches: MAIN
Diff to: previous 1.168: preferred, colored
Changes since revision 1.168: +2 -2
lines
Manual page for the PC-Weasel driver.
Revision 1.168: download - view: text, markup, annotated - select for diffs
Mon Oct 23 10:55:45 2000 UTC (24 years, 1 month ago) by enami
Branches: MAIN
Diff to: previous 1.167: preferred, colored
Changes since revision 1.167: +3 -2
lines
Add lsu.4 actually.
Revision 1.167: download - view: text, markup, annotated - select for diffs
Thu Oct 19 14:55:50 2000 UTC (24 years, 1 month ago) by ad
Branches: MAIN
Diff to: previous 1.166: preferred, colored
Changes since revision 1.166: +3 -3
lines
- ca -> lsu
- Document twe.
Revision 1.166: download - view: text, markup, annotated - select for diffs
Thu Sep 28 06:59:58 2000 UTC (24 years, 2 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.165: preferred, colored
Changes since revision 1.165: +2 -2
lines
Manual page for the vlan(4) interface.
Revision 1.165: download - view: text, markup, annotated - select for diffs
Sat Sep 23 04:34:55 2000 UTC (24 years, 2 months ago) by augustss
Branches: MAIN
Diff to: previous 1.164: preferred, colored
Changes since revision 1.164: +2 -2
lines
Add uscanner(4) man page.
Revision 1.160.2.2: download - view: text, markup, annotated - select for diffs
Mon Aug 7 00:14:50 2000 UTC (24 years, 4 months ago) by augustss
Branches: netbsd-1-5
CVS tags: netbsd-1-5-RELEASE,
netbsd-1-5-BETA2,
netbsd-1-5-BETA,
netbsd-1-5-ALPHA2
Diff to: previous 1.160.2.1: preferred, colored; branchpoint 1.160: preferred, colored
Changes since revision 1.160.2.1: +2 -2
lines
Add ofisa(4) man page.
Approved by thorpej.
Revision 1.160.2.1: download - view: text, markup, annotated - select for diffs
Thu Jul 27 02:08:16 2000 UTC (24 years, 4 months ago) by mycroft
Branches: netbsd-1-5
Diff to: previous 1.160: preferred, colored
Changes since revision 1.160: +2 -1
lines
Approved by thorpej:
Make a link from dty.4 to tty.4.
sharesrc/share/man/man4/Makefile 1.160 -> 1.161
Revision 1.164: download - view: text, markup, annotated - select for diffs
Wed Jul 26 22:09:45 2000 UTC (24 years, 4 months ago) by augustss
Branches: MAIN
Diff to: previous 1.163: preferred, colored
Changes since revision 1.163: +2 -2
lines
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?
Revision 1.163: download - view: text, markup, annotated - select for diffs
Tue Jul 25 21:02:56 2000 UTC (24 years, 4 months ago) by pk
Branches: MAIN
Diff to: previous 1.162: preferred, colored
Changes since revision 1.162: +5 -5
lines
Add driver man pages for Mostek MK48TXX and Intersil7170 time-of-day clocks.
Revision 1.162: download - view: text, markup, annotated - select for diffs
Mon Jul 24 11:53:49 2000 UTC (24 years, 4 months ago) by ad
Branches: MAIN
Diff to: previous 1.161: preferred, colored
Changes since revision 1.161: +2 -2
lines
Install ioat.4.
Revision 1.161: download - view: text, markup, annotated - select for diffs
Thu Jul 13 15:56:18 2000 UTC (24 years, 5 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.160: preferred, colored
Changes since revision 1.160: +2 -1
lines
Link dty.4 to tty.4.
Revision 1.155.2.1: download - view: text, markup, annotated - select for diffs
Thu Jun 22 16:17:02 2000 UTC (24 years, 5 months ago) by minoura
Branches: minoura-xpg4dl
Diff to: previous 1.155: preferred, colored; next MAIN 1.156: preferred, colored
Changes since revision 1.155: +28 -26
lines
Sync w/ netbsd-1-5-base.
Revision 1.160: download - view: text, markup, annotated - select for diffs
Fri Jun 16 06:50:36 2000 UTC (24 years, 6 months ago) by msaitoh
Branches: MAIN
CVS tags: netbsd-1-5-base
Branch point for: netbsd-1-5
Diff to: previous 1.159: preferred, colored
Changes since revision 1.159: +3 -3
lines
remove netconfig.4 and rpc.4
Revision 1.159: download - view: text, markup, annotated - select for diffs
Sat Jun 10 20:00:11 2000 UTC (24 years, 6 months ago) by veego
Branches: MAIN
Diff to: previous 1.158: preferred, colored
Changes since revision 1.158: +2 -2
lines
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.
Revision 1.158: download - view: text, markup, annotated - select for diffs
Mon Jun 5 23:14:23 2000 UTC (24 years, 6 months ago) by gmcgarry
Branches: MAIN
Diff to: previous 1.157: preferred, colored
Changes since revision 1.157: +2 -2
lines
New driver for Xircom CreditCard PCMCIA Ethernet. Replaces xe driver which
didn't work. Renamed to avoid clash with next68k network driver.
Revision 1.157: download - view: text, markup, annotated - select for diffs
Sat Jun 3 07:18:47 2000 UTC (24 years, 6 months ago) by veego
Branches: MAIN
Diff to: previous 1.156: preferred, colored
Changes since revision 1.156: +27 -25
lines
Add netconfig.4 and rpc.4.
And format the entries a little bit.
Revision 1.156: download - view: text, markup, annotated - select for diffs
Sun May 28 22:37:46 2000 UTC (24 years, 6 months ago) by augustss
Branches: MAIN
Diff to: previous 1.155: preferred, colored
Changes since revision 1.155: +2 -2
lines
Add mca(4) man page. Xref and add some tr(4) info.
Revision 1.155: download - view: text, markup, annotated - select for diffs
Wed May 17 18:15:08 2000 UTC (24 years, 7 months ago) by thorpej
Branches: MAIN
CVS tags: minoura-xpg4dl-base
Branch point for: minoura-xpg4dl
Diff to: previous 1.154: preferred, colored
Changes since revision 1.154: +2 -2
lines
Manual page for the Cyclades-Z mutli-port serial adapter driver.
Revision 1.154: download - view: text, markup, annotated - select for diffs
Mon May 15 06:31:56 2000 UTC (24 years, 7 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.153: preferred, colored
Changes since revision 1.153: +2 -2
lines
Add a man page for siop and xref it.
Revision 1.87.2.8: download - view: text, markup, annotated - select for diffs
Thu May 11 09:26:28 2000 UTC (24 years, 7 months ago) by he
Branches: netbsd-1-4
CVS tags: netbsd-1-4-PATCH003
Diff to: previous 1.87.2.7: preferred, colored; branchpoint 1.87: preferred, colored; next MAIN 1.88: preferred, colored
Changes since revision 1.87.2.7: +3 -2
lines
Apply patch (requested by jhawk):
Add a driver for ``wi'', Lucent "Orinoco"/Wavelan.
Revision 1.153: download - view: text, markup, annotated - select for diffs
Tue May 9 21:55:54 2000 UTC (24 years, 7 months ago) by bjh21
Branches: MAIN
Diff to: previous 1.152: preferred, colored
Changes since revision 1.152: +2 -2
lines
Initial commit of arm26 port
Revision 1.152: download - view: text, markup, annotated - select for diffs
Mon May 8 16:40:42 2000 UTC (24 years, 7 months ago) by joda
Branches: MAIN
Diff to: previous 1.151: preferred, colored
Changes since revision 1.151: +3 -2
lines
VIA VT82C686A hardware monitor
Revision 1.151: download - view: text, markup, annotated - select for diffs
Sun May 7 20:46:10 2000 UTC (24 years, 7 months ago) by wiz
Branches: MAIN
Diff to: previous 1.150: preferred, colored
Changes since revision 1.150: +3 -3
lines
add man page for bktr(4)
Revision 1.150: download - view: text, markup, annotated - select for diffs
Sat May 6 14:33:22 2000 UTC (24 years, 7 months ago) by augustss
Branches: MAIN
Diff to: previous 1.149: preferred, colored
Changes since revision 1.149: +3 -3
lines
Add pas(4) man page.
Revision 1.149: download - view: text, markup, annotated - select for diffs
Wed May 3 22:59:36 2000 UTC (24 years, 7 months ago) by augustss
Branches: MAIN
Diff to: previous 1.148: preferred, colored
Changes since revision 1.148: +9 -1
lines
Make some more links.
Revision 1.148: download - view: text, markup, annotated - select for diffs
Wed May 3 22:56:55 2000 UTC (24 years, 7 months ago) by augustss
Branches: MAIN
Diff to: previous 1.147: preferred, colored
Changes since revision 1.147: +3 -3
lines
Move bba(4) man page since it works for both alpha and pmax.
Revision 1.147: download - view: text, markup, annotated - select for diffs
Tue May 2 11:42:06 2000 UTC (24 years, 7 months ago) by augustss
Branches: MAIN
Diff to: previous 1.146: preferred, colored
Changes since revision 1.146: +3 -2
lines
Add a very short man page for mainbus (following my philosophy that
every device in the config file should have a man page).
Revision 1.146: download - view: text, markup, annotated - select for diffs
Mon May 1 22:46:43 2000 UTC (24 years, 7 months ago) by augustss
Branches: MAIN
Diff to: previous 1.145: preferred, colored
Changes since revision 1.145: +2 -2
lines
Add cms(4) man page.
Revision 1.145: download - view: text, markup, annotated - select for diffs
Sun Apr 30 22:03:24 2000 UTC (24 years, 7 months ago) by augustss
Branches: MAIN
Diff to: previous 1.144: preferred, colored
Changes since revision 1.144: +2 -2
lines
Add cmpci(4) man page.
Revision 1.144: download - view: text, markup, annotated - select for diffs
Thu Apr 27 13:39:22 2000 UTC (24 years, 7 months ago) by msaitoh
Branches: MAIN
Diff to: previous 1.143: preferred, colored
Changes since revision 1.143: +2 -2
lines
rl.4 -> rtk.4
Revision 1.143: download - view: text, markup, annotated - select for diffs
Wed Apr 19 06:34:20 2000 UTC (24 years, 7 months ago) by itojun
Branches: MAIN
Diff to: previous 1.142: preferred, colored
Changes since revision 1.142: +2 -2
lines
add stf(4), for stf (6to4) pseudo interface.
Revision 1.142: download - view: text, markup, annotated - select for diffs
Sun Apr 16 23:36:51 2000 UTC (24 years, 8 months ago) by perry
Branches: MAIN
Diff to: previous 1.141: preferred, colored
Changes since revision 1.141: +2 -2
lines
add uftdi.4 (it was missing from the makefile)
Revision 1.141: download - view: text, markup, annotated - select for diffs
Fri Apr 14 14:48:29 2000 UTC (24 years, 8 months ago) by augustss
Branches: MAIN
Diff to: previous 1.140: preferred, colored
Changes since revision 1.140: +2 -2
lines
Add urio(4) man page.
Revision 1.140: download - view: text, markup, annotated - select for diffs
Sun Apr 9 18:27:05 2000 UTC (24 years, 8 months ago) by augustss
Branches: MAIN
Diff to: previous 1.139: preferred, colored
Changes since revision 1.139: +2 -2
lines
Add upl(4) man page.
Revision 1.139: download - view: text, markup, annotated - select for diffs
Fri Mar 31 05:49:59 2000 UTC (24 years, 8 months ago) by tsarna
Branches: MAIN
Diff to: previous 1.138: preferred, colored
Changes since revision 1.138: +4 -4
lines
Man page for auvia(4). Also xref fms(4) from audio(4).
Revision 1.138: download - view: text, markup, annotated - select for diffs
Thu Mar 30 17:09:09 2000 UTC (24 years, 8 months ago) by augustss
Branches: MAIN
Diff to: previous 1.137: preferred, colored
Changes since revision 1.137: +2 -2
lines
Add uvisor(4).
Revision 1.137: download - view: text, markup, annotated - select for diffs
Tue Mar 28 14:21:46 2000 UTC (24 years, 8 months ago) by ws
Branches: MAIN
Diff to: previous 1.136: preferred, colored
Changes since revision 1.136: +2 -2
lines
Provide some form of documentation for IPKDB.
Revision 1.136: download - view: text, markup, annotated - select for diffs
Sat Mar 18 14:08:19 2000 UTC (24 years, 8 months ago) by augustss
Branches: MAIN
Diff to: previous 1.135: preferred, colored
Changes since revision 1.135: +2 -2
lines
Add a rudimentary man page for the nca driver.
(Why do people not do this when they add drivers?)
Revision 1.135: download - view: text, markup, annotated - select for diffs
Thu Mar 16 14:54:56 2000 UTC (24 years, 9 months ago) by ad
Branches: MAIN
Diff to: previous 1.134: preferred, colored
Changes since revision 1.134: +2 -2
lines
Documentation for cac/ca devices.
Revision 1.134: download - view: text, markup, annotated - select for diffs
Sun Feb 27 01:00:03 2000 UTC (24 years, 9 months ago) by groo
Branches: MAIN
Diff to: previous 1.133: preferred, colored
Changes since revision 1.133: +4 -4
lines
Addition of lm.4 and envsys.4
Revision 1.133: download - view: text, markup, annotated - select for diffs
Sat Feb 12 11:14:13 2000 UTC (24 years, 10 months ago) by fair
Branches: MAIN
Diff to: previous 1.132: preferred, colored
Changes since revision 1.132: +4 -2
lines
split out pcic.4 tcic.4 from pcmcia.4
add pcmcom.4 and adjust Makefile to suit
all per PR 7603
Revision 1.132: download - view: text, markup, annotated - select for diffs
Sat Feb 12 09:19:04 2000 UTC (24 years, 10 months ago) by fair
Branches: MAIN
Diff to: previous 1.131: preferred, colored
Changes since revision 1.131: +2 -1
lines
Link le.4 with bicc.4 depca.4 and nele.4 - ISA le variants
Revision 1.131: download - view: text, markup, annotated - select for diffs
Fri Feb 11 12:38:22 2000 UTC (24 years, 10 months ago) by fair
Branches: MAIN
Diff to: previous 1.130: preferred, colored
Changes since revision 1.130: +9 -8
lines
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.
Revision 1.130: download - view: text, markup, annotated - select for diffs
Fri Feb 11 09:28:49 2000 UTC (24 years, 10 months ago) by fair
Branches: MAIN
Diff to: previous 1.129: preferred, colored
Changes since revision 1.129: +5 -4
lines
Intial commit of a de.4 man page to answer PR 5759.
This page is a quick job which should be reviewed for accuracy.
Revision 1.87.2.7: download - view: text, markup, annotated - select for diffs
Thu Feb 10 21:30:22 2000 UTC (24 years, 10 months ago) by he
Branches: netbsd-1-4
CVS tags: netbsd-1-4-PATCH002
Diff to: previous 1.87.2.6: preferred, colored; branchpoint 1.87: preferred, colored
Changes since revision 1.87.2.6: +4 -3
lines
Pull up revision 1.129 (via patch, requested by drochner):
Add manual page for Alteon Gigabit driver.
Revision 1.129: download - view: text, markup, annotated - select for diffs
Wed Feb 9 14:21:06 2000 UTC (24 years, 10 months ago) by drochner
Branches: MAIN
Diff to: previous 1.128: preferred, colored
Changes since revision 1.128: +2 -2
lines
add manpage for the if_ti Gigabit Ethernet driver, from FreeBSD,
with slight modifications
Revision 1.87.2.6: download - view: text, markup, annotated - select for diffs
Mon Feb 7 19:56:33 2000 UTC (24 years, 10 months ago) by he
Branches: netbsd-1-4
Diff to: previous 1.87.2.5: preferred, colored; branchpoint 1.87: preferred, colored
Changes since revision 1.87.2.5: +5 -4
lines
Pull up revision 1.128 (via patch, requested by bouyer):
Add manual pages for RealTek 8129/8139 and VIA Rhine/Rhine-II
ethernet drivers.
Revision 1.128: download - view: text, markup, annotated - select for diffs
Mon Feb 7 18:00:10 2000 UTC (24 years, 10 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.127: preferred, colored
Changes since revision 1.127: +3 -3
lines
Add man page for realtek and rhine ethernet drivers, update the thunderlan
one to current reality.
Revision 1.127: download - view: text, markup, annotated - select for diffs
Thu Feb 3 21:04:30 2000 UTC (24 years, 10 months ago) by dante
Branches: MAIN
Diff to: previous 1.126: preferred, colored
Changes since revision 1.126: +4 -4
lines
Add adw driver man page
Revision 1.87.2.5: download - view: text, markup, annotated - select for diffs
Wed Feb 2 23:01:23 2000 UTC (24 years, 10 months ago) by he
Branches: netbsd-1-4
Diff to: previous 1.87.2.4: preferred, colored; branchpoint 1.87: preferred, colored
Changes since revision 1.87.2.4: +2 -2
lines
Apply patch (requested by ad):
Add files installed for dpt(4) driver.
Revision 1.87.2.4: download - view: text, markup, annotated - select for diffs
Mon Jan 31 19:03:11 2000 UTC (24 years, 10 months ago) by he
Branches: netbsd-1-4
Diff to: previous 1.87.2.3: preferred, colored; branchpoint 1.87: preferred, colored
Changes since revision 1.87.2.3: +2 -2
lines
Apply patch (requested by mcr):
Document the ioat device driver.
Revision 1.126: download - view: text, markup, annotated - select for diffs
Tue Jan 25 08:32:05 2000 UTC (24 years, 10 months ago) by augustss
Branches: MAIN
Diff to: previous 1.125: preferred, colored
Changes since revision 1.125: +5 -4
lines
Update for the ucom(4) addition.
Revision 1.125: download - view: text, markup, annotated - select for diffs
Mon Jan 24 15:33:12 2000 UTC (24 years, 10 months ago) by ad
Branches: MAIN
Diff to: previous 1.124: preferred, colored
Changes since revision 1.124: +2 -2
lines
Install dpt(4).
Revision 1.124: download - view: text, markup, annotated - select for diffs
Mon Jan 24 15:17:38 2000 UTC (24 years, 10 months ago) by augustss
Branches: MAIN
Diff to: previous 1.123: preferred, colored
Changes since revision 1.123: +2 -2
lines
Add ray(4).
Revision 1.123: download - view: text, markup, annotated - select for diffs
Sun Jan 23 14:29:14 2000 UTC (24 years, 10 months ago) by drochner
Branches: MAIN
Diff to: previous 1.122: preferred, colored
Changes since revision 1.122: +2 -2
lines
speaker(4) is MI
Revision 1.122: download - view: text, markup, annotated - select for diffs
Sun Jan 16 10:43:37 2000 UTC (24 years, 11 months ago) by augustss
Branches: MAIN
Diff to: previous 1.121: preferred, colored
Changes since revision 1.121: +2 -1
lines
Add man pages for Bill Paul's USB-Ethernet adapter drivers.
The actual drivers should appear within a few days.
Revision 1.121: download - view: text, markup, annotated - select for diffs
Wed Jan 5 00:17:25 2000 UTC (24 years, 11 months ago) by chopps
Branches: MAIN
Diff to: previous 1.120: preferred, colored
Changes since revision 1.120: +3 -2
lines
Add man page for ntwoc
Revision 1.107.2.1: download - view: text, markup, annotated - select for diffs
Mon Dec 27 18:30:37 1999 UTC (24 years, 11 months ago) by wrstuden
Branches: wrstuden-devbsize
Diff to: previous 1.107: preferred, colored; next MAIN 1.108: preferred, colored
Changes since revision 1.107: +21 -16
lines
Pull up to last week's -current.
Revision 1.120: download - view: text, markup, annotated - select for diffs
Tue Dec 21 07:48:11 1999 UTC (24 years, 11 months ago) by fair
Branches: MAIN
CVS tags: wrstuden-devbsize-base,
wrstuden-devbsize-19991221
Diff to: previous 1.119: preferred, colored
Changes since revision 1.119: +2 -2
lines
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
Revision 1.119: download - view: text, markup, annotated - select for diffs
Mon Dec 20 05:50:48 1999 UTC (24 years, 11 months ago) by itojun
Branches: MAIN
Diff to: previous 1.118: preferred, colored
Changes since revision 1.118: +2 -2
lines
add ip6(4) and icmp6(4).
Revision 1.118: download - view: text, markup, annotated - select for diffs
Sat Dec 11 23:10:15 1999 UTC (25 years ago) by augustss
Branches: MAIN
Diff to: previous 1.117: preferred, colored
Changes since revision 1.117: +3 -2
lines
Fix some typos and xrefs.
Add CS4280 man page. Drier will be added shortly.
Revision 1.117: download - view: text, markup, annotated - select for diffs
Mon Nov 29 13:22:37 1999 UTC (25 years ago) by itojun
Branches: MAIN
Diff to: previous 1.116: preferred, colored
Changes since revision 1.116: +2 -2
lines
sync cnw(4) manpage with reality on NetBSD.
Revision 1.116: download - view: text, markup, annotated - select for diffs
Sun Nov 28 17:41:11 1999 UTC (25 years ago) by scw
Branches: MAIN
Diff to: previous 1.115: preferred, colored
Changes since revision 1.115: +3 -3
lines
Add man4.mvme68k subdirectory.
Revision 1.115: download - view: text, markup, annotated - select for diffs
Mon Nov 15 17:49:46 1999 UTC (25 years, 1 month ago) by augustss
Branches: MAIN
Diff to: previous 1.114: preferred, colored
Changes since revision 1.114: +2 -2
lines
Fix spelling of mhzc
Revision 1.114: download - view: text, markup, annotated - select for diffs
Sun Nov 14 23:19:10 1999 UTC (25 years, 1 month ago) by augustss
Branches: MAIN
Diff to: previous 1.113: preferred, colored
Changes since revision 1.113: +2 -2
lines
Add mbe man page.
Revision 1.113: download - view: text, markup, annotated - select for diffs
Sun Nov 14 22:54:40 1999 UTC (25 years, 1 month ago) by augustss
Branches: MAIN
Diff to: previous 1.112: preferred, colored
Changes since revision 1.112: +2 -2
lines
Add cardbus.4
Revision 1.112: download - view: text, markup, annotated - select for diffs
Sun Nov 14 22:40:13 1999 UTC (25 years, 1 month ago) by augustss
Branches: MAIN
Diff to: previous 1.111: preferred, colored
Changes since revision 1.111: +2 -2
lines
Provide a rudimentary man page for the mhzc driver.
Revision 1.111: download - view: text, markup, annotated - select for diffs
Sun Nov 7 21:03:49 1999 UTC (25 years, 1 month ago) by dmcmahill
Branches: MAIN
Diff to: previous 1.110: preferred, colored
Changes since revision 1.110: +2 -2
lines
add zero(4)
Revision 1.110.2.2: download - view: text, markup, annotated - select for diffs
Fri Nov 5 19:48:50 1999 UTC (25 years, 1 month ago) by thorpej
Branches: comdex-fall-1999
Diff to: previous 1.110.2.1: preferred, colored; branchpoint 1.110: preferred, colored; next MAIN 1.111: preferred, colored
Changes since revision 1.110.2.1: +61 -0
lines
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.
Revision 1.110.2.1
Fri Nov 5 19:48:49 1999 UTC (25 years, 1 month ago) by thorpej
Branches: comdex-fall-1999
FILE REMOVED
Changes since revision 1.110: +0 -61
lines
file Makefile was added on branch comdex-fall-1999 on 1999-11-05 19:48:50 +0000
Revision 1.110: download - view: text, markup, annotated - select for diffs
Fri Nov 5 19:48:49 1999 UTC (25 years, 1 month ago) by thorpej
Branches: MAIN
CVS tags: comdex-fall-1999-base
Branch point for: comdex-fall-1999
Diff to: previous 1.109: preferred, colored
Changes since revision 1.109: +2 -2
lines
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.
Revision 1.109: download - view: text, markup, annotated - select for diffs
Thu Nov 4 19:36:01 1999 UTC (25 years, 1 month ago) by sommerfeld
Branches: MAIN
Diff to: previous 1.108: preferred, colored
Changes since revision 1.108: +3 -2
lines
Add awi(4) man page.
Revision 1.108: download - view: text, markup, annotated - select for diffs
Mon Nov 1 20:55:20 1999 UTC (25 years, 1 month ago) by augustss
Branches: MAIN
Diff to: previous 1.107: preferred, colored
Changes since revision 1.107: +15 -12
lines
Add Forte Media FM801 man page.
Revision 1.107: download - view: text, markup, annotated - select for diffs
Thu Sep 16 19:47:49 1999 UTC (25 years, 3 months ago) by augustss
Branches: MAIN
Branch point for: wrstuden-devbsize
Diff to: previous 1.106: preferred, colored
Changes since revision 1.106: +4 -1
lines
Update MIDI man page a little.
Revision 1.106: download - view: text, markup, annotated - select for diffs
Mon Sep 13 23:04:34 1999 UTC (25 years, 3 months ago) by augustss
Branches: MAIN
Diff to: previous 1.105: preferred, colored
Changes since revision 1.105: +2 -1
lines
Make uhub(4) a link to usb(4).
Revision 1.105: download - view: text, markup, annotated - select for diffs
Mon Sep 13 22:58:22 1999 UTC (25 years, 3 months ago) by augustss
Branches: MAIN
Diff to: previous 1.104: preferred, colored
Changes since revision 1.104: +3 -2
lines
Add ohci(4) and uhci(4) man pages that have existed for a year.
Revision 1.104: download - view: text, markup, annotated - select for diffs
Wed Sep 8 14:23:04 1999 UTC (25 years, 3 months ago) by hubertf
Branches: MAIN
Diff to: previous 1.103: preferred, colored
Changes since revision 1.103: +2 -1
lines
Add phy.4 as a link to mii.4
Revision 1.103: download - view: text, markup, annotated - select for diffs
Wed Sep 8 13:58:37 1999 UTC (25 years, 3 months ago) by soren
Branches: MAIN
Diff to: previous 1.102: preferred, colored
Changes since revision 1.102: +3 -3
lines
Sync with dev/mii.
Revision 1.102: download - view: text, markup, annotated - select for diffs
Wed Sep 8 13:08:20 1999 UTC (25 years, 3 months ago) by soren
Branches: MAIN
Diff to: previous 1.101: preferred, colored
Changes since revision 1.101: +5 -5
lines
Sync with dev/mii.
Revision 1.101: download - view: text, markup, annotated - select for diffs
Sun Sep 5 00:10:32 1999 UTC (25 years, 3 months ago) by soren
Branches: MAIN
Diff to: previous 1.100: preferred, colored
Changes since revision 1.100: +9 -9
lines
Add iophy.4 and tqphy.4.
Revision 1.100: download - view: text, markup, annotated - select for diffs
Sun Aug 29 17:26:22 1999 UTC (25 years, 3 months ago) by augustss
Branches: MAIN
Diff to: previous 1.99: preferred, colored
Changes since revision 1.99: +2 -2
lines
Note addition of umass driver.
Revision 1.99: download - view: text, markup, annotated - select for diffs
Mon Aug 23 16:30:09 1999 UTC (25 years, 3 months ago) by augustss
Branches: MAIN
Diff to: previous 1.98: preferred, colored
Changes since revision 1.98: +2 -1
lines
Make atapi(4) a link to scsi(4).
Revision 1.98: download - view: text, markup, annotated - select for diffs
Mon Aug 16 23:30:19 1999 UTC (25 years, 4 months ago) by augustss
Branches: MAIN
Diff to: previous 1.97: preferred, colored
Changes since revision 1.97: +3 -3
lines
Make and install the wi(4) man page.
Revision 1.97: download - view: text, markup, annotated - select for diffs
Mon Aug 16 22:27:12 1999 UTC (25 years, 4 months ago) by augustss
Branches: MAIN
Diff to: previous 1.96: preferred, colored
Changes since revision 1.96: +2 -2
lines
Add umodem device.
Revision 1.96: download - view: text, markup, annotated - select for diffs
Sun Aug 1 18:21:16 1999 UTC (25 years, 4 months ago) by augustss
Branches: MAIN
Diff to: previous 1.95: preferred, colored
Changes since revision 1.95: +2 -2
lines
Add mpu(4) man page.
Revision 1.95: download - view: text, markup, annotated - select for diffs
Thu Jul 29 18:22:03 1999 UTC (25 years, 4 months ago) by augustss
Branches: MAIN
Diff to: previous 1.94: preferred, colored
Changes since revision 1.94: +3 -3
lines
Add the wsmux pseudo device.
Revision 1.94: download - view: text, markup, annotated - select for diffs
Sat Jul 17 07:09:40 1999 UTC (25 years, 5 months ago) by itojun
Branches: MAIN
Diff to: previous 1.93: preferred, colored
Changes since revision 1.93: +2 -2
lines
add manpage for faith pseudo interface (which is for
IPv6-to-IPv4 tcp relay translation).
Revision 1.93: download - view: text, markup, annotated - select for diffs
Mon Jul 12 15:13:30 1999 UTC (25 years, 5 months ago) by kleink
Branches: MAIN
Diff to: previous 1.92: preferred, colored
Changes since revision 1.92: +2 -2
lines
Add a driver for the ESS Technology Solo-1 PCI AudioDrive line of chips.
Revision 1.92: download - view: text, markup, annotated - select for diffs
Thu Jul 1 10:55:53 1999 UTC (25 years, 5 months ago) by itojun
Branches: MAIN
Diff to: previous 1.91: preferred, colored
Changes since revision 1.91: +4 -1
lines
add IPv6/IPsec manpage into MAN
Revision 1.91: download - view: text, markup, annotated - select for diffs
Sun Jun 27 18:35:31 1999 UTC (25 years, 5 months ago) by augustss
Branches: MAIN
Diff to: previous 1.90: preferred, colored
Changes since revision 1.90: +3 -1
lines
Make links from audio to sound and mixer.
Revision 1.87.2.3: download - view: text, markup, annotated - select for diffs
Thu Apr 29 22:29:08 1999 UTC (25 years, 7 months ago) by perry
Branches: netbsd-1-4
CVS tags: netbsd-1-4-RELEASE,
netbsd-1-4-PATCH001
Diff to: previous 1.87.2.2: preferred, colored; branchpoint 1.87: preferred, colored
Changes since revision 1.87.2.2: +4 -3
lines
pullup 1.89->1.90 (bad)
Revision 1.90: download - view: text, markup, annotated - select for diffs
Thu Apr 29 16:40:38 1999 UTC (25 years, 7 months ago) by bad
Branches: MAIN
Diff to: previous 1.89: preferred, colored
Changes since revision 1.89: +4 -3
lines
Add a basic man page for the tr driver.
Revision 1.87.2.2: download - view: text, markup, annotated - select for diffs
Thu Apr 22 15:16:14 1999 UTC (25 years, 7 months ago) by perry
Branches: netbsd-1-4
Diff to: previous 1.87.2.1: preferred, colored; branchpoint 1.87: preferred, colored
Changes since revision 1.87.2.1: +7 -6
lines
pullup 1.88->1.89 (drochner): add new wscons docs
Revision 1.89: download - view: text, markup, annotated - select for diffs
Wed Apr 21 18:42:03 1999 UTC (25 years, 7 months ago) by drochner
Branches: MAIN
Diff to: previous 1.88: preferred, colored
Changes since revision 1.88: +7 -6
lines
-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
Revision 1.87.2.1: download - view: text, markup, annotated - select for diffs
Fri Apr 16 05:16:44 1999 UTC (25 years, 8 months ago) by msaitoh
Branches: netbsd-1-4
Diff to: previous 1.87: preferred, colored
Changes since revision 1.87: +4 -1
lines
pullup 1.87-1.88 (add ex.4)
Revision 1.88: download - view: text, markup, annotated - select for diffs
Wed Apr 7 21:48:52 1999 UTC (25 years, 8 months ago) by fair
Branches: MAIN
Diff to: previous 1.87: preferred, colored
Changes since revision 1.87: +4 -1
lines
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 1.87: download - view: text, markup, annotated - select for diffs
Sun Mar 28 17:06:38 1999 UTC (25 years, 8 months ago) by hwr
Branches: MAIN
CVS tags: netbsd-1-4-base
Branch point for: netbsd-1-4
Diff to: previous 1.86: preferred, colored
Changes since revision 1.86: +2 -2
lines
Enable ipip.4
Revision 1.86: download - view: text, markup, annotated - select for diffs
Mon Mar 22 19:15:03 1999 UTC (25 years, 8 months ago) by drochner
Branches: MAIN
Diff to: previous 1.85: preferred, colored
Changes since revision 1.85: +6 -7
lines
add some manpages for wscons framework and devices
Revision 1.85: download - view: text, markup, annotated - select for diffs
Tue Mar 16 19:20:15 1999 UTC (25 years, 9 months ago) by jwise
Branches: MAIN
Diff to: previous 1.84: preferred, colored
Changes since revision 1.84: +6 -5
lines
Add pcscp (AMD PCscsi) man page from Izumi Tsutsui <tsutsui@ceres.dti.ne.jp>
closes PR misc/7026
Revision 1.84: download - view: text, markup, annotated - select for diffs
Wed Dec 16 11:38:36 1998 UTC (26 years ago) by christos
Branches: MAIN
Diff to: previous 1.83: preferred, colored
Changes since revision 1.83: +3 -3
lines
Add Byte Runner Technologies TC-400 and TC-800 driver doc from Eric S. Hvozda
Revision 1.83: download - view: text, markup, annotated - select for diffs
Thu Dec 10 18:56:56 1998 UTC (26 years ago) by augustss
Branches: MAIN
Diff to: previous 1.82: preferred, colored
Changes since revision 1.82: +2 -2
lines
Add sv man page.
Revision 1.82: download - view: text, markup, annotated - select for diffs
Fri Nov 13 04:25:58 1998 UTC (26 years, 1 month ago) by oster
Branches: MAIN
Diff to: previous 1.81: preferred, colored
Changes since revision 1.81: +5 -5
lines
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.
Revision 1.81: download - view: text, markup, annotated - select for diffs
Wed Nov 4 17:35:59 1998 UTC (26 years, 1 month ago) by bouyer
Branches: MAIN
Diff to: previous 1.80: preferred, colored
Changes since revision 1.80: +2 -2
lines
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 !
Revision 1.80: download - view: text, markup, annotated - select for diffs
Wed Nov 4 05:53:58 1998 UTC (26 years, 1 month ago) by thorpej
Branches: MAIN
Diff to: previous 1.79: preferred, colored
Changes since revision 1.79: +8 -7
lines
Manual pages for the PHY drivers.
Revision 1.79: download - view: text, markup, annotated - select for diffs
Wed Nov 4 05:21:50 1998 UTC (26 years, 1 month ago) by thorpej
Branches: MAIN
Diff to: previous 1.78: preferred, colored
Changes since revision 1.78: +2 -2
lines
Manual page for the MAC-independent MII framework.
Revision 1.78: download - view: text, markup, annotated - select for diffs
Tue Nov 3 06:09:17 1998 UTC (26 years, 1 month ago) by thorpej
Branches: MAIN
Diff to: previous 1.77: preferred, colored
Changes since revision 1.77: +2 -2
lines
Manual page for fxp driver.
Revision 1.77: download - view: text, markup, annotated - select for diffs
Mon Oct 19 12:44:15 1998 UTC (26 years, 1 month ago) by bouyer
Branches: MAIN
Diff to: previous 1.76: preferred, colored
Changes since revision 1.76: +3 -3
lines
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.
Revision 1.76: download - view: text, markup, annotated - select for diffs
Wed Sep 30 02:39:01 1998 UTC (26 years, 2 months ago) by jonathan
Branches: MAIN
Diff to: previous 1.75: preferred, colored
Changes since revision 1.75: +9 -8
lines
Copy man/man4.vax/mtio.4 to man4/mtio.4, keeping revision history this time.
Update Makefiles to match.
Remove man4.vax/mtio.4.
Revision 1.75: download - view: text, markup, annotated - select for diffs
Tue Sep 29 23:39:43 1998 UTC (26 years, 2 months ago) by jonathan
Branches: MAIN
Diff to: previous 1.74: preferred, colored
Changes since revision 1.74: +5 -4
lines
Add missing ess.4 man page (used in comp set)
Revision 1.74: download - view: text, markup, annotated - select for diffs
Sun Sep 13 20:39:35 1998 UTC (26 years, 3 months ago) by hwr
Branches: MAIN
Diff to: previous 1.73: preferred, colored
Changes since revision 1.73: +2 -2
lines
Manpage for gre network interface.
Revision 1.73: download - view: text, markup, annotated - select for diffs
Tue Aug 18 08:16:56 1998 UTC (26 years, 4 months ago) by augustss
Branches: MAIN
Diff to: previous 1.72: preferred, colored
Changes since revision 1.72: +4 -4
lines
Add OPL man page.
Revision 1.47.2.9: download - view: text, markup, annotated - select for diffs
Sun Aug 9 16:53:25 1998 UTC (26 years, 4 months ago) by mellon
Branches: netbsd-1-3
CVS tags: netbsd-1-3-PATCH003-CANDIDATE2,
netbsd-1-3-PATCH003-CANDIDATE1,
netbsd-1-3-PATCH003-CANDIDATE0,
netbsd-1-3-PATCH003
Diff to: previous 1.47.2.8: preferred, colored; branchpoint 1.47: preferred, colored; next MAIN 1.48: preferred, colored
Changes since revision 1.47.2.8: +6 -6
lines
Pull up 1.72 (thorpej)
Revision 1.72: download - view: text, markup, annotated - select for diffs
Sun Aug 9 00:37:16 1998 UTC (26 years, 4 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.71: preferred, colored
Changes since revision 1.71: +4 -4
lines
First cut at ifmedia documentation.
Revision 1.71: download - view: text, markup, annotated - select for diffs
Thu Aug 6 20:45:44 1998 UTC (26 years, 4 months ago) by augustss
Branches: MAIN
Diff to: previous 1.70: preferred, colored
Changes since revision 1.70: +3 -3
lines
Add a midi(4) man page.
Revision 1.70: download - view: text, markup, annotated - select for diffs
Sun Jul 26 18:28:35 1998 UTC (26 years, 4 months ago) by augustss
Branches: MAIN
Diff to: previous 1.69: preferred, colored
Changes since revision 1.69: +2 -2
lines
Fix wscons installation.
Revision 1.69: download - view: text, markup, annotated - select for diffs
Sun Jul 26 17:50:12 1998 UTC (26 years, 4 months ago) by augustss
Branches: MAIN
Diff to: previous 1.68: preferred, colored
Changes since revision 1.68: +6 -3
lines
Add wscons(4) man page and xref it from USB driver pages.
Revision 1.68: download - view: text, markup, annotated - select for diffs
Sun Jul 12 19:51:55 1998 UTC (26 years, 5 months ago) by augustss
Branches: MAIN
Diff to: previous 1.67: preferred, colored
Changes since revision 1.67: +3 -2
lines
Add USB support. Supported so far:
* UHCI and OHCI host controllers on PCI
* Hubs
* HID devices withe special drivers for mouse and keyboard
* Printers
Revision 1.67: download - view: text, markup, annotated - select for diffs
Thu Jul 9 16:19:20 1998 UTC (26 years, 5 months ago) by mjacob
Branches: MAIN
Diff to: previous 1.66: preferred, colored
Changes since revision 1.66: +2 -2
lines
add isp(4) man page
Revision 1.66: download - view: text, markup, annotated - select for diffs
Wed Jul 1 01:48:20 1998 UTC (26 years, 5 months ago) by cgd
Branches: MAIN
Diff to: previous 1.65: preferred, colored
Changes since revision 1.65: +2 -2
lines
add a quickly-thrown-together manual page for 'puc'
Revision 1.65: download - view: text, markup, annotated - select for diffs
Fri Jun 19 10:58:52 1998 UTC (26 years, 5 months ago) by fair
Branches: MAIN
Diff to: previous 1.64: preferred, colored
Changes since revision 1.64: +5 -5
lines
add scsi.4 ss.4 ch.4 to Makefile (I forgot)
Revision 1.64: download - view: text, markup, annotated - select for diffs
Sat Jun 6 10:16:59 1998 UTC (26 years, 6 months ago) by augustss
Branches: MAIN
Diff to: previous 1.63: preferred, colored
Changes since revision 1.63: +3 -3
lines
Add Aria driver.
Revision 1.63: download - view: text, markup, annotated - select for diffs
Wed May 27 21:09:08 1998 UTC (26 years, 6 months ago) by matt
Branches: MAIN
Diff to: previous 1.62: preferred, colored
Changes since revision 1.62: +2 -2
lines
fix botch I made when adding fta.4
Revision 1.62: download - view: text, markup, annotated - select for diffs
Wed May 27 02:52:29 1998 UTC (26 years, 6 months ago) by matt
Branches: MAIN
Diff to: previous 1.61: preferred, colored
Changes since revision 1.61: +2 -2
lines
Add fta.4 link
Revision 1.61: download - view: text, markup, annotated - select for diffs
Thu May 21 15:52:32 1998 UTC (26 years, 6 months ago) by augustss
Branches: MAIN
Diff to: previous 1.60: preferred, colored
Changes since revision 1.60: +3 -2
lines
Add ym.4 man page.
Revision 1.60: download - view: text, markup, annotated - select for diffs
Thu May 14 00:39:10 1998 UTC (26 years, 7 months ago) by kml
Branches: MAIN
Diff to: previous 1.59: preferred, colored
Changes since revision 1.59: +6 -6
lines
Added man page for the RoadRunner HIPPI driver.
Revision 1.59: download - view: text, markup, annotated - select for diffs
Thu May 7 10:55:21 1998 UTC (26 years, 7 months ago) by fair
Branches: MAIN
Diff to: previous 1.58: preferred, colored
Changes since revision 1.58: +5 -1
lines
document si & sw drivers
Revision 1.58: download - view: text, markup, annotated - select for diffs
Wed May 6 19:02:28 1998 UTC (26 years, 7 months ago) by augustss
Branches: MAIN
Diff to: previous 1.57: preferred, colored
Changes since revision 1.57: +6 -6
lines
Add eap.4 (and reformat the lines)
Revision 1.57: download - view: text, markup, annotated - select for diffs
Wed Feb 11 18:52:25 1998 UTC (26 years, 10 months ago) by gwr
Branches: MAIN
Diff to: previous 1.56: preferred, colored
Changes since revision 1.56: +2 -2
lines
Remove man?.sun3x
Revision 1.56: download - view: text, markup, annotated - select for diffs
Wed Dec 24 08:45:33 1997 UTC (26 years, 11 months ago) by jeremy
Branches: MAIN
Diff to: previous 1.55: preferred, colored
Changes since revision 1.55: +2 -2
lines
Added sun3x subdirectory.
Revision 1.47.2.8: download - view: text, markup, annotated - select for diffs
Sat Nov 15 19:06:34 1997 UTC (27 years, 1 month ago) by mellon
Branches: netbsd-1-3
CVS tags: netbsd-1-3-RELEASE,
netbsd-1-3-PATCH002,
netbsd-1-3-PATCH001,
netbsd-1-3-BETA
Diff to: previous 1.47.2.7: preferred, colored; branchpoint 1.47: preferred, colored
Changes since revision 1.47.2.7: +5 -5
lines
Pull rev 1.55 up from trunk (wrstuden)
Revision 1.55: download - view: text, markup, annotated - select for diffs
Sat Nov 15 04:00:34 1997 UTC (27 years, 1 month ago) by wrstuden
Branches: MAIN
Diff to: previous 1.54: preferred, colored
Changes since revision 1.54: +5 -5
lines
Don't forget to make atalk.4 now that we have it
Revision 1.47.2.7: download - view: text, markup, annotated - select for diffs
Sat Nov 15 00:43:49 1997 UTC (27 years, 1 month ago) by mellon
Branches: netbsd-1-3
Diff to: previous 1.47.2.6: preferred, colored; branchpoint 1.47: preferred, colored
Changes since revision 1.47.2.6: +2 -2
lines
Pull rev 1.54 up from trunk (augustss)
Revision 1.54: download - view: text, markup, annotated - select for diffs
Tue Nov 11 17:21:42 1997 UTC (27 years, 1 month ago) by augustss
Branches: MAIN
Diff to: previous 1.53: preferred, colored
Changes since revision 1.53: +2 -2
lines
Add a first version of a PCMCIA man page.
Revision 1.47.2.6: download - view: text, markup, annotated - select for diffs
Tue Nov 11 02:07:15 1997 UTC (27 years, 1 month ago) by thorpej
Branches: netbsd-1-3
Diff to: previous 1.47.2.5: preferred, colored; branchpoint 1.47: preferred, colored
Changes since revision 1.47.2.5: +2 -2
lines
Sync w/ trunk.
Revision 1.53: download - view: text, markup, annotated - select for diffs
Tue Nov 11 02:05:58 1997 UTC (27 years, 1 month ago) by thorpej
Branches: MAIN
Diff to: previous 1.52: preferred, colored
Changes since revision 1.52: +2 -2
lines
Add a manual page for the "en" driver.
Revision 1.47.2.5: download - view: text, markup, annotated - select for diffs
Tue Nov 11 01:12:29 1997 UTC (27 years, 1 month ago) by thorpej
Branches: netbsd-1-3
Diff to: previous 1.47.2.4: preferred, colored; branchpoint 1.47: preferred, colored
Changes since revision 1.47.2.4: +2 -2
lines
Sync w/ trunk.
Revision 1.52: download - view: text, markup, annotated - select for diffs
Tue Nov 11 01:11:11 1997 UTC (27 years, 1 month ago) by thorpej
Branches: MAIN
Diff to: previous 1.51: preferred, colored
Changes since revision 1.51: +2 -2
lines
Add a manual page for the "lc" driver.
Revision 1.47.2.4: download - view: text, markup, annotated - select for diffs
Tue Nov 11 00:46:55 1997 UTC (27 years, 1 month ago) by thorpej
Branches: netbsd-1-3
Diff to: previous 1.47.2.3: preferred, colored; branchpoint 1.47: preferred, colored
Changes since revision 1.47.2.3: +2 -2
lines
Sync w/ trunk.
Revision 1.51: download - view: text, markup, annotated - select for diffs
Tue Nov 11 00:45:54 1997 UTC (27 years, 1 month ago) by thorpej
Branches: MAIN
Diff to: previous 1.50: preferred, colored
Changes since revision 1.50: +2 -2
lines
Add manual page for the "sm" device driver.
Revision 1.47.2.3: download - view: text, markup, annotated - select for diffs
Mon Nov 10 23:20:22 1997 UTC (27 years, 1 month ago) by thorpej
Branches: netbsd-1-3
Diff to: previous 1.47.2.2: preferred, colored; branchpoint 1.47: preferred, colored
Changes since revision 1.47.2.2: +3 -3
lines
Sync w/ trunk: manual pages for "ec" and "we" drivers.
Revision 1.50: download - view: text, markup, annotated - select for diffs
Mon Nov 10 23:18:23 1997 UTC (27 years, 1 month ago) by thorpej
Branches: MAIN
Diff to: previous 1.49: preferred, colored
Changes since revision 1.49: +3 -3
lines
Manual pages for "ec" and "we" drivers.
Revision 1.47.2.2: download - view: text, markup, annotated - select for diffs
Fri Oct 31 07:48:51 1997 UTC (27 years, 1 month ago) by mellon
Branches: netbsd-1-3
Diff to: previous 1.47.2.1: preferred, colored; branchpoint 1.47: preferred, colored
Changes since revision 1.47.2.1: +2 -2
lines
Pull rev 1.49 up from trunk (gwr)
Revision 1.49: download - view: text, markup, annotated - select for diffs
Fri Oct 31 03:13:01 1997 UTC (27 years, 1 month ago) by gwr
Branches: MAIN
Diff to: previous 1.48: preferred, colored
Changes since revision 1.48: +2 -2
lines
Add zstty.4
Revision 1.47.2.1: download - view: text, markup, annotated - select for diffs
Thu Oct 30 23:16:53 1997 UTC (27 years, 1 month ago) by mellon
Branches: netbsd-1-3
Diff to: previous 1.47: preferred, colored
Changes since revision 1.47: +2 -2
lines
Pull rev 1.48 up from trunk (bouyer)
Revision 1.48: download - view: text, markup, annotated - select for diffs
Thu Oct 30 11:23:17 1997 UTC (27 years, 1 month ago) by bouyer
Branches: MAIN
Diff to: previous 1.47: preferred, colored
Changes since revision 1.47: +2 -2
lines
Add a man page for the thunderlan driver.
Revision 1.47: download - view: text, markup, annotated - select for diffs
Mon Oct 20 21:40:45 1997 UTC (27 years, 1 month ago) by thorpej
Branches: MAIN
CVS tags: netbsd-1-3-base
Branch point for: netbsd-1-3
Diff to: previous 1.46: preferred, colored
Changes since revision 1.46: +2 -2
lines
Add a manual page for the "ne" driver.
Revision 1.1.1.4 (vendor branch): download - view: text, markup, annotated - select for diffs
Fri Oct 17 10:36:32 1997 UTC (27 years, 2 months ago) by mrg
Branches: WFJ-920714,
Leo,
CSRG
CVS tags: lite-2
Diff to: previous 1.1.1.3: preferred, colored
Changes since revision 1.1.1.3: +7 -5
lines
4.4BSD-Lite2
Revision 1.46: download - view: text, markup, annotated - select for diffs
Wed Oct 15 07:01:44 1997 UTC (27 years, 2 months ago) by explorer
Branches: MAIN
Diff to: previous 1.45: preferred, colored
Changes since revision 1.45: +2 -2
lines
build rnd(4)
Revision 1.45: download - view: text, markup, annotated - select for diffs
Sat Oct 11 08:22:46 1997 UTC (27 years, 2 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.44: preferred, colored
Changes since revision 1.44: +3 -2
lines
Use bsd.man.mk and bsd.subdir.mk as appropriate.
Revision 1.44: download - view: text, markup, annotated - select for diffs
Wed Oct 8 21:42:19 1997 UTC (27 years, 2 months ago) by augustss
Branches: MAIN
Diff to: previous 1.43: preferred, colored
Changes since revision 1.43: +3 -3
lines
Build the guspnp man page.
Revision 1.43: download - view: text, markup, annotated - select for diffs
Mon Oct 6 23:32:54 1997 UTC (27 years, 2 months ago) by hubertf
Branches: MAIN
Diff to: previous 1.42: preferred, colored
Changes since revision 1.42: +2 -2
lines
imp.4 deleted
Revision 1.42: download - view: text, markup, annotated - select for diffs
Mon Jun 23 01:18:35 1997 UTC (27 years, 5 months ago) by jtk
Branches: MAIN
Diff to: previous 1.41: preferred, colored
Changes since revision 1.41: +3 -3
lines
add esp.4
Revision 1.41: download - view: text, markup, annotated - select for diffs
Sun Jun 22 07:02:30 1997 UTC (27 years, 5 months ago) by mrg
Branches: MAIN
Diff to: previous 1.40: preferred, colored
Changes since revision 1.40: +2 -2
lines
move man pages into share/man.
Revision 1.40: download - view: text, markup, annotated - select for diffs
Sun Apr 27 09:09:51 1997 UTC (27 years, 7 months ago) by jonathan
Branches: MAIN
Diff to: previous 1.39: preferred, colored
Changes since revision 1.39: +2 -2
lines
Add isapnp(4) man page.
Revision 1.39: download - view: text, markup, annotated - select for diffs
Fri Apr 11 05:26:25 1997 UTC (27 years, 8 months ago) by mikel
Branches: MAIN
Diff to: previous 1.38: preferred, colored
Changes since revision 1.38: +5 -4
lines
add md(4) page for memory disk pseudo-device
Revision 1.38: download - view: text, markup, annotated - select for diffs
Mon Feb 24 00:20:04 1997 UTC (27 years, 9 months ago) by jonathan
Branches: MAIN
Diff to: previous 1.37: preferred, colored
Changes since revision 1.37: +2 -2
lines
Make WD-7000 manpage.
Revision 1.37: download - view: text, markup, annotated - select for diffs
Mon Feb 24 00:18:48 1997 UTC (27 years, 9 months ago) by jonathan
Branches: MAIN
Diff to: previous 1.36: preferred, colored
Changes since revision 1.36: +6 -3
lines
Build isa, pci manpages.
Revision 1.36: download - view: text, markup, annotated - select for diffs
Sun Feb 23 22:20:48 1997 UTC (27 years, 9 months ago) by jonathan
Branches: MAIN
Diff to: previous 1.35: preferred, colored
Changes since revision 1.35: +7 -2
lines
* 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
Revision 1.35: download - view: text, markup, annotated - select for diffs
Tue Feb 18 01:01:48 1997 UTC (27 years, 9 months ago) by jonathan
Branches: MAIN
Diff to: previous 1.34: preferred, colored
Changes since revision 1.34: +2 -2
lines
Section 4 EISA summary manual page.
Revision 1.34: download - view: text, markup, annotated - select for diffs
Tue Feb 18 00:56:48 1997 UTC (27 years, 9 months ago) by jonathan
Branches: MAIN
Diff to: previous 1.33: preferred, colored
Changes since revision 1.33: +5 -4
lines
Move manpages for MI ahb, bha, ep, and uha from man4/man4.i36 to man4.
Add RCS ids.
Revision 1.33: download - view: text, markup, annotated - select for diffs
Mon Feb 17 21:49:02 1997 UTC (27 years, 9 months ago) by jonathan
Branches: MAIN
Diff to: previous 1.32: preferred, colored
Changes since revision 1.32: +2 -1
lines
Section 4 manual page for Matt Thomas' Digital PDQ (PCI fpa, EISA fea)
FDDI drivers. From Matt, without revision info.
Revision 1.32: download - view: text, markup, annotated - select for diffs
Wed Jan 15 05:54:39 1997 UTC (27 years, 11 months ago) by mikel
Branches: MAIN
Diff to: previous 1.31: preferred, colored
Changes since revision 1.31: +2 -2
lines
move ncr.4 from man4.i386 to MI man4
Revision 1.31: download - view: text, markup, annotated - select for diffs
Mon Dec 30 04:44:08 1996 UTC (27 years, 11 months ago) by mikel
Branches: MAIN
Diff to: previous 1.30: preferred, colored
Changes since revision 1.30: +3 -3
lines
Install tun(4); fixes PR misc/3068.
Revision 1.30: download - view: text, markup, annotated - select for diffs
Mon Oct 21 00:00:05 1996 UTC (28 years, 1 month ago) by perry
Branches: MAIN
Diff to: previous 1.29: preferred, colored
Changes since revision 1.29: +10 -7
lines
Add options(4), and re-jigger the MAN and SUBDIR lines in the file.
Revision 1.29: download - view: text, markup, annotated - select for diffs
Thu Oct 17 03:09:33 1996 UTC (28 years, 2 months ago) by perry
Branches: MAIN
Diff to: previous 1.28: preferred, colored
Changes since revision 1.28: +2 -2
lines
removed tahoe refs because we have no tahoe port
Revision 1.28: download - view: text, markup, annotated - select for diffs
Wed Oct 16 03:14:35 1996 UTC (28 years, 2 months ago) by explorer
Branches: MAIN
Diff to: previous 1.27: preferred, colored
Changes since revision 1.27: +2 -2
lines
Add st.4, edited by Jon Buller <jonb@metronet.com>
Revision 1.27: download - view: text, markup, annotated - select for diffs
Tue Aug 13 03:13:30 1996 UTC (28 years, 4 months ago) by explorer
Branches: MAIN
Diff to: previous 1.26: preferred, colored
Changes since revision 1.26: +2 -2
lines
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.
Revision 1.26: download - view: text, markup, annotated - select for diffs
Sun Aug 11 02:28:43 1996 UTC (28 years, 4 months ago) by jonathan
Branches: MAIN
Diff to: previous 1.25: preferred, colored
Changes since revision 1.25: +2 -2
lines
Create man4.pmax.
Note: Some manpages are for drivers shared with Alpha; should rewrite
accordingly and move to a better location.
Revision 1.25: download - view: text, markup, annotated - select for diffs
Sat Aug 10 21:26:08 1996 UTC (28 years, 4 months ago) by explorer
Branches: MAIN
Diff to: previous 1.24: preferred, colored
Changes since revision 1.24: +4 -4
lines
add somewhat simple man pages for ppp(4) and sl(4). Closes a few pr's and
makes the world a better place.
Revision 1.22.4.2: download - view: text, markup, annotated - select for diffs
Thu Jul 18 00:51:10 1996 UTC (28 years, 5 months ago) by jtc
Branches: netbsd-1-2
CVS tags: netbsd-1-2-RELEASE,
netbsd-1-2-PATCH001
Diff to: previous 1.22.4.1: preferred, colored; branchpoint 1.22: preferred, colored; next MAIN 1.23: preferred, colored
Changes since revision 1.22.4.1: +5 -5
lines
Pulled up from rev 1.24, adds ahc manpage
Revision 1.24: