aboutsummaryrefslogtreecommitdiff
path: root/sys/modules
diff options
context:
space:
mode:
authorScott Long <scottl@FreeBSD.org>2007-12-15 00:56:17 +0000
committerScott Long <scottl@FreeBSD.org>2007-12-15 00:56:17 +0000
commitb063a4227008818a995a81ecf47d1f349c2cd459 (patch)
treee14a6c2cd365f95b2d4928eafc2c1668058c36ef /sys/modules
parentdd3456c0717d12aea7ce2b3b9d3d61812b4a96cd (diff)
Notes
Diffstat (limited to 'sys/modules')
-rw-r--r--sys/modules/Makefile3
-rw-r--r--sys/modules/hptrr/Makefile14
2 files changed, 17 insertions, 0 deletions
diff --git a/sys/modules/Makefile b/sys/modules/Makefile
index 0d1ec1947bb1..a61698c82133 100644
--- a/sys/modules/Makefile
+++ b/sys/modules/Makefile
@@ -97,6 +97,7 @@ SUBDIR= ${_3dfx} \
hme \
${_hptiop} \
${_hptmv} \
+ ${_hptrr} \
hwpmc \
${_i2c} \
${_ibcs2} \
@@ -449,6 +450,7 @@ _dpt= dpt
_ex= ex
_hptiop= hptiop
_hptmv= hptmv
+_hptrr= hptrr
_ichwd= ichwd
_ida= ida
# Disabled due to non-MPSAFEty in 7.0
@@ -510,6 +512,7 @@ _exca= exca
_ext2fs= ext2fs
_hptiop= hptiop
_hptmv= hptmv
+_hptrr= hptrr
_i2c= i2c
_ichwd= ichwd
_ida= ida
diff --git a/sys/modules/hptrr/Makefile b/sys/modules/hptrr/Makefile
new file mode 100644
index 000000000000..038c5a45f464
--- /dev/null
+++ b/sys/modules/hptrr/Makefile
@@ -0,0 +1,14 @@
+# $Id: Makefile.def,v 1.18 2007/03/22 11:20:15 gmm Exp $
+# $FreeBSD$
+
+HPTRR= ${.CURDIR}/../../dev/hptrr
+.PATH: ${HPTRR}
+KMOD = hptrr
+SRCS = opt_scsi.h opt_cam.h bus_if.h device_if.h pci_if.h os_bsd.h
+SRCS+= hptrr_os_bsd.c hptrr_osm_bsd.c hptrr_config.c
+OBJS = hptrr_lib.o
+
+hptrr_lib.o:
+ uudecode -p < ${HPTRR}/$(MACHINE_ARCH)-elf.hptrr_lib.o.uu > hptrr_lib.o
+
+.include <bsd.kmod.mk>