diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2008-09-17 16:34:26 +0100 |
---|---|---|
committer | David Vrabel <dv02@dv02pc01.europe.root.pri> | 2008-09-17 16:54:30 +0100 |
commit | 470cc4150367d369bdc98ee04902b04baa2b2464 (patch) | |
tree | b413a73e550b5c362f328e5e71a8b93d439cc182 /drivers/usb/wusbcore | |
parent | d59db761b8559f07a7161ca3387d6c6949667ede (diff) | |
download | op-kernel-dev-470cc4150367d369bdc98ee04902b04baa2b2464.zip op-kernel-dev-470cc4150367d369bdc98ee04902b04baa2b2464.tar.gz |
wusb: add the Wireless USB core (build-system)
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>
Diffstat (limited to 'drivers/usb/wusbcore')
-rw-r--r-- | drivers/usb/wusbcore/Kconfig | 17 | ||||
-rw-r--r-- | drivers/usb/wusbcore/Makefile | 12 |
2 files changed, 29 insertions, 0 deletions
diff --git a/drivers/usb/wusbcore/Kconfig b/drivers/usb/wusbcore/Kconfig new file mode 100644 index 0000000..add077e --- /dev/null +++ b/drivers/usb/wusbcore/Kconfig @@ -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 index 0000000..ea1dbfc --- /dev/null +++ b/drivers/usb/wusbcore/Makefile @@ -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 |