f97bf23fd9
* iwnfw has now been split into individual modules so autoloading of firmware module(s) does work again. * Changes have been made to RUN -> AUTH transition, this should fix the issue reported by Glen and others. * Brandon reported issues in iwn_cmd() with large commands, those have been fixed to. * DEAUTH is now handled correctly. Submitted by: Bernhard Schmidt <bschmidt at techwires.net>
14 lines
306 B
Makefile
14 lines
306 B
Makefile
# $FreeBSD$
|
|
#
|
|
# Common rules for building firmware. Note this gets auto-included
|
|
# by the subdir Makefile's as a consequence of included bsd.kmod.mk.
|
|
|
|
_FIRM= ${IMG}.fw
|
|
|
|
CLEANFILES+= ${_FIRM}
|
|
|
|
FIRMWS= ${_FIRM}:${KMOD}
|
|
|
|
${_FIRM}: ${.CURDIR}/../../../contrib/dev/iwn/${_FIRM}.uu
|
|
uudecode -p $? > ${.TARGET}
|