mirror of
https://github.com/opnsense/src.git
synced 2026-04-05 01:15:30 -04:00
Changes since 1.25.6.0 are listed here. This list comes from the Release Notes for "Chelsio Unified Wire 3.14.0.4 for Linux" dated 2021-07-08. Fixes ----- BASE: - Wait 5ms before and after the i2c command that clears the mod_select. This fixes incorrect port module type read from i2c. Obtained from: Chelsio Communications MFC after: 1 week Sponsored by: Chelsio Communications
23 lines
446 B
Makefile
23 lines
446 B
Makefile
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
T4FW= ${SRCTOP}/sys/dev/cxgbe/firmware
|
|
.PATH: ${T4FW}
|
|
|
|
KMOD= t4fw_cfg
|
|
FIRMWS= ${KMOD}.txt:${KMOD}:1.0.0.0
|
|
|
|
# You can have additional configuration files in the ${T4FW} directory.
|
|
# t4fw_cfg_<name>.txt
|
|
CFG_FILES != cd ${T4FW} && echo ${KMOD}_*.txt
|
|
.for F in ${CFG_FILES}
|
|
.if exists(${F})
|
|
FIRMWS+= ${F}:${F:C/.txt//}:1.0.0.0
|
|
.endif
|
|
.endfor
|
|
|
|
T4FW_VER= 1.26.0.0
|
|
FIRMWS+= t4fw-${T4FW_VER}.bin:t4fw:${T4FW_VER}
|
|
|
|
.include <bsd.kmod.mk>
|