Add the memrange bits to the loadable module.

MT5 after:	3 days
This commit is contained in:
Mark Murray 2004-09-28 07:26:00 +00:00
parent 89e3b380f9
commit 393202b77c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=135870

View File

@ -8,6 +8,12 @@ SRCS= memdev.c mem.c
.if ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "i386"
SRCS+= memutil.c
.endif
.if ${MACHINE_ARCH} == "i386"
SRCS+= i686_mem.c k6_mem.c
.endif
.if ${MACHINE_ARCH} == "amd64"
SRCS+= amd64_mem.c
.endif
SRCS+= bus_if.h device_if.h vnode_if.h
.include <bsd.kmod.mk>