svn commit: r357793 - in head/sys: conf dev/cxgbe/firmware modules/cxgbe/t4_firmware modules/cxgbe/t5_firmware modules/cxgbe/t6_firmware
Navdeep Parhar
np at FreeBSD.org
Wed Feb 12 02:55:08 UTC 2020
Author: np
Date: Wed Feb 12 02:55:06 2020
New Revision: 357793
URL: https://svnweb.freebsd.org/changeset/base/357793
Log:
cxgbe(4): Update T4/5/6 firmwares to 1.24.12.0.
Obtained from: Chelsio Communications
MFC after: 1 month
Sponsored by: Chelsio Communications
Added:
head/sys/dev/cxgbe/firmware/t4fw-1.24.12.0.bin (contents, props changed)
head/sys/dev/cxgbe/firmware/t5fw-1.24.12.0.bin (contents, props changed)
head/sys/dev/cxgbe/firmware/t6fw-1.24.12.0.bin (contents, props changed)
Deleted:
head/sys/dev/cxgbe/firmware/t4fw-1.24.11.0.bin
head/sys/dev/cxgbe/firmware/t5fw-1.24.11.0.bin
head/sys/dev/cxgbe/firmware/t6fw-1.24.11.0.bin
Modified:
head/sys/conf/files
head/sys/dev/cxgbe/firmware/t4fw_interface.h
head/sys/modules/cxgbe/t4_firmware/Makefile
head/sys/modules/cxgbe/t5_firmware/Makefile
head/sys/modules/cxgbe/t6_firmware/Makefile
Modified: head/sys/conf/files
==============================================================================
--- head/sys/conf/files Wed Feb 12 02:17:20 2020 (r357792)
+++ head/sys/conf/files Wed Feb 12 02:55:06 2020 (r357793)
@@ -1473,7 +1473,7 @@ t4fw.fwo optional cxgbe \
no-implicit-rule \
clean "t4fw.fwo"
t4fw.fw optional cxgbe \
- dependency "$S/dev/cxgbe/firmware/t4fw-1.24.11.0.bin" \
+ dependency "$S/dev/cxgbe/firmware/t4fw-1.24.12.0.bin" \
compile-with "${CP} ${.ALLSRC} ${.TARGET}" \
no-obj no-implicit-rule \
clean "t4fw.fw"
@@ -1507,7 +1507,7 @@ t5fw.fwo optional cxgbe \
no-implicit-rule \
clean "t5fw.fwo"
t5fw.fw optional cxgbe \
- dependency "$S/dev/cxgbe/firmware/t5fw-1.24.11.0.bin" \
+ dependency "$S/dev/cxgbe/firmware/t5fw-1.24.12.0.bin" \
compile-with "${CP} ${.ALLSRC} ${.TARGET}" \
no-obj no-implicit-rule \
clean "t5fw.fw"
@@ -1541,7 +1541,7 @@ t6fw.fwo optional cxgbe \
no-implicit-rule \
clean "t6fw.fwo"
t6fw.fw optional cxgbe \
- dependency "$S/dev/cxgbe/firmware/t6fw-1.24.11.0.bin" \
+ dependency "$S/dev/cxgbe/firmware/t6fw-1.24.12.0.bin" \
compile-with "${CP} ${.ALLSRC} ${.TARGET}" \
no-obj no-implicit-rule \
clean "t6fw.fw"
Added: head/sys/dev/cxgbe/firmware/t4fw-1.24.12.0.bin
==============================================================================
Binary file. No diff available.
Modified: head/sys/dev/cxgbe/firmware/t4fw_interface.h
==============================================================================
--- head/sys/dev/cxgbe/firmware/t4fw_interface.h Wed Feb 12 02:17:20 2020 (r357792)
+++ head/sys/dev/cxgbe/firmware/t4fw_interface.h Wed Feb 12 02:55:06 2020 (r357793)
@@ -9940,17 +9940,17 @@ enum fw_hdr_chip {
enum {
T4FW_VERSION_MAJOR = 1,
T4FW_VERSION_MINOR = 24,
- T4FW_VERSION_MICRO = 11,
+ T4FW_VERSION_MICRO = 12,
T4FW_VERSION_BUILD = 0,
T5FW_VERSION_MAJOR = 1,
T5FW_VERSION_MINOR = 24,
- T5FW_VERSION_MICRO = 11,
+ T5FW_VERSION_MICRO = 12,
T5FW_VERSION_BUILD = 0,
T6FW_VERSION_MAJOR = 1,
T6FW_VERSION_MINOR = 24,
- T6FW_VERSION_MICRO = 11,
+ T6FW_VERSION_MICRO = 12,
T6FW_VERSION_BUILD = 0,
};
Added: head/sys/dev/cxgbe/firmware/t5fw-1.24.12.0.bin
==============================================================================
Binary file. No diff available.
Added: head/sys/dev/cxgbe/firmware/t6fw-1.24.12.0.bin
==============================================================================
Binary file. No diff available.
Modified: head/sys/modules/cxgbe/t4_firmware/Makefile
==============================================================================
--- head/sys/modules/cxgbe/t4_firmware/Makefile Wed Feb 12 02:17:20 2020 (r357792)
+++ head/sys/modules/cxgbe/t4_firmware/Makefile Wed Feb 12 02:55:06 2020 (r357793)
@@ -17,7 +17,7 @@ FIRMWS+= ${F}:${F:C/.txt//}:1.0.0.0
.endif
.endfor
-T4FW_VER= 1.24.11.0
+T4FW_VER= 1.24.12.0
FIRMWS+= t4fw-${T4FW_VER}.bin:t4fw:${T4FW_VER}
.include <bsd.kmod.mk>
Modified: head/sys/modules/cxgbe/t5_firmware/Makefile
==============================================================================
--- head/sys/modules/cxgbe/t5_firmware/Makefile Wed Feb 12 02:17:20 2020 (r357792)
+++ head/sys/modules/cxgbe/t5_firmware/Makefile Wed Feb 12 02:55:06 2020 (r357793)
@@ -17,7 +17,7 @@ FIRMWS+= ${F}:${F:C/.txt//}:1.0.0.0
.endif
.endfor
-T5FW_VER= 1.24.11.0
+T5FW_VER= 1.24.12.0
FIRMWS+= t5fw-${T5FW_VER}.bin:t5fw:${T5FW_VER}
.include <bsd.kmod.mk>
Modified: head/sys/modules/cxgbe/t6_firmware/Makefile
==============================================================================
--- head/sys/modules/cxgbe/t6_firmware/Makefile Wed Feb 12 02:17:20 2020 (r357792)
+++ head/sys/modules/cxgbe/t6_firmware/Makefile Wed Feb 12 02:55:06 2020 (r357793)
@@ -17,7 +17,7 @@ FIRMWS+= ${F}:${F:C/.txt//}:1.0.0.0
.endif
.endfor
-T6FW_VER= 1.24.11.0
+T6FW_VER= 1.24.12.0
FIRMWS+= t6fw-${T6FW_VER}.bin:t6fw:${T6FW_VER}
.include <bsd.kmod.mk>
More information about the svn-src-all
mailing list