svn commit: r227268 - in stable/9: share/man/man4 sys/conf sys/dev/qlxgb sys/modules sys/modules/qlxgb

Bjoern A. Zeeb bz at FreeBSD.org
Sun Nov 6 20:29:18 UTC 2011


Author: bz
Date: Sun Nov  6 20:29:18 2011
New Revision: 227268
URL: http://svn.freebsd.org/changeset/base/227268

Log:
  MFC r227064:
  
    Add QLogic 10 Gigabit Ethernet & CNA Adapter Driver version 1.30
    for 3200 and 8200 series cards.
  
    Submitted by: David C Somayajulu (david.somayajulu at qlogic.com),
                  Qlogic Corporation
  
  Approved by:	re (kib)

Added:
  stable/9/share/man/man4/qlxgb.4
     - copied, changed from r227064, head/share/man/man4/qlxgb.4
  stable/9/sys/dev/qlxgb/
     - copied from r227064, head/sys/dev/qlxgb/
  stable/9/sys/modules/qlxgb/
     - copied from r227064, head/sys/modules/qlxgb/
Modified:
  stable/9/share/man/man4/Makefile
  stable/9/sys/conf/files.amd64
  stable/9/sys/modules/Makefile
Directory Properties:
  stable/9/share/man/man4/   (props changed)
  stable/9/sys/   (props changed)
  stable/9/sys/amd64/include/xen/   (props changed)
  stable/9/sys/boot/   (props changed)
  stable/9/sys/boot/i386/efi/   (props changed)
  stable/9/sys/boot/ia64/efi/   (props changed)
  stable/9/sys/boot/ia64/ski/   (props changed)
  stable/9/sys/boot/powerpc/boot1.chrp/   (props changed)
  stable/9/sys/boot/powerpc/ofw/   (props changed)
  stable/9/sys/cddl/contrib/opensolaris/   (props changed)
  stable/9/sys/conf/   (props changed)
  stable/9/sys/contrib/dev/acpica/   (props changed)
  stable/9/sys/contrib/octeon-sdk/   (props changed)
  stable/9/sys/contrib/pf/   (props changed)
  stable/9/sys/contrib/x86emu/   (props changed)

Modified: stable/9/share/man/man4/Makefile
==============================================================================
--- stable/9/share/man/man4/Makefile	Sun Nov  6 20:16:50 2011	(r227267)
+++ stable/9/share/man/man4/Makefile	Sun Nov  6 20:29:18 2011	(r227268)
@@ -347,6 +347,7 @@ MAN=	aac.4 \
 	pts.4 \
 	pty.4 \
 	puc.4 \
+	${_qlxgb.4} \
 	ral.4 \
 	random.4 \
 	rc.4 \
@@ -713,6 +714,10 @@ _xen.4=		xen.4
 MLINKS+=lindev.4 full.4
 .endif
 
+.if ${MACHINE_CPUARCH} == "amd64"
+_qlxgb.4=	qlxgb.4
+.endif
+
 .if ${MACHINE_CPUARCH} == "powerpc"
 _atp.4=		atp.4
 .endif

Copied and modified: stable/9/share/man/man4/qlxgb.4 (from r227064, head/share/man/man4/qlxgb.4)
==============================================================================
--- head/share/man/man4/qlxgb.4	Thu Nov  3 21:20:22 2011	(r227064, copy source)
+++ stable/9/share/man/man4/qlxgb.4	Sun Nov  6 20:29:18 2011	(r227268)
@@ -83,7 +83,7 @@ or by E-mail at
 The
 .Nm
 device driver first appeared in
-.Fx 10.0 .
+.Fx 9.0 .
 .Sh AUTHORS
 .An -nosplit
 The

Modified: stable/9/sys/conf/files.amd64
==============================================================================
--- stable/9/sys/conf/files.amd64	Sun Nov  6 20:16:50 2011	(r227267)
+++ stable/9/sys/conf/files.amd64	Sun Nov  6 20:29:18 2011	(r227268)
@@ -208,6 +208,12 @@ dev/lindev/lindev.c		optional	lindev
 dev/nfe/if_nfe.c		optional	nfe pci
 dev/nve/if_nve.c		optional	nve pci
 dev/nvram/nvram.c		optional	nvram isa
+dev/qlxgb/qla_dbg.c		optional	qlxgb pci
+dev/qlxgb/qla_hw.c		optional	qlxgb pci
+dev/qlxgb/qla_ioctl.c		optional	qlxgb pci
+dev/qlxgb/qla_isr.c		optional	qlxgb pci
+dev/qlxgb/qla_misc.c		optional	qlxgb pci
+dev/qlxgb/qla_os.c		optional	qlxgb pci
 dev/sio/sio.c			optional	sio
 dev/sio/sio_isa.c		optional	sio isa
 dev/sio/sio_pccard.c		optional	sio pccard

Modified: stable/9/sys/modules/Makefile
==============================================================================
--- stable/9/sys/modules/Makefile	Sun Nov  6 20:16:50 2011	(r227267)
+++ stable/9/sys/modules/Makefile	Sun Nov  6 20:29:18 2011	(r227268)
@@ -254,6 +254,7 @@ SUBDIR=	${_3dfx} \
 	${_pst} \
 	pty  \
 	puc \
+	${_qlxgb} \
 	ral \
 	ralfw \
 	${_random} \
@@ -620,6 +621,7 @@ _opensolaris=	opensolaris
 _padlock=	padlock
 .endif
 _pccard=	pccard
+_qlxgb=		qlxgb
 _rdma=		rdma	
 _s3=		s3
 _safe=		safe


More information about the svn-src-all mailing list