]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/modules/cxgbe/t5_firmware/Makefile
cxgbe(4): Update T4/5/6 firmwares to 1.25.0.0.
[FreeBSD/FreeBSD.git] / sys / modules / cxgbe / t5_firmware / Makefile
1 #
2 # $FreeBSD$
3 #
4
5 T5FW=   ${SRCTOP}/sys/dev/cxgbe/firmware
6 .PATH: ${T5FW}
7
8 KMOD=   t5fw_cfg
9 FIRMWS= ${KMOD}.txt:${KMOD}:1.0.0.0
10
11 # You can have additional configuration files in the ${T5FW} directory.
12 # t5fw_cfg_<name>.txt
13 CFG_FILES != cd ${T5FW} && echo ${KMOD}_*.txt
14 .for F in ${CFG_FILES}
15 .if exists(${F})
16 FIRMWS+=        ${F}:${F:C/.txt//}:1.0.0.0
17 .endif
18 .endfor
19
20 T5FW_VER=       1.25.0.0
21 FIRMWS+=        t5fw-${T5FW_VER}.bin:t5fw:${T5FW_VER}
22
23 .include <bsd.kmod.mk>