diff options
author | yar <yar@FreeBSD.org> | 2007-03-26 04:39:18 +0000 |
---|---|---|
committer | yar <yar@FreeBSD.org> | 2007-03-26 04:39:18 +0000 |
commit | cee18f9ca839459e3d6c7f77d7db08ae9ab8016d (patch) | |
tree | 8dd31b5dd3495e12e5f83dbc0f3c9f43c7638dee /sys/modules/if_edsc | |
parent | ec89d3911e8cb32331c03c0c913e18254361beb8 (diff) | |
download | FreeBSD-src-cee18f9ca839459e3d6c7f77d7db08ae9ab8016d.zip FreeBSD-src-cee18f9ca839459e3d6c7f77d7db08ae9ab8016d.tar.gz |
Introduce a new toy interface, edsc(4). It's a discard interface
imitating an Ethernet device, so vlan(4) and if_bridge(4) can be
attached to it for testing and benchmarking purposes. Its source
can be an introduction to the anatomy of a network interface driver
due to its simplicity as well as to a bunch of comments in it.
Diffstat (limited to 'sys/modules/if_edsc')
-rw-r--r-- | sys/modules/if_edsc/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sys/modules/if_edsc/Makefile b/sys/modules/if_edsc/Makefile new file mode 100644 index 0000000..af2704b --- /dev/null +++ b/sys/modules/if_edsc/Makefile @@ -0,0 +1,8 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../net + +KMOD= if_edsc +SRCS= if_edsc.c + +.include <bsd.kmod.mk> |