]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/modules/cxgbe/t6_firmware/Makefile
MFV 364468:
[FreeBSD/FreeBSD.git] / sys / modules / cxgbe / t6_firmware / Makefile
1 #
2 # $FreeBSD$
3 #
4
5 T6FW=   ${SRCTOP}/sys/dev/cxgbe/firmware
6 .PATH: ${T6FW}
7
8 KMOD=   t6fw_cfg
9 FIRMWS= ${KMOD}.txt:${KMOD}:1.0.0.0
10
11 # You can have additional configuration files in the ${T6FW} directory.
12 # t6fw_cfg_<name>.txt
13 CFG_FILES != cd ${T6FW} && 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 T6FW_VER=       1.24.12.0
21 FIRMWS+=        t6fw-${T6FW_VER}.bin:t6fw:${T6FW_VER}
22
23 .include <bsd.kmod.mk>