diff options
author | obrien <obrien@FreeBSD.org> | 1999-09-20 06:11:48 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1999-09-20 06:11:48 +0000 |
commit | 0b061e57c0ac385183b23eef6214ba486b782785 (patch) | |
tree | 25cfc7f3590028918f4108bcd0ef251d6aa49df7 /sys/modules/tl | |
parent | d65af66bfe8923c6345f7415d0086674f3b7d590 (diff) | |
download | FreeBSD-src-0b061e57c0ac385183b23eef6214ba486b782785.zip FreeBSD-src-0b061e57c0ac385183b23eef6214ba486b782785.tar.gz |
Change the name of the installed KLM to contain a leading "if_".
Except for miibus which is now installed as miibus.ko.
Discussed by: msmith, peter, and wpaul
Diffstat (limited to 'sys/modules/tl')
-rw-r--r-- | sys/modules/tl/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/modules/tl/Makefile b/sys/modules/tl/Makefile index e1f0339..2ae6f89 100644 --- a/sys/modules/tl/Makefile +++ b/sys/modules/tl/Makefile @@ -2,12 +2,13 @@ S = ${.CURDIR}/../.. .PATH: $S/pci -KMOD = tl +KMOD = if_tl SRCS = if_tl.c tl.h bpf.h opt_bdg.h device_if.h bus_if.h pci_if.h SRCS += miibus_if.h CLEANFILES += tl.h bpf.h opt_bdg.h device_if.h bus_if.h pci_if.h CLEANFILEs += miibus_if.h CFLAGS += ${DEBUG_FLAGS} +KMODDEPS = miibus tl.h: echo "#define NTL 1" > tl.h |