FreeBSD Bugzilla – Attachment 52760 Details for
Bug 79889
Patch to update net/nvnet port to latest version
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
file.diff
file.diff (text/plain), 4.53 KB, created by
Quinton Dolan
on 2005-04-14 01:50:20 UTC
(
hide
)
Description:
file.diff
Filename:
MIME Type:
Creator:
Quinton Dolan
Created:
2005-04-14 01:50:20 UTC
Size:
4.53 KB
patch
obsolete
>diff -ruN nvnet.bak/Makefile nvnet/Makefile >--- nvnet.bak/Makefile Fri Dec 24 15:48:05 2004 >+++ nvnet/Makefile Sun Apr 10 23:47:07 2005 >@@ -1,5 +1,4 @@ > # Ports collection makefile for: nvnet >-# > # Date created: 1 Oct 2003 > # Whom: Quinton Dolan <q@onthenet.com.au> > # >@@ -7,27 +6,19 @@ > # > > PORTNAME= nvnet >-PORTVERSION= 1.0.${NVVERSION} >-PORTREVISION?= 0 >+PORTVERSION= 1.0.0301 > CATEGORIES= net >-MASTER_SITES= http://download.nvidia.com/XFree86/nforce/1.0-${NVVERSION}/:nvidia \ >- ftp://download.nvidia.com/XFree86/nforce/1.0-${NVVERSION}/:nvidia \ >- http://download1.nvidia.com/XFree86/nforce/1.0-${NVVERSION}/:nvidia \ >- ftp://download1.nvidia.com/XFree86/nforce/1.0-${NVVERSION}/:nvidia \ >- http://www.onthenet.com.au/~q/nvnet/:nvnet >-DISTFILES= NVIDIA_nforce-1.0-${NVVERSION}${EXTRACT_SUFX}:nvidia \ >- nvnet-src-${NVNETVERSION}${EXTRACT_SUFX}:nvnet >+MASTER_SITES= http://www.onthenet.com.au/~q/nvnet/ >+DISTFILES= ${PORTNAME}-src-${DISTVERSION}${EXTRACT_SUFX} > > MAINTAINER= q@onthenet.com.au > COMMENT= Driver for NVIDIA MCP Ethernet adapter > >-NVNETVERSION= 20040813 >+DISTVERSION= 20050312 > > NO_PACKAGE= Depends on kernel > ONLY_FOR_ARCHS= amd64 i386 >-MD5_FILE= ${MASTERDIR}/distinfo.${ARCH} > WRKSRC= ${WRKDIR}/nvnet >-MODULES_WITH_WORLD= > PLIST_SUB= KMODDIR=${KMODDIR} > PORTDOCS= README nvidia_pci.c.diff > MAN4= nvnet.4 >@@ -35,23 +26,12 @@ > .include <bsd.port.pre.mk> > > .if ${OSVERSION} < 480100 || ${OSVERSION} >= 500000 && ${OSVERSION} < 501000 >-BROKEN= "Systems prior to FreeBSD 4.9 & 5.1 are not supported" >-.endif >- >-.if ${ARCH} == "i386" >-NVVERSION= 0274 >-.elif ${ARCH} == "amd64" >-NVVERSION= 0275 >-.else >-NVVERSION= 0 >+IGNORE= Systems prior to FreeBSD 4.9 & 5.1 are not supported > .endif > > pre-fetch: > .if !exists(${SRC_BASE}/sys/Makefile) >- @${ECHO} "*************************************************"; \ >- ${ECHO} "This port requires the kernel source be available"; \ >- ${ECHO} "*************************************************"; \ >- exit 1 >+IGNORE= Kernel source files required > .endif > > do-install: >diff -ruN nvnet.bak/distinfo nvnet/distinfo >--- nvnet.bak/distinfo Wed Dec 31 19:00:00 1969 >+++ nvnet/distinfo Sun Apr 10 21:09:37 2005 >@@ -0,0 +1,2 @@ >+MD5 (nvnet-src-20050312.tar.gz) = 3e663986eab7deb5bf315a9f795bee7d >+SIZE (nvnet-src-20050312.tar.gz) = 91425 >diff -ruN nvnet.bak/distinfo.amd64 nvnet/distinfo.amd64 >--- nvnet.bak/distinfo.amd64 Tue Dec 14 10:56:04 2004 >+++ nvnet/distinfo.amd64 Wed Dec 31 19:00:00 1969 >@@ -1,4 +0,0 @@ >-MD5 (NVIDIA_nforce-1.0-0275.tar.gz) = b11e5fb81d629b27be546b6a731d99ea >-SIZE (NVIDIA_nforce-1.0-0275.tar.gz) = 126011 >-MD5 (nvnet-src-20040813.tar.gz) = 425b9bb3495a1d7f68db817293653d0a >-SIZE (nvnet-src-20040813.tar.gz) = 18821 >diff -ruN nvnet.bak/distinfo.i386 nvnet/distinfo.i386 >--- nvnet.bak/distinfo.i386 Tue Dec 14 10:56:04 2004 >+++ nvnet/distinfo.i386 Wed Dec 31 19:00:00 1969 >@@ -1,4 +0,0 @@ >-MD5 (NVIDIA_nforce-1.0-0274.tar.gz) = b84b5a34639b547ef897d6447c3c5415 >-SIZE (NVIDIA_nforce-1.0-0274.tar.gz) = 126450 >-MD5 (nvnet-src-20040813.tar.gz) = 425b9bb3495a1d7f68db817293653d0a >-SIZE (nvnet-src-20040813.tar.gz) = 18821 >diff -ruN nvnet.bak/files/patch-src_if__nv.c nvnet/files/patch-src_if__nv.c >--- nvnet.bak/files/patch-src_if__nv.c Sat Jun 26 06:02:08 2004 >+++ nvnet/files/patch-src_if__nv.c Wed Dec 31 19:00:00 1969 >@@ -1,13 +0,0 @@ >- >-$FreeBSD: ports/net/nvnet/files/patch-src_if__nv.c,v 1.1 2004/06/26 10:02:08 krion Exp $ >- >---- src/if_nv.c.orig Sat Jun 26 11:58:36 2004 >-+++ src/if_nv.c Sat Jun 26 11:59:07 2004 >-@@ -72,6 +72,7 @@ >- #include <sys/socket.h> >- #include <sys/sysctl.h> >- #include <sys/queue.h> >-+#include <sys/module.h> >- >- #include <net/if.h> >- #include <net/if_arp.h> >diff -ruN nvnet.bak/pkg-descr nvnet/pkg-descr >--- nvnet.bak/pkg-descr Sun Dec 7 00:34:23 2003 >+++ nvnet/pkg-descr Sun Apr 10 21:31:39 2005 >@@ -1,6 +1,6 @@ > This port contains a driver for the NVIDIA nForce MCP Ethernet adapter. > It contains a wrapper that replaces the Linux nvnet.c, and links against >-the Linux binary only object file (nvnetlib.o) included in the NVIDIA >+the Linux binary only object file (nvenetlib.o) included from the NVIDIA > driver source distribution. > > This should work on all nForce and nForce2 based motherboards that have >diff -ruN nvnet.bak/pkg-message nvnet/pkg-message >--- nvnet.bak/pkg-message Sun Dec 7 00:34:23 2003 >+++ nvnet/pkg-message Sun Apr 10 21:14:22 2005 >@@ -4,4 +4,3 @@ > * nature of FreeBSD it may be necessary to rebuild the module after a kernel * > * source update. To do this reinstall the port. * > ******************************************************************************* >-
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 79889
: 52760 |
52761
|
52762
|
52763
|
52764
|
52765