summaryrefslogtreecommitdiffstats
path: root/sys/modules
diff options
context:
space:
mode:
Diffstat (limited to 'sys/modules')
-rw-r--r--sys/modules/cxgbe/Makefile3
-rw-r--r--sys/modules/cxgbe/if_cc/Makefile11
-rw-r--r--sys/modules/cxgbe/if_ccv/Makefile11
-rw-r--r--sys/modules/cxgbe/t4_firmware/Makefile2
-rw-r--r--sys/modules/cxgbe/t5_firmware/Makefile2
-rw-r--r--sys/modules/cxgbe/t6_firmware/Makefile27
6 files changed, 54 insertions, 2 deletions
diff --git a/sys/modules/cxgbe/Makefile b/sys/modules/cxgbe/Makefile
index 30a40c7..30ba8c7 100644
--- a/sys/modules/cxgbe/Makefile
+++ b/sys/modules/cxgbe/Makefile
@@ -4,10 +4,13 @@
SUBDIR= if_cxgbe
SUBDIR+= if_cxl
+SUBDIR+= if_cc
SUBDIR+= if_cxgbev
SUBDIR+= if_cxlv
+SUBDIR+= if_ccv
SUBDIR+= t4_firmware
SUBDIR+= t5_firmware
+SUBDIR+= t6_firmware
SUBDIR+= ${_tom}
SUBDIR+= ${_iw_cxgbe}
diff --git a/sys/modules/cxgbe/if_cc/Makefile b/sys/modules/cxgbe/if_cc/Makefile
new file mode 100644
index 0000000..f81d174
--- /dev/null
+++ b/sys/modules/cxgbe/if_cc/Makefile
@@ -0,0 +1,11 @@
+#
+# $FreeBSD$
+#
+
+CXGBE= ${.CURDIR}/../../../dev/cxgbe
+.PATH: ${CXGBE}
+
+KMOD= if_cc
+SRCS= if_cc.c
+
+.include <bsd.kmod.mk>
diff --git a/sys/modules/cxgbe/if_ccv/Makefile b/sys/modules/cxgbe/if_ccv/Makefile
new file mode 100644
index 0000000..0fcc03c4b
--- /dev/null
+++ b/sys/modules/cxgbe/if_ccv/Makefile
@@ -0,0 +1,11 @@
+#
+# $FreeBSD$
+#
+
+CXGBE= ${.CURDIR}/../../../dev/cxgbe
+.PATH: ${CXGBE}
+
+KMOD= if_ccv
+SRCS= if_ccv.c
+
+.include <bsd.kmod.mk>
diff --git a/sys/modules/cxgbe/t4_firmware/Makefile b/sys/modules/cxgbe/t4_firmware/Makefile
index 8b5bb47..cd1af2d 100644
--- a/sys/modules/cxgbe/t4_firmware/Makefile
+++ b/sys/modules/cxgbe/t4_firmware/Makefile
@@ -17,7 +17,7 @@ FIRMWS+= ${F}:${F:C/.txt//}:1.0.0.0
.endif
.endfor
-T4FW_VER= 1.15.37.0
+T4FW_VER= 1.16.12.0
FIRMWS+= t4fw.fw:t4fw:${T4FW_VER}
CLEANFILES+= t4fw.fw
diff --git a/sys/modules/cxgbe/t5_firmware/Makefile b/sys/modules/cxgbe/t5_firmware/Makefile
index 4b1debb..1da0474 100644
--- a/sys/modules/cxgbe/t5_firmware/Makefile
+++ b/sys/modules/cxgbe/t5_firmware/Makefile
@@ -17,7 +17,7 @@ FIRMWS+= ${F}:${F:C/.txt//}:1.0.0.0
.endif
.endfor
-T5FW_VER= 1.15.37.0
+T5FW_VER= 1.16.12.0
FIRMWS+= t5fw.fw:t5fw:${T5FW_VER}
CLEANFILES+= t5fw.fw
diff --git a/sys/modules/cxgbe/t6_firmware/Makefile b/sys/modules/cxgbe/t6_firmware/Makefile
new file mode 100644
index 0000000..33d03fb
--- /dev/null
+++ b/sys/modules/cxgbe/t6_firmware/Makefile
@@ -0,0 +1,27 @@
+#
+# $FreeBSD$
+#
+
+T6FW= ${.CURDIR}/../../../dev/cxgbe/firmware
+.PATH: ${T6FW}
+
+KMOD= t6fw_cfg
+FIRMWS= ${KMOD}.txt:${KMOD}:1.0.0.0
+
+# You can have additional configuration files in the ${T6FW} directory.
+# t6fw_cfg_<name>.txt
+CFG_FILES != cd ${T6FW} && echo ${KMOD}_*.txt
+.for F in ${CFG_FILES}
+.if exists(${F})
+FIRMWS+= ${F}:${F:C/.txt//}:1.0.0.0
+.endif
+.endfor
+
+T6FW_VER= 1.16.12.0
+FIRMWS+= t6fw.fw:t6fw:${T6FW_VER}
+CLEANFILES+= t6fw.fw
+
+t6fw.fw: t6fw-${T6FW_VER}.bin.uu
+ uudecode -o ${.TARGET} ${.ALLSRC}
+
+.include <bsd.kmod.mk>
OpenPOWER on IntegriCloud