From owner-svn-src-projects@FreeBSD.ORG Mon Apr 9 19:40:53 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6293D106566C; Mon, 9 Apr 2012 19:40:53 +0000 (UTC) (envelope-from bgray@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 34A828FC15; Mon, 9 Apr 2012 19:40:53 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q39Jer7o075485; Mon, 9 Apr 2012 19:40:53 GMT (envelope-from bgray@svn.freebsd.org) Received: (from bgray@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q39Jeqo8075483; Mon, 9 Apr 2012 19:40:52 GMT (envelope-from bgray@svn.freebsd.org) Message-Id: <201204091940.q39Jeqo8075483@svn.freebsd.org> From: Ben Gray Date: Mon, 9 Apr 2012 19:40:52 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r234068 - projects/armv6/sys/modules/usb/smsc X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Apr 2012 19:40:53 -0000 Author: bgray Date: Mon Apr 9 19:40:52 2012 New Revision: 234068 URL: http://svn.freebsd.org/changeset/base/234068 Log: Added the missing smsc module makefile for the USB ethernet device. Added: projects/armv6/sys/modules/usb/smsc/ projects/armv6/sys/modules/usb/smsc/Makefile Added: projects/armv6/sys/modules/usb/smsc/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/armv6/sys/modules/usb/smsc/Makefile Mon Apr 9 19:40:52 2012 (r234068) @@ -0,0 +1,37 @@ +# +# $FreeBSD$ +# +# Copyright (c) 2011 Ben Gray. All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions +# are met: +# 1. Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# 2. Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND +# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE +# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +# SUCH DAMAGE. +# + +S= ${.CURDIR}/../../.. + +.PATH: $S/dev/usb/net + +KMOD= if_smsc +SRCS= opt_bus.h opt_usb.h device_if.h bus_if.h usb_if.h usbdevs.h \ + miibus_if.h opt_inet.h \ + if_smsc.c + +.include