summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ndiscvt/Makefile
diff options
context:
space:
mode:
authorwpaul <wpaul@FreeBSD.org>2005-04-24 20:21:22 +0000
committerwpaul <wpaul@FreeBSD.org>2005-04-24 20:21:22 +0000
commitb493dd59e2b39c6ee3f3016ffe21c427b8038eb8 (patch)
treeba1d66e7b03425d40e2969f60b5568a405137f90 /usr.sbin/ndiscvt/Makefile
parente669069b43c7e2eed5fff4775fd3c6c18283165d (diff)
downloadFreeBSD-src-b493dd59e2b39c6ee3f3016ffe21c427b8038eb8.zip
FreeBSD-src-b493dd59e2b39c6ee3f3016ffe21c427b8038eb8.tar.gz
Throw the switch on the new driver generation/loading mechanism. From
here on in, if_ndis.ko will be pre-built as a module, and can be built into a static kernel (though it's not part of GENERIC). Drivers are created using the new ndisgen(8) script, which uses ndiscvt(8) under the covers, along with a few other tools. The result is a driver module that can be kldloaded into the kernel. A driver with foo.inf and foo.sys files will be converted into foo_sys.ko (and foo_sys.o, for those who want/need to make static kernels). This module contains all of the necessary info from the .INF file and the driver binary image, converted into an ELF module. You can kldload this module (or add it to /boot/loader.conf) to have it loaded automatically. Any required firmware files can be bundled into the module as well (or converted/loaded separately). Also, add a workaround for a problem in NdisMSleep(). During system bootstrap (cold == 1), msleep() always returns 0 without actually sleeping. The Intel 2200BG driver uses NdisMSleep() to wait for the NIC's firmware to come to life, and fails to load if NdisMSleep() doesn't actually delay. As a workaround, if msleep() (and hence ndis_thsuspend()) returns 0, use a hard DELAY() to sleep instead). This is not really the right thing to do, but we can't really do much else. At the very least, this makes the Intel driver happy. There are probably other drivers that fail in this way during bootstrap. Unfortunately, the only workaround for those is to avoid pre-loading them and kldload them once the system is running instead.
Diffstat (limited to 'usr.sbin/ndiscvt/Makefile')
-rw-r--r--usr.sbin/ndiscvt/Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/usr.sbin/ndiscvt/Makefile b/usr.sbin/ndiscvt/Makefile
index 8004897..90ecebb 100644
--- a/usr.sbin/ndiscvt/Makefile
+++ b/usr.sbin/ndiscvt/Makefile
@@ -8,6 +8,7 @@ SRCS+= subr_pe.c
SRCS+= inf.c inf-token.l inf-parse.y y.tab.h
MAN= ndiscvt.8
+MAN+= ndisgen.8
WARNS?= 4
@@ -20,4 +21,10 @@ CFLAGS+=-I. -I${.CURDIR} -I${.CURDIR}/../../sys
CLEANFILES= y.output
+FILES= windrv_stub.c
+FILESNAME= windrv_stub.c
+FILESDIR= /usr/share/misc
+
+SCRIPTS= ndisgen.sh
+
.include <bsd.prog.mk>
OpenPOWER on IntegriCloud