diff options
author | Inaky Perez-Gonzalez <inaky@linux.intel.com> | 2008-12-23 19:18:24 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-01-07 13:00:17 -0500 |
commit | b0c83ae1de01880075955c7224e751440688ec74 (patch) | |
tree | 5f565677dcbcf050a9abea18403183aee29ab3bc /net | |
parent | 617209ccf73b571953cf4c76519c65a5e52d15fd (diff) |
wimax: Makefile, Kconfig and docbook linkage for the stack
This patch provides Makefile and KConfig for the WiMAX stack,
integrating them into the networking stack's Makefile, Kconfig and
doc-book templates.
Signed-off-by: Inaky Perez-Gonzalez <inaky@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'net')
-rw-r--r-- | net/Kconfig | 2 | ||||
-rw-r--r-- | net/Makefile | 1 | ||||
-rw-r--r-- | net/wimax/Kconfig | 38 | ||||
-rw-r--r-- | net/wimax/Makefile | 13 |
4 files changed, 54 insertions, 0 deletions
diff --git a/net/Kconfig b/net/Kconfig index 6ec2cce7c167..bf2776018f71 100644 --- a/net/Kconfig +++ b/net/Kconfig | |||
@@ -254,6 +254,8 @@ source "net/mac80211/Kconfig" | |||
254 | 254 | ||
255 | endif # WIRELESS | 255 | endif # WIRELESS |
256 | 256 | ||
257 | source "net/wimax/Kconfig" | ||
258 | |||
257 | source "net/rfkill/Kconfig" | 259 | source "net/rfkill/Kconfig" |
258 | source "net/9p/Kconfig" | 260 | source "net/9p/Kconfig" |
259 | 261 | ||
diff --git a/net/Makefile b/net/Makefile index ba4460432b7c..0fcce89d7169 100644 --- a/net/Makefile +++ b/net/Makefile | |||
@@ -63,3 +63,4 @@ endif | |||
63 | ifeq ($(CONFIG_NET),y) | 63 | ifeq ($(CONFIG_NET),y) |
64 | obj-$(CONFIG_SYSCTL) += sysctl_net.o | 64 | obj-$(CONFIG_SYSCTL) += sysctl_net.o |
65 | endif | 65 | endif |
66 | obj-$(CONFIG_WIMAX) += wimax/ | ||
diff --git a/net/wimax/Kconfig b/net/wimax/Kconfig new file mode 100644 index 000000000000..0bdbb6928205 --- /dev/null +++ b/net/wimax/Kconfig | |||
@@ -0,0 +1,38 @@ | |||
1 | # | ||
2 | # WiMAX LAN device configuration | ||
3 | # | ||
4 | |||
5 | menuconfig WIMAX | ||
6 | tristate "WiMAX Wireless Broadband support" | ||
7 | help | ||
8 | |||
9 | Select to configure support for devices that provide | ||
10 | wireless broadband connectivity using the WiMAX protocol | ||
11 | (IEEE 802.16). | ||
12 | |||
13 | Please note that most of these devices require signing up | ||
14 | for a service plan with a provider. | ||
15 | |||
16 | The different WiMAX drivers can be enabled in the menu entry | ||
17 | |||
18 | Device Drivers > Network device support > WiMAX Wireless | ||
19 | Broadband devices | ||
20 | |||
21 | If unsure, it is safe to select M (module). | ||
22 | |||
23 | config WIMAX_DEBUG_LEVEL | ||
24 | int "WiMAX debug level" | ||
25 | depends on WIMAX | ||
26 | default 8 | ||
27 | help | ||
28 | |||
29 | Select the maximum debug verbosity level to be compiled into | ||
30 | the WiMAX stack code. | ||
31 | |||
32 | By default, debug messages are disabled at runtime and can | ||
33 | be selectively enabled for different parts of the code using | ||
34 | the sysfs debug-levels file. | ||
35 | |||
36 | If set at zero, this will compile out all the debug code. | ||
37 | |||
38 | It is recommended that it is left at 8. | ||
diff --git a/net/wimax/Makefile b/net/wimax/Makefile new file mode 100644 index 000000000000..5b80b941c2c9 --- /dev/null +++ b/net/wimax/Makefile | |||
@@ -0,0 +1,13 @@ | |||
1 | |||
2 | obj-$(CONFIG_WIMAX) += wimax.o | ||
3 | |||
4 | wimax-y := \ | ||
5 | id-table.o \ | ||
6 | op-msg.o \ | ||
7 | op-reset.o \ | ||
8 | op-rfkill.o \ | ||
9 | stack.o | ||
10 | |||
11 | wimax-$(CONFIG_DEBUG_FS) += debugfs.o | ||
12 | |||
13 | |||