public inbox for linux-wireless@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] lib80211: make crypt modules configurable by user
@ 2009-12-01 23:46 Daniel Ritz
  2009-12-01 23:59 ` Johannes Berg
  0 siblings, 1 reply; 4+ messages in thread
From: Daniel Ritz @ 2009-12-01 23:46 UTC (permalink / raw)
  To: Johannes Berg, John W. Linville; +Cc: linux-wireless, daniel.ritz-ml

Make the crypt modules configurable by user. Normally drivers select them
when needed, but out-of-tree drivers can't do that. Having a minimal
kernel with just the things required won't select any of those modules,
resulting in the external driver to be close to useless (ie. it can scan
the networks, but cannot join a single one).

Signed-off-by: Daniel Ritz <daniel.ritz@gmx.ch>
---
 net/wireless/Kconfig |   23 ++++++++++++++++++-----
 1 files changed, 18 insertions(+), 5 deletions(-)

diff --git a/net/wireless/Kconfig b/net/wireless/Kconfig
index abf7ca3..48f60ab 100644
--- a/net/wireless/Kconfig
+++ b/net/wireless/Kconfig
@@ -123,17 +123,30 @@ config LIB80211
 	  This options enables a library of common routines used
 	  by IEEE802.11 wireless LAN drivers.
 
-	  Drivers should select this themselves if needed.  Say Y if
-	  you want this built into your kernel.
+	  Drivers should select this themselves if needed, but for
+	  out-of-tree drivers manually selecting it might be required.
+	  Say Y if you want this built into your kernel.
 
 config LIB80211_CRYPT_WEP
-	tristate
+	tristate "lib80211 WEP support module"
+	depends on LIB80211
+	default m
+	help
+	  This adds WEP support to lib80211.
 
 config LIB80211_CRYPT_CCMP
-	tristate
+	tristate "lib80211 CCMP support module"
+	depends on LIB80211
+	default m
+	help
+	  This adds CCMP support to lib80211.
 
 config LIB80211_CRYPT_TKIP
-	tristate
+	tristate "lib80211 TKIP support module"
+	depends on LIB80211
+	default m
+	help
+	  This adds TKIP support to lib80211.
 
 config LIB80211_DEBUG
 	bool "lib80211 debugging messages"
-- 
1.6.3.3




^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2009-12-03  9:20 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-12-01 23:46 [PATCH] lib80211: make crypt modules configurable by user Daniel Ritz
2009-12-01 23:59 ` Johannes Berg
2009-12-02 22:38   ` Daniel Ritz
2009-12-03  9:20     ` Johannes Berg

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox