45d6fbaec2
The firmwares and the following changelog are from the "Chelsio Unified Wire v3.15.0.0 for Linux." Version : 1.26.2.0 Date : 09/24/2021 ==================== FIXES ----- BASE: - Added support for SFP+ RJ45 (0x1C). - Fixing backward compatibility issue with older drivers when multiple speeds are passed to firmware. OFLD: - Do not touch tp_plen_max if driver is supplying tp_plen_max. This fixes a connection reset issue in iscsi. ENHANCEMENTS ------------ BASE: - Firmware header modified to add firmware binary signature. MFC after: 1 month Sponsored by: Chelsio Communications
24 lines
446 B
Makefile
24 lines
446 B
Makefile
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
T5FW= ${SRCTOP}/sys/dev/cxgbe/firmware
|
|
.PATH: ${T5FW}
|
|
|
|
KMOD= t5fw_cfg
|
|
FIRMWS= ${KMOD}.txt:${KMOD}:1.0.0.0
|
|
|
|
# You can have additional configuration files in the ${T5FW} directory.
|
|
# t5fw_cfg_<name>.txt
|
|
CFG_FILES != cd ${T5FW} && echo ${KMOD}_*.txt
|
|
.for F in ${CFG_FILES}
|
|
.if exists(${F})
|
|
FIRMWS+= ${F}:${F:C/.txt//}:1.0.0.0
|
|
.endif
|
|
.endfor
|
|
|
|
T5FW_VER= 1.26.2.0
|
|
FIRMWS+= t5fw-${T5FW_VER}.bin:t5fw:${T5FW_VER}
|
|
|
|
.include <bsd.kmod.mk>
|