svn commit: r293011 - in head/sys/modules: . rtwnfw rtwnfw/rtwnrtl8192cU rtwnfw/rtwnrtl8192cUB
Adrian Chadd
adrian at FreeBSD.org
Thu Dec 31 22:33:34 UTC 2015
Author: adrian
Date: Thu Dec 31 22:33:32 2015
New Revision: 293011
URL: https://svnweb.freebsd.org/changeset/base/293011
Log:
[rtwn] Add rtwn firmware and driver module.
Submitted by: kevlo
Added:
head/sys/modules/rtwnfw/
head/sys/modules/rtwnfw/Makefile (contents, props changed)
head/sys/modules/rtwnfw/Makefile.inc (contents, props changed)
head/sys/modules/rtwnfw/rtwnrtl8192cU/
head/sys/modules/rtwnfw/rtwnrtl8192cU/Makefile (contents, props changed)
head/sys/modules/rtwnfw/rtwnrtl8192cUB/
head/sys/modules/rtwnfw/rtwnrtl8192cUB/Makefile (contents, props changed)
Modified:
head/sys/modules/Makefile
Modified: head/sys/modules/Makefile
==============================================================================
--- head/sys/modules/Makefile Thu Dec 31 22:32:36 2015 (r293010)
+++ head/sys/modules/Makefile Thu Dec 31 22:33:32 2015 (r293011)
@@ -311,6 +311,8 @@ SUBDIR= \
re \
reiserfs \
rl \
+ rtwn \
+ rtwnfw \
${_s3} \
${_safe} \
${_sbni} \
Added: head/sys/modules/rtwnfw/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/sys/modules/rtwnfw/Makefile Thu Dec 31 22:33:32 2015 (r293011)
@@ -0,0 +1,5 @@
+# $FreeBSD$
+
+SUBDIR= rtwnrtl8192cU rtwnrtl8192cUB
+
+.include <bsd.subdir.mk>
Added: head/sys/modules/rtwnfw/Makefile.inc
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/sys/modules/rtwnfw/Makefile.inc Thu Dec 31 22:33:32 2015 (r293011)
@@ -0,0 +1,15 @@
+# $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}:111
+
+FIRMWARE_LICENSE= realtek
+
+${_FIRM}: ${.CURDIR}/../../../contrib/dev/rtwn/${_FIRM}.uu
+ uudecode -p $? > ${.TARGET}
Added: head/sys/modules/rtwnfw/rtwnrtl8192cU/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/sys/modules/rtwnfw/rtwnrtl8192cU/Makefile Thu Dec 31 22:33:32 2015 (r293011)
@@ -0,0 +1,6 @@
+# $FreeBSD$
+
+KMOD= rtwn-rtl8192cfwU
+IMG= rtwn-rtl8192cfwU
+
+.include <bsd.kmod.mk>
Added: head/sys/modules/rtwnfw/rtwnrtl8192cUB/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/sys/modules/rtwnfw/rtwnrtl8192cUB/Makefile Thu Dec 31 22:33:32 2015 (r293011)
@@ -0,0 +1,6 @@
+# $FreeBSD$
+
+KMOD= rtwn-rtl8192cfwU_B
+IMG= rtwn-rtl8192cfwU_B
+
+.include <bsd.kmod.mk>
More information about the svn-src-head
mailing list