svn commit: r240483 - head/sys/arm/conf
Hans Petter Selasky
hselasky at FreeBSD.org
Fri Sep 14 08:12:00 UTC 2012
Author: hselasky
Date: Fri Sep 14 08:11:59 2012
New Revision: 240483
URL: http://svn.freebsd.org/changeset/base/240483
Log:
Add basic USB support to Raspberry PI target.
Modified:
head/sys/arm/conf/RPI-B
Modified: head/sys/arm/conf/RPI-B
==============================================================================
--- head/sys/arm/conf/RPI-B Fri Sep 14 07:52:57 2012 (r240482)
+++ head/sys/arm/conf/RPI-B Fri Sep 14 08:11:59 2012 (r240483)
@@ -59,6 +59,7 @@ options SYSVMSG #SYSV-style message q
options SYSVSEM #SYSV-style semaphores
options _KPOSIX_PRIORITY_SCHEDULING #Posix P1003_1B real-time extensions
options KBD_INSTALL_CDEV # install a CDEV entry in /dev
+#options ROOTDEVNAME=\"ufs:/dev/da0s1a\"
options PREEMPTION
@@ -85,15 +86,20 @@ options INVARIANT_SUPPORT #Extra sanity
device md
device random # Entropy device
-# Not yet: USB support
-# device usb
-# options USB_DEBUG
-
-
-# Not yet: USB Ethernet support, requires miibus
-# device mii
-# device smc
-# device smcphy
+# USB support
+device usb
+options USB_DEBUG
+device dwcotg #DWC OTG controller
+
+# USB storage support
+device scbus
+device da
+device umass
+
+# USB ethernet support
+device smcphy
+device mii
+device smsc
# Flattened Device Tree
options FDT
More information about the svn-src-head
mailing list