-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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>
- Loading branch information
Inaky Perez-Gonzalez
authored and
Greg Kroah-Hartman
committed
Jan 7, 2009
1 parent
617209c
commit b0c83ae
Showing
5 changed files
with
62 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -63,3 +63,4 @@ endif | |
ifeq ($(CONFIG_NET),y) | ||
obj-$(CONFIG_SYSCTL) += sysctl_net.o | ||
endif | ||
obj-$(CONFIG_WIMAX) += wimax/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# | ||
# WiMAX LAN device configuration | ||
# | ||
|
||
menuconfig WIMAX | ||
tristate "WiMAX Wireless Broadband support" | ||
help | ||
|
||
Select to configure support for devices that provide | ||
wireless broadband connectivity using the WiMAX protocol | ||
(IEEE 802.16). | ||
|
||
Please note that most of these devices require signing up | ||
for a service plan with a provider. | ||
|
||
The different WiMAX drivers can be enabled in the menu entry | ||
|
||
Device Drivers > Network device support > WiMAX Wireless | ||
Broadband devices | ||
|
||
If unsure, it is safe to select M (module). | ||
|
||
config WIMAX_DEBUG_LEVEL | ||
int "WiMAX debug level" | ||
depends on WIMAX | ||
default 8 | ||
help | ||
|
||
Select the maximum debug verbosity level to be compiled into | ||
the WiMAX stack code. | ||
|
||
By default, debug messages are disabled at runtime and can | ||
be selectively enabled for different parts of the code using | ||
the sysfs debug-levels file. | ||
|
||
If set at zero, this will compile out all the debug code. | ||
|
||
It is recommended that it is left at 8. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
|
||
obj-$(CONFIG_WIMAX) += wimax.o | ||
|
||
wimax-y := \ | ||
id-table.o \ | ||
op-msg.o \ | ||
op-reset.o \ | ||
op-rfkill.o \ | ||
stack.o | ||
|
||
wimax-$(CONFIG_DEBUG_FS) += debugfs.o | ||
|
||
|