summaryrefslogtreecommitdiff
path: root/sys/dev/Makefile
AgeCommit message (Collapse)Author
2003-12-10The file system snapshot pseudo driver.hannken
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>
2003-10-10Include Vinum.grog
2003-01-13Add dmover to the list of SUBDIRs.briggs
2002-12-04New Feature: add pseudo device for IEEE 1394 isochronous stream andhaya
isochronous reception routine for IEEE 1394 OHCI (fwohci). The transmission part is under construction. The minimum configuration options for this feature are: # IEEE 1394 (i.LINK) fwohci* at pci? dev ? function ? pseudo-device fwiso 1
2002-11-26Remove KDIR=, since SYS_INCLUDE=symlinks and KDIR are not supported any more.lukem
2002-10-14Moved MI APM definitions into dev/apm.takemura
2002-10-04Add cgdvar.h to the list of files installed.elric
2002-06-28This is the "kttcp" network throughput testing pseudo-device. Fromthorpej
the block comment at the top of the file: This module provides kernel support for testing network throughput from the perspective of the kernel. It is similar in spirit to the classic ttcp network benchmark program, the main difference being that with kttcp, the kernel is the source and sink of the data. Testing like this is useful for a few reasons: 1. This allows us to know what kind of performance we can expect from network applications that run in the kernel space, such as the NFS server or the NFS client. These applications don't have to move the data to/from userspace, and so benchmark programs which run in userspace don't give us an accurate model. 2. Since data received is just thrown away, the receiver is very fast. This can provide better exercise for the sender at the other end. 3. Since the NetBSD kernel currently uses a run-to-completion scheduling model, kttcp provides a benchmark model where preemption of the benchmark program is not an issue. There is a companion "kttcp" user program which uses the kttcp pseudo-device. Largely written by Frank van der Linden, with some modifications from me.
2001-12-04Add ir/ to SUBDIR.augustss
2001-10-04Need to recurse into the raidframe subdir too.oster
2001-04-11Put back all header files defining ioctlsjdolecek
2001-04-11Only install headers which are actually used by our userland. Thisjdolecek
saves about 2.2MB under /usr/include/dev/. Discussed on tech-kern@ recently. I HOPE to get the list right. The headers I left in are ones used for MI tools and those whose usage I discovered by grep over tree sources. Feel free to put needed includes back in if you encounter anything which should not be removed from lists.
2001-02-23I forgot to move Makefile.uch
2000-11-08Recurse into i2o/.ad
2000-06-16No real change. Alphabetize the list of directories.matt
1998-07-28Add `sbus' to SUBDIRS.pk
1998-07-12Add USB.augustss
1998-06-12Rework the way kernel include files are installed. In the new method,cgd
as with user-land programs, include files are installed by each directory in the tree that has includes to install. (This allows more flexibility as to what gets installed, makes 'partial installs' easier, and gives us more options as to which machines' includes get installed at any given time.) The old SYS_INCLUDES={symlinks,copies} behaviours are _both_ still supported, though at least one bug in the 'symlinks' case is fixed by this change. Include files can't be build before installation, so directories that have includes as targets (e.g. dev/pci) have to move those targets into a different Makefile.