summaryrefslogtreecommitdiffstats
path: root/sys/modules/cxgbe/t5_firmware/Makefile
blob: 6637b222f72d835dc230095ee5b14a7dd9bd44e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#
# $FreeBSD$
#

T5FW = ${.CURDIR}/../../../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.8.22.0
FIRMWS += t5fw.fw:t5fw:${T5FW_VER}
CLEANFILES += t5fw.fw

t5fw.fw: t5fw-${T5FW_VER}.bin.uu
	uudecode -o ${.TARGET} ${.ALLSRC}

.include <bsd.kmod.mk>
OpenPOWER on IntegriCloud