aboutsummaryrefslogtreecommitdiff
path: root/sys/modules
diff options
context:
space:
mode:
authorJoerg Pulz <Joerg.Pulz@frm2.tum.de>2023-10-27 14:02:07 +0000
committerAlexander Motin <mav@FreeBSD.org>2024-01-19 16:56:17 +0000
commit4f30677080c36bb36d5096cf275347baffd2a2f3 (patch)
tree729c7b30ad9ebe914a6eb8d2604f08af37c1673c /sys/modules
parent16f4d8fc14b6560f8d4744efef60932011cfcee7 (diff)
Diffstat (limited to 'sys/modules')
-rw-r--r--sys/modules/ispfw/Makefile3
-rw-r--r--sys/modules/ispfw/isp_2600/Makefile35
-rw-r--r--sys/modules/ispfw/isp_2700/Makefile35
-rw-r--r--sys/modules/ispfw/isp_2800/Makefile35
4 files changed, 108 insertions, 0 deletions
diff --git a/sys/modules/ispfw/Makefile b/sys/modules/ispfw/Makefile
index 8f0634a2a638..588051695d69 100644
--- a/sys/modules/ispfw/Makefile
+++ b/sys/modules/ispfw/Makefile
@@ -28,5 +28,8 @@
SUBDIR = ispfw
SUBDIR += isp_2400
SUBDIR += isp_2500
+SUBDIR += isp_2600
+SUBDIR += isp_2700
+SUBDIR += isp_2800
.include <bsd.subdir.mk>
diff --git a/sys/modules/ispfw/isp_2600/Makefile b/sys/modules/ispfw/isp_2600/Makefile
new file mode 100644
index 000000000000..88a151fa3732
--- /dev/null
+++ b/sys/modules/ispfw/isp_2600/Makefile
@@ -0,0 +1,35 @@
+#-
+# Copyright (c) 2009 by Matthew Jacob
+# All rights reserved.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions
+# are met:
+# 1. Redistributions of source code must retain the above copyright
+# notice immediately at the beginning of the file, without modification,
+# this list of conditions, and the following disclaimer.
+# 2. The name of the author may not be used to endorse or promote products
+# derived from this software without specific prior written permission.
+#
+# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
+# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
+# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+# SUCH DAMAGE.
+#
+
+
+.PATH: ${SRCTOP}/sys/dev/ispfw
+
+KMOD= isp_2600
+SRCS= ispfw.c
+
+CFLAGS += -DISP_2600 -DMODULE_NAME=\"${KMOD}\"
+
+.include <bsd.kmod.mk>
diff --git a/sys/modules/ispfw/isp_2700/Makefile b/sys/modules/ispfw/isp_2700/Makefile
new file mode 100644
index 000000000000..c0cc2fa41ccd
--- /dev/null
+++ b/sys/modules/ispfw/isp_2700/Makefile
@@ -0,0 +1,35 @@
+#-
+# Copyright (c) 2009 by Matthew Jacob
+# All rights reserved.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions
+# are met:
+# 1. Redistributions of source code must retain the above copyright
+# notice immediately at the beginning of the file, without modification,
+# this list of conditions, and the following disclaimer.
+# 2. The name of the author may not be used to endorse or promote products
+# derived from this software without specific prior written permission.
+#
+# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
+# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
+# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+# SUCH DAMAGE.
+#
+
+
+.PATH: ${SRCTOP}/sys/dev/ispfw
+
+KMOD= isp_2700
+SRCS= ispfw.c
+
+CFLAGS += -DISP_2700 -DMODULE_NAME=\"${KMOD}\"
+
+.include <bsd.kmod.mk>
diff --git a/sys/modules/ispfw/isp_2800/Makefile b/sys/modules/ispfw/isp_2800/Makefile
new file mode 100644
index 000000000000..77164ca065c1
--- /dev/null
+++ b/sys/modules/ispfw/isp_2800/Makefile
@@ -0,0 +1,35 @@
+#-
+# Copyright (c) 2009 by Matthew Jacob
+# All rights reserved.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions
+# are met:
+# 1. Redistributions of source code must retain the above copyright
+# notice immediately at the beginning of the file, without modification,
+# this list of conditions, and the following disclaimer.
+# 2. The name of the author may not be used to endorse or promote products
+# derived from this software without specific prior written permission.
+#
+# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
+# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
+# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+# SUCH DAMAGE.
+#
+
+
+.PATH: ${SRCTOP}/sys/dev/ispfw
+
+KMOD= isp_2800
+SRCS= ispfw.c
+
+CFLAGS += -DISP_2800 -DMODULE_NAME=\"${KMOD}\"
+
+.include <bsd.kmod.mk>