Firmware module for the upcoming rsu(4) driver.

This commit is contained in:
Rui Paulo 2013-07-29 06:55:28 +00:00
parent 76e51bbc16
commit 86d4bc62b8
3 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,5 @@
# $FreeBSD$
SUBDIR= rsurtl8712fw
.include <bsd.subdir.mk>

View File

@ -0,0 +1,17 @@
# $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}:120
FIRMWARE_LICENSE= realtek
#${_FIRM}: ${.CURDIR}/../../../../contrib/dev/rsu/${_FIRM}.uu
# uudecode -p $? > ${.TARGET}
${_FIRM}: ${.CURDIR}/${_FIRM}.uu
uudecode -p $? > ${.TARGET}

View File

@ -0,0 +1,6 @@
# $FreeBSD$
KMOD= rsu-rtl8712fw
IMG= rsu-rtl8712fw
.include <bsd.kmod.mk>