Re: [ath5k-devel] [PATCH 1/1] Ath5k: add AP mode

2008-10-27 Thread Lukáš Turek
On 22.10.2008 16:19 you wrote: > > b) For some reason it only works with 5212/5213 cards, i tested it on > > a 5413 and an 2425 and it didn't work (hostapd seems to hang). > > I've ordered 5413 ;), will come with updates. Thanks for the patches. I tried them on 2.6.26 kernel with compat-wireless-o

Re: [ath5k-devel] [PATCH 1/1] Ath5k: add AP mode

2008-10-24 Thread Lukáš Turek
On 22.10.2008 16:19 you wrote: > > b) For some reason it only works with 5212/5213 cards, i tested it on > > a 5413 and an 2425 and it didn't work (hostapd seems to hang). > > I've ordered 5413 ;), will come with updates. Thanks for the patches. I tried them on 2.6.26 kernel with compat-wireless-o

Re: [ath5k-devel] [PATCH 1/1] Ath5k: add AP mode

2008-10-22 Thread Jiri Slaby
On 10/21/2008 08:08 PM, Nick Kossifidis wrote: > 2008/10/12 Jiri Slaby <[EMAIL PROTECTED]>: >> Add support for AP mode. This involves: >> - enablement in ath5k_beacon_config -- initialize beacon timer >> - add AP to the supported modes in ath5k_add_interface >> - handle beacon change even for AP in

Re: [ath5k-devel] [PATCH 1/1] Ath5k: add AP mode

2008-10-21 Thread Nick Kossifidis
2008/10/12 Jiri Slaby <[EMAIL PROTECTED]>: > Add support for AP mode. This involves: > - enablement in ath5k_beacon_config -- initialize beacon timer > - add AP to the supported modes in ath5k_add_interface > - handle beacon change even for AP in ath5k_config_interface > - remove useless test for I

[ath5k-devel] [PATCH 1/1] Ath5k: add AP mode

2008-10-12 Thread Jiri Slaby
Add support for AP mode. This involves: - enablement in ath5k_beacon_config -- initialize beacon timer - add AP to the supported modes in ath5k_add_interface - handle beacon change even for AP in ath5k_config_interface - remove useless test for IBSS in ath5k_beacon_update Note that it doesn't enab

Re: [ath5k-devel] [PATCH 1/1] Ath5k: add AP mode

2008-09-28 Thread Jiri Slaby
On 09/28/2008 01:06 PM, Gregory Nietsky wrote: > > Quick Observation ... > > it appears IEEE80211 types have been replaced with NL80211 types in > kernel ... so would the following not be more correct and is opmode not > defined as > > struct ath5k_softc { > >enum nl80211_iftype

Re: [ath5k-devel] [PATCH 1/1] Ath5k: add AP mode

2008-09-28 Thread Gregory Nietsky
Quick Observation ... it appears IEEE80211 types have been replaced with NL80211 types in kernel ... so would the following not be more correct and is opmode not defined as struct ath5k_softc { enum nl80211_iftype opmode; . @@ -2130,14 +2129,15 @@ ath5k_beacon_config(str

Re: [ath5k-devel] [PATCH 1/1] Ath5k: add AP mode

2008-09-28 Thread Gregory Nietsky
Gents it is great to see this happen one snippet more and you will be able to set the interface into AP mode from userspace hostapd and friends. diff --git a/drivers/net/wireless/ath5k/base.c b/drivers/net/wireless/ath5k/base.c index e09ed2c..69aad6e 100644 --- a/drivers/net/wireless/ath5k/base

[ath5k-devel] [PATCH 1/1] Ath5k: add AP mode

2008-09-27 Thread Jiri Slaby
Add support for AP mode. This involves: - enablement in ath5k_beacon_config -- initialize beacon timer - add AP to the supported modes in ath5k_add_interface - handle beacon change even for AP in ath5k_config_interface - remove useless test for IBSS in ath5k_beacon_update Signed-off-by: Jiri Slaby