From owner-svn-src-all@freebsd.org Thu Dec 31 22:33:34 2015 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A7610A57984; Thu, 31 Dec 2015 22:33:34 +0000 (UTC) (envelope-from adrian@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6760A1A76; Thu, 31 Dec 2015 22:33:34 +0000 (UTC) (envelope-from adrian@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tBVMXX7O075904; Thu, 31 Dec 2015 22:33:33 GMT (envelope-from adrian@FreeBSD.org) Received: (from adrian@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tBVMXXGa075898; Thu, 31 Dec 2015 22:33:33 GMT (envelope-from adrian@FreeBSD.org) Message-Id: <201512312233.tBVMXXGa075898@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adrian set sender to adrian@FreeBSD.org using -f From: Adrian Chadd Date: Thu, 31 Dec 2015 22:33:33 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r293011 - in head/sys/modules: . rtwnfw rtwnfw/rtwnrtl8192cU rtwnfw/rtwnrtl8192cUB X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Dec 2015 22:33:34 -0000 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 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 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