diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2008-09-17 11:34:26 -0400 |
---|---|---|
committer | David Vrabel <dv02@dv02pc01.europe.root.pri> | 2008-09-17 11:54:30 -0400 |
commit | 470cc4150367d369bdc98ee04902b04baa2b2464 (patch) | |
tree | b413a73e550b5c362f328e5e71a8b93d439cc182 | |
parent | d59db761b8559f07a7161ca3387d6c6949667ede (diff) |
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>
-rw-r--r-- | drivers/usb/Kconfig | 2 | ||||
-rw-r--r-- | drivers/usb/Makefile | 2 | ||||
-rw-r--r-- | drivers/usb/wusbcore/Kconfig | 17 | ||||
-rw-r--r-- | drivers/usb/wusbcore/Makefile | 12 |
4 files changed, 33 insertions, 0 deletions
diff --git a/drivers/usb/Kconfig b/drivers/usb/Kconfig index bcefbddeba50..c23a9857ee67 100644 --- a/drivers/usb/Kconfig +++ b/drivers/usb/Kconfig | |||
@@ -97,6 +97,8 @@ source "drivers/usb/core/Kconfig" | |||
97 | 97 | ||
98 | source "drivers/usb/mon/Kconfig" | 98 | source "drivers/usb/mon/Kconfig" |
99 | 99 | ||
100 | source "drivers/usb/wusbcore/Kconfig" | ||
101 | |||
100 | source "drivers/usb/host/Kconfig" | 102 | source "drivers/usb/host/Kconfig" |
101 | 103 | ||
102 | source "drivers/usb/musb/Kconfig" | 104 | source "drivers/usb/musb/Kconfig" |
diff --git a/drivers/usb/Makefile b/drivers/usb/Makefile index a419c42e880e..19ede32f0df1 100644 --- a/drivers/usb/Makefile +++ b/drivers/usb/Makefile | |||
@@ -19,6 +19,8 @@ obj-$(CONFIG_USB_R8A66597_HCD) += host/ | |||
19 | 19 | ||
20 | obj-$(CONFIG_USB_C67X00_HCD) += c67x00/ | 20 | obj-$(CONFIG_USB_C67X00_HCD) += c67x00/ |
21 | 21 | ||
22 | obj-$(CONFIG_USB_WUSB) += wusbcore/ | ||
23 | |||
22 | obj-$(CONFIG_USB_ACM) += class/ | 24 | obj-$(CONFIG_USB_ACM) += class/ |
23 | obj-$(CONFIG_USB_PRINTER) += class/ | 25 | obj-$(CONFIG_USB_PRINTER) += class/ |
24 | 26 | ||
diff --git a/drivers/usb/wusbcore/Kconfig b/drivers/usb/wusbcore/Kconfig new file mode 100644 index 000000000000..add077e5c5d0 --- /dev/null +++ b/drivers/usb/wusbcore/Kconfig | |||
@@ -0,0 +1,17 @@ | |||
1 | # | ||
2 | # Wireless USB Core configuration | ||
3 | # | ||
4 | config USB_WUSB | ||
5 | tristate "Enable Wireless USB extensions" | ||
6 | depends on USB | ||
7 | select UWB | ||
8 | select CRYPTO | ||
9 | select CRYPTO_BLKCIPHER | ||
10 | select CRYPTO_CBC | ||
11 | select CRYPTO_MANAGER | ||
12 | select CRYPTO_AES | ||
13 | help | ||
14 | Enable the host-side support for Wireless USB. | ||
15 | |||
16 | To compile this support select Y (built in). It is safe to | ||
17 | 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 000000000000..ea1dbfca6135 --- /dev/null +++ b/drivers/usb/wusbcore/Makefile | |||
@@ -0,0 +1,12 @@ | |||
1 | obj-$(CONFIG_USB_WUSB) += wusbcore.o | ||
2 | |||
3 | wusbcore-objs := \ | ||
4 | crypto.o \ | ||
5 | devconnect.o \ | ||
6 | dev-sysfs.o \ | ||
7 | mmc.o \ | ||
8 | pal.o \ | ||
9 | rh.o \ | ||
10 | reservation.o \ | ||
11 | security.o \ | ||
12 | wusbhc.o | ||