]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
wusb: add the Wireless USB core (build-system)
authorGreg Kroah-Hartman <gregkh@suse.de>
Wed, 17 Sep 2008 15:34:26 +0000 (16:34 +0100)
committerDavid Vrabel <dv02@dv02pc01.europe.root.pri>
Wed, 17 Sep 2008 15:54:30 +0000 (16:54 +0100)
Add the WUSB build system (Kconfig and Kbuild) files.

Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: David Vrabel <david.vrabel@csr.com>
drivers/usb/Kconfig
drivers/usb/Makefile
drivers/usb/wusbcore/Kconfig [new file with mode: 0644]
drivers/usb/wusbcore/Makefile [new file with mode: 0644]

index bcefbddeba5099877981a1717cfd22edfd35e159..c23a9857ee674d988e8aba1e6e1dd74d0a5fe6ce 100644 (file)
@@ -97,6 +97,8 @@ source "drivers/usb/core/Kconfig"
 
 source "drivers/usb/mon/Kconfig"
 
+source "drivers/usb/wusbcore/Kconfig"
+
 source "drivers/usb/host/Kconfig"
 
 source "drivers/usb/musb/Kconfig"
index a419c42e880e208f5eec222fff067a7bbe7424c3..19ede32f0df188473dad42e6caed5736f07c90db 100644 (file)
@@ -19,6 +19,8 @@ obj-$(CONFIG_USB_R8A66597_HCD)        += host/
 
 obj-$(CONFIG_USB_C67X00_HCD)   += c67x00/
 
+obj-$(CONFIG_USB_WUSB)         += wusbcore/
+
 obj-$(CONFIG_USB_ACM)          += class/
 obj-$(CONFIG_USB_PRINTER)      += class/
 
diff --git a/drivers/usb/wusbcore/Kconfig b/drivers/usb/wusbcore/Kconfig
new file mode 100644 (file)
index 0000000..add077e
--- /dev/null
@@ -0,0 +1,17 @@
+#
+# Wireless USB Core configuration
+#
+config USB_WUSB
+       tristate "Enable Wireless USB extensions"
+       depends on USB
+        select UWB
+        select CRYPTO
+        select CRYPTO_BLKCIPHER
+        select CRYPTO_CBC
+        select CRYPTO_MANAGER
+        select CRYPTO_AES
+       help
+         Enable the host-side support for Wireless USB.
+
+          To compile this support select Y (built in). It is safe to
+         select even if you don't have the hardware.
diff --git a/drivers/usb/wusbcore/Makefile b/drivers/usb/wusbcore/Makefile
new file mode 100644 (file)
index 0000000..ea1dbfc
--- /dev/null
@@ -0,0 +1,12 @@
+obj-$(CONFIG_USB_WUSB)         += wusbcore.o
+
+wusbcore-objs :=       \
+       crypto.o        \
+       devconnect.o    \
+       dev-sysfs.o     \
+       mmc.o           \
+       pal.o           \
+       rh.o            \
+       reservation.o   \
+       security.o      \
+       wusbhc.o