diff options
author | Robert P. J. Day <rpjday@crashcourse.ca> | 2008-07-24 12:20:09 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-08-22 16:29:50 -0400 |
commit | 5442060c08a49bd0b416f033e0ae43ccedef5278 (patch) | |
tree | 713e0f37e10fc55eb4f1f61fb3450d62354413fe /net | |
parent | d7dc100374df0c21afd8a198336ecd7999697159 (diff) | |
download | op-kernel-dev-5442060c08a49bd0b416f033e0ae43ccedef5278.zip op-kernel-dev-5442060c08a49bd0b416f033e0ae43ccedef5278.tar.gz |
WIRELESS: Make wireless one-click selectable.
Use "menuconfig" to make wireless support one-click selectable.
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net')
-rw-r--r-- | net/Kconfig | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/net/Kconfig b/net/Kconfig index 7612cc8..d87de48 100644 --- a/net/Kconfig +++ b/net/Kconfig @@ -236,14 +236,18 @@ source "net/rxrpc/Kconfig" config FIB_RULES bool -menu "Wireless" +menuconfig WIRELESS + bool "Wireless" depends on !S390 + default y + +if WIRELESS source "net/wireless/Kconfig" source "net/mac80211/Kconfig" source "net/ieee80211/Kconfig" -endmenu +endif # WIRELESS source "net/rfkill/Kconfig" source "net/9p/Kconfig" |