diff options
author | imp <imp@FreeBSD.org> | 2002-08-03 00:21:29 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2002-08-03 00:21:29 +0000 |
commit | 3545d79431025fac9992df9aacac0fc061e6c811 (patch) | |
tree | a00c158aa92003fe9410230d5518dbebdde12234 /sys/modules | |
parent | 34834ad90e46cbee2d5414394e9b9481fef4ca22 (diff) | |
download | FreeBSD-src-3545d79431025fac9992df9aacac0fc061e6c811.zip FreeBSD-src-3545d79431025fac9992df9aacac0fc061e6c811.tar.gz |
We now have opt_wi.h, so go ahead and add it. Default it to 1.
Diffstat (limited to 'sys/modules')
-rw-r--r-- | sys/modules/wi/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/modules/wi/Makefile b/sys/modules/wi/Makefile index e031b34..4dbae64 100644 --- a/sys/modules/wi/Makefile +++ b/sys/modules/wi/Makefile @@ -3,7 +3,10 @@ .PATH: ${.CURDIR}/../../dev/wi KMOD= if_wi -SRCS= if_wi.c if_wi_pccard.c if_wi_pci.c wi_hostap.c \ +SRCS= opt_wi.h if_wi.c if_wi_pccard.c if_wi_pci.c wi_hostap.c \ card_if.h device_if.h bus_if.h pci_if.h +opt_wi.h: + echo "#define WI_SYMBOL_FIRMWARE 1" > ${.TARGET} + .include <bsd.kmod.mk> |