svn commit: r196168 - in stable/7/sys/modules: . ohci uhci

Nick Hibma n_hibma at FreeBSD.org
Thu Aug 13 08:18:30 UTC 2009


Author: n_hibma
Date: Thu Aug 13 08:18:29 2009
New Revision: 196168
URL: http://svn.freebsd.org/changeset/base/196168

Log:
  Add these two modules to enable loading of 'the other' host controller
  if only one was compiled into the kernel.
  
  This happens on a laptop with an Intel chipset (UHCI) to which an Option
  3G Cardbus card is added (which contains a NEC USB host controller
  (OHCI)).

Added:
  stable/7/sys/modules/ohci/
  stable/7/sys/modules/ohci/Makefile   (contents, props changed)
  stable/7/sys/modules/uhci/
  stable/7/sys/modules/uhci/Makefile   (contents, props changed)
Modified:
  stable/7/sys/modules/Makefile

Modified: stable/7/sys/modules/Makefile
==============================================================================
--- stable/7/sys/modules/Makefile	Thu Aug 13 07:21:24 2009	(r196167)
+++ stable/7/sys/modules/Makefile	Thu Aug 13 08:18:29 2009	(r196168)
@@ -206,6 +206,7 @@ SUBDIR=	${_3dfx} \
 	${_nve} \
 	${_nvram} \
 	${_nwfs} \
+	ohci \
 	${_oltr} \
 	${_opensolaris} \
 	${_padlock} \
@@ -293,6 +294,7 @@ SUBDIR=	${_3dfx} \
 	ufoma \
 	uftdi \
 	ugen \
+	uhci \
 	uhid \
 	ukbd \
 	ulpt \

Added: stable/7/sys/modules/ohci/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ stable/7/sys/modules/ohci/Makefile	Thu Aug 13 08:18:29 2009	(r196168)
@@ -0,0 +1,12 @@
+# $FreeBSD$
+
+S=	${.CURDIR}/../..
+
+.PATH: $S/dev/usb $S/pci
+
+KMOD=	ohci
+SRCS=	bus_if.h device_if.h usb_if.h usb_if.c opt_usb.h
+SRCS+=	ohci_pci.c ohci.c ohcireg.h ohcivar.h
+SRCS+=	opt_bus.h pci_if.h
+
+.include <bsd.kmod.mk>

Added: stable/7/sys/modules/uhci/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ stable/7/sys/modules/uhci/Makefile	Thu Aug 13 08:18:29 2009	(r196168)
@@ -0,0 +1,12 @@
+# $FreeBSD$
+
+S=	${.CURDIR}/../..
+
+.PATH: $S/dev/usb $S/pci
+
+KMOD=	uhci
+SRCS=	bus_if.h device_if.h usb_if.h usb_if.c opt_usb.h
+SRCS+=	uhci_pci.c uhci.c uhcireg.h uhcivar.h
+SRCS+=	opt_bus.h pci_if.h
+
+.include <bsd.kmod.mk>


More information about the svn-src-stable-7 mailing list