Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

#	$FreeBSD$

FW_VERSION=3.1
ALL=	ipw2200-bss.fw.uu ipw2200-ibss.fw.uu ipw2200-sniffer.fw.uu

all:	${ALL}

ipw2200-bss.fw.uu: ipw2200-bss.fw LICENSE
	(cat LICENSE; \
	 echo '#define IWI_FW_VERSION' ${FW_VERSION}; \
	 uuencode ipw2200-bss.fw ipw2200-bss.fw) > ${.TARGET}

ipw2200-ibss.fw.uu: ipw2200-ibss.fw LICENSE
	(cat LICENSE; \
	 echo '#define IWI_FW_VERSION ' ${FW_VERSION}; \
	 uuencode ipw2200-ibss.fw ipw2200-ibss.fw) > ${.TARGET}

ipw2200-sniffer.fw.uu: ipw2200-sniffer.fw LICENSE
	(cat LICENSE; \
	 echo '#define IWI_FW_VERSION ' ${FW_VERSION}; \
	 uuencode ipw2200-sniffer.fw ipw2200-sniffer.fw) > ${.TARGET}

clean:
	rm -f ${ALL}