1T4FW= ${SRCTOP}/sys/dev/cxgbe/firmware 2.PATH: ${T4FW} 3 4KMOD= t4fw_cfg 5FIRMWS= ${KMOD}.txt:${KMOD}:1.0.0.0 6 7# You can have additional configuration files in the ${T4FW} directory. 8# t4fw_cfg_<name>.txt 9CFG_FILES != cd ${T4FW} && echo ${KMOD}_*.txt 10.for F in ${CFG_FILES} 11.if exists(${F}) 12FIRMWS+= ${F}:${F:C/.txt//}:1.0.0.0 13.endif 14.endfor 15 16T4FW_VER= 1.27.5.0 17FIRMWS+= t4fw-${T4FW_VER}.bin:t4fw:${T4FW_VER} 18 19.include <bsd.kmod.mk> 20