diff options
author | Frans Meulenbroeks <fransmeulenbroeks@gmail.com> | 2010-09-30 08:28:41 +0200 |
---|---|---|
committer | Frans Meulenbroeks <fransmeulenbroeks@gmail.com> | 2010-09-30 08:30:16 +0200 |
commit | 285f58b3a48df7c4891afd02c7d9ca041675b41d (patch) | |
tree | 15de753b448fd9d38f0115d3012c78e742cc5eb9 /recipes/obsolete/wpa-supplicant/files | |
parent | 3870681ff63236659cda220c00b4d87ecac196f0 (diff) | |
download | openembedded-285f58b3a48df7c4891afd02c7d9ca041675b41d.tar.gz openembedded-285f58b3a48df7c4891afd02c7d9ca041675b41d.tar.bz2 openembedded-285f58b3a48df7c4891afd02c7d9ca041675b41d.zip |
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/obsolete/wpa-supplicant/files')
-rw-r--r-- | recipes/obsolete/wpa-supplicant/files/use-channel.patch | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/recipes/obsolete/wpa-supplicant/files/use-channel.patch b/recipes/obsolete/wpa-supplicant/files/use-channel.patch deleted file mode 100644 index 337c0422cd..0000000000 --- a/recipes/obsolete/wpa-supplicant/files/use-channel.patch +++ /dev/null @@ -1,32 +0,0 @@ - -# -# 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 " |