From owner-svn-src-head@freebsd.org Sat Dec 26 19:14:26 2015 Return-Path: Delivered-To: svn-src-head@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 0FD2CA52890; Sat, 26 Dec 2015 19:14:26 +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 C696219E7; Sat, 26 Dec 2015 19:14:25 +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 tBQJEOUg036856; Sat, 26 Dec 2015 19:14:24 GMT (envelope-from adrian@FreeBSD.org) Received: (from adrian@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tBQJEOLP036854; Sat, 26 Dec 2015 19:14:24 GMT (envelope-from adrian@FreeBSD.org) Message-Id: <201512261914.tBQJEOLP036854@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adrian set sender to adrian@FreeBSD.org using -f From: Adrian Chadd Date: Sat, 26 Dec 2015 19:14:24 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r292756 - in head/sys/modules/usb: rsufw urtwnfw X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Dec 2015 19:14:26 -0000 Author: adrian Date: Sat Dec 26 19:14:24 2015 New Revision: 292756 URL: https://svnweb.freebsd.org/changeset/base/292756 Log: Disable the firwmare licence check for rsu and urtwn. The licence grant says something exactly the same as the atheros patent grant, which is "As long as you use this firmware on our chips, everything is totally okay." Now, I'm pretty sure if that we /have/ to have this, we're going to have to have it for every other firmware for every other device in the tree. So, I'll flip this off in -HEAD for now so people stop asking about why rsu/urtwn don't work out of the box, and I'll kick off a larger discussion about this in the new year. Modified: head/sys/modules/usb/rsufw/Makefile.inc head/sys/modules/usb/urtwnfw/Makefile.inc Modified: head/sys/modules/usb/rsufw/Makefile.inc ============================================================================== --- head/sys/modules/usb/rsufw/Makefile.inc Sat Dec 26 18:38:09 2015 (r292755) +++ head/sys/modules/usb/rsufw/Makefile.inc Sat Dec 26 19:14:24 2015 (r292756) @@ -9,7 +9,7 @@ CLEANFILES+= ${_FIRM} FIRMWS= ${_FIRM}:${KMOD}:120 -FIRMWARE_LICENSE= realtek +# FIRMWARE_LICENSE= realtek ${_FIRM}: ${.CURDIR}/../../../../contrib/dev/rsu/${_FIRM}.uu uudecode -p $? > ${.TARGET} Modified: head/sys/modules/usb/urtwnfw/Makefile.inc ============================================================================== --- head/sys/modules/usb/urtwnfw/Makefile.inc Sat Dec 26 18:38:09 2015 (r292755) +++ head/sys/modules/usb/urtwnfw/Makefile.inc Sat Dec 26 19:14:24 2015 (r292756) @@ -9,7 +9,7 @@ CLEANFILES+= ${_FIRM} FIRMWS= ${_FIRM}:${KMOD}:111 -FIRMWARE_LICENSE= realtek +# FIRMWARE_LICENSE= realtek ${_FIRM}: ${.CURDIR}/../../../../contrib/dev/urtwn/${_FIRM}.uu uudecode -p $? > ${.TARGET}