mirror of
https://github.com/opnsense/src.git
synced 2026-06-04 06:15:33 -04:00
Changes since 1.26.6.0 are listed here. This list comes from the Release Notes for "Chelsio Unified Wire 3.17.0.0 for Linux" dated 2022-07-29. Fixes ----- BASE: - Enabled all MA parity interrupt bits. - Use config file value to override number of rx channel. nrxch=1 was not handled in the firmware. - Replaced read only registers with new registers EDC_H_BIST_USER_WDATA0, EDC_H_BIST_USER_WDATA1 and EDC_H_BIST_CMD_LEN to dump the uP memory parity error status registers. - 10G simplex module support enabled. Obtained from: Chelsio Communications MFC after: 1 month Sponsored by: Chelsio Communications
23 lines
446 B
Makefile
23 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.27.0.0
|
|
FIRMWS+= t5fw-${T5FW_VER}.bin:t5fw:${T5FW_VER}
|
|
|
|
.include <bsd.kmod.mk>
|