From owner-cvs-src@FreeBSD.ORG Sat Mar 12 20:02:56 2005 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 277E716A4CE; Sat, 12 Mar 2005 20:02:56 +0000 (GMT) Received: from mail.psychoholics.org (www.psychoholics.org [64.185.102.78]) by mx1.FreeBSD.org (Postfix) with ESMTP id A2C5C43D41; Sat, 12 Mar 2005 20:02:55 +0000 (GMT) (envelope-from ebola@psychoholics.org) Received: from S0106066606660666.su.shawcable.net (S0106066606660666.su.shawcable.net [24.76.68.38]) by mail.psychoholics.org (Postfix) with ESMTP id 9B7CA157174; Fri, 11 Mar 2005 22:01:56 -0800 (PST) From: Adam Gregoire To: "David E. O'Brien" In-Reply-To: <200503120029.j2C0TUGn056138@repoman.freebsd.org> References: <200503120029.j2C0TUGn056138@repoman.freebsd.org> Content-Type: text/plain Date: Sat, 12 Mar 2005 00:02:25 -0500 Message-Id: <1110603746.72068.3.camel@S0106066606660666.su.shawcable.net> Mime-Version: 1.0 X-Mailer: Evolution 2.2.0 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/amd64/conf GENERIC src/sys/conf files.amd64 files.i386 src/sys/dev/nve if_nve.c if_nvereg.h src/sys/modules/nve Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 12 Mar 2005 20:02:56 -0000 On Sat, 2005-03-12 at 00:29 +0000, David E. O'Brien wrote: > obrien 2005-03-12 00:29:30 UTC > > FreeBSD src repository > > Modified files: > sys/amd64/conf GENERIC > sys/conf files.amd64 files.i386 > sys/i386/conf GENERIC > sys/modules Makefile > Added files: > sys/dev/nve if_nve.c if_nvereg.h > sys/modules/nve Makefile > Log: > FreeBSD consumer bits of the nForce MCP NIC binary blob. > > Demanded by: DES > Encouraged by: scottl > Obtained from: q@onthenet.com.au (partially) > KNF'ed by: obrien > > Revision Changes Path > 1.430 +1 -0 src/sys/amd64/conf/GENERIC > 1.57 +11 -0 src/sys/conf/files.amd64 > 1.521 +11 -0 src/sys/conf/files.i386 > 1.1 +1700 -0 src/sys/dev/nve/if_nve.c (new) > 1.1 +175 -0 src/sys/dev/nve/if_nvereg.h (new) > 1.423 +1 -0 src/sys/i386/conf/GENERIC > 1.432 +3 -0 src/sys/modules/Makefile > 1.1 +15 -0 src/sys/modules/nve/Makefile (new) > _______________________________________________ > cvs-src@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/cvs-src > To unsubscribe, send any mail to "cvs-src-unsubscribe@freebsd.org" This needs to be moved to where the rest of miibus interfaces are in amd64 and i386 GENERIC kernel config files. cc -c -O2 -frename-registers -pipe -fno-strict-aliasing -march=athlon64 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -fformat-extensions -std=c99 -nostdinc -I- -I. -I/usr/src/sys -I/usr/src/sys/contrib/dev/acpica -I/usr/src/sys/contrib/altq -I/usr/src/sys/contrib/ipfilter -I/usr/src/sys/contrib/pf -I/usr/src/sys/contrib/dev/ath -I/usr/src/sys/contrib/dev/ath/freebsd -I/usr/src/sys/contrib/ngatm -D_KERNEL -include opt_global.h -fno-common -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mfpmath=387 -mno-sse -mno-sse2 -mno-mmx -mno-3dnow -msoft-float -fno-asynchronous-unwind-tables -ffreestanding -Werror /usr/src/sys/dev/nve/if_nve.c /usr/src/sys/dev/nve/if_nve.c:111:23: miibus_if.h: No such file or directory /usr/src/sys/dev/nve/if_nve.c:190: error: `miibus_readreg_desc' undeclared here (not in a function) /usr/src/sys/dev/nve/if_nve.c:190: error: initializer element is not constant /usr/src/sys/dev/nve/if_nve.c:190: error: (near initialization for `nve_methods[6].desc') /usr/src/sys/dev/nve/if_nve.c:190: error: initializer element is not constant /usr/src/sys/dev/nve/if_nve.c:190: error: (near initialization for `nve_methods[6]') /usr/src/sys/dev/nve/if_nve.c:191: error: `miibus_writereg_desc' undeclared here (not in a function) /usr/src/sys/dev/nve/if_nve.c:191: error: initializer element is not constant /usr/src/sys/dev/nve/if_nve.c:191: error: (near initialization for `nve_methods[7].desc') /usr/src/sys/dev/nve/if_nve.c:191: error: initializer element is not constant /usr/src/sys/dev/nve/if_nve.c:191: error: (near initialization for `nve_methods[7]') /usr/src/sys/dev/nve/if_nve.c:193: error: initializer element is not constant /usr/src/sys/dev/nve/if_nve.c:193: error: (near initialization for `nve_methods[8]') -- Adam Gregoire