aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/wpa-supplicant
diff options
context:
space:
mode:
authorFrans Meulenbroeks <fransmeulenbroeks@gmail.com>2010-09-30 08:28:41 +0200
committerFrans Meulenbroeks <fransmeulenbroeks@gmail.com>2010-09-30 08:30:16 +0200
commit285f58b3a48df7c4891afd02c7d9ca041675b41d (patch)
tree15de753b448fd9d38f0115d3012c78e742cc5eb9 /recipes/wpa-supplicant
parent3870681ff63236659cda220c00b4d87ecac196f0 (diff)
downloadopenembedded-285f58b3a48df7c4891afd02c7d9ca041675b41d.tar.gz
Revert "wpa-supplicant : moved unused files to obsolete dir"
This reverts commit 9a5382aad4e5a3e52fa52722cf5587fdba958e9f. This one accidentally also dragged in classes/kernel.bbclass I will redo the commit for wpa-supplicant later. classes/kernel.bbclass will be se a separate commit Thanks for Paul Menzel for spotting this Signed-off-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Diffstat (limited to 'recipes/wpa-supplicant')
-rw-r--r--recipes/wpa-supplicant/files/use-channel.patch32
1 files changed, 32 insertions, 0 deletions
diff --git a/recipes/wpa-supplicant/files/use-channel.patch b/recipes/wpa-supplicant/files/use-channel.patch
new file mode 100644
index 0000000000..337c0422cd
--- /dev/null
+++ b/recipes/wpa-supplicant/files/use-channel.patch
@@ -0,0 +1,32 @@
+
+#
+# Patch managed by http://www.holgerschurig.de/patcher.html
+#
+
+--- wpa_supplicant/driver_wext.c~use-channel
++++ wpa_supplicant/driver_wext.c
+@@ -655,6 +655,12 @@
+ }
+
+
++static const long frequency_list[] =
++{
++ 2412, 2417, 2422, 2427, 2432, 2437, 2442,
++ 2447, 2452, 2457, 2462, 2467, 2472, 2484
++};
++
+ int wpa_driver_wext_get_scan_results(void *priv,
+ struct wpa_scan_result *results,
+ size_t max_size)
+@@ -739,6 +745,11 @@
+ case SIOCGIWFREQ:
+ if (ap_num < max_size) {
+ int div = 1000000, i;
++ /* driver sent a channel, not a frequency */
++ if (iwe->u.freq.e == 0 && iwe->u.freq.m >= 1 && iwe->u.freq.m <= sizeof(frequency_list)) {
++ results[ap_num].freq = frequency_list[iwe->u.freq.m-1];
++ break;
++ } else
+ if (iwe->u.freq.e > 6) {
+ wpa_printf(
+ MSG_DEBUG, "Invalid freq "