Re: [OpenWrt-Devel] LUCI works extremely slow...

2013-08-01 Thread Benjamin Henrion
Thursday, August 1, 2013, Gabriele Pinzauti wrote: > Hello, > I unfortunately flashed my WRT54GL with 12.09 and then I realize that the web interface is now extremely slow. Same experience here here 2 days ago with a wrt54gl. I uninstalled luci and the CPU was suddenly breathing better. > What

Re: [OpenWrt-Devel] DFS & ath9k

2013-08-01 Thread Dirk Neukirchen
On 01.08.2013 19:04, Daniel Dickinson wrote: Hi, Is there any progress on DFS for ath9k/mac80211? Also what support is there presently? (Is it still a case of some kernel hooks, but no userspace; and is the kernel support at least complete?) I'm not asking for estimated availability, just wha

[OpenWrt-Devel] [RFC] BCM6368 an FPU emulation problems.

2013-08-01 Thread José Vázquez
Trying to port the Comtrend VR-3025un and VR-3025u (they are explained in the wiki), both based in bcm6368, a colleague and me experienced, when enabling FPU emulation in the kernel, a hang when enabling the second core or data corruption in JFFS2. The first issue were noticed by my colleague

[OpenWrt-Devel] DFS & ath9k

2013-08-01 Thread Daniel Dickinson
Hi, Is there any progress on DFS for ath9k/mac80211? Also what support is there presently? (Is it still a case of some kernel hooks, but no userspace; and is the kernel support at least complete?) I'm not asking for estimated availability, just what exists and if there is forward motion.

Re: [OpenWrt-Devel] LUCI works extremely slow...

2013-08-01 Thread camden lindsay
I am by no means an expert, but i recently did up/downgrades from 12.09 to trunk and back (after finding 12.09 would oom during boot) using the suggestions here: http://wiki.openwrt.org/doc/howto/generic.sysupgrade#free.up.ram In addition to that, i spent quite some time figureing out what all pr

Re: [OpenWrt-Devel] Ubus and netifd

2013-08-01 Thread Pietro Paolini
On Aug 1, 2013, at 4:00 PM, Felix Fietkau wrote: > On 2013-08-01 3:17 PM, Pietro Paolini wrote: >> Hello all, >> >> I had a look to the /etc/init.d/network script and I would like >> understand the details of its implementation, especially regarding >> the reload() function; I have to say in ad

Re: [OpenWrt-Devel] Ubus and netifd

2013-08-01 Thread Felix Fietkau
On 2013-08-01 3:17 PM, Pietro Paolini wrote: > Hello all, > > I had a look to the /etc/init.d/network script and I would like > understand the details of its implementation, especially regarding > the reload() function; I have to say in advance that I don't have a > big experience of ubus and neti

[OpenWrt-Devel] Ubus and netifd

2013-08-01 Thread Pietro Paolini
Hello all, I had a look to the /etc/init.d/network script and I would like understand the details of its implementation, especially regarding the reload() function; I have to say in advance that I don't have a big experience of ubus and netifd - maybe should be better say that I know nothing a

Re: [OpenWrt-Devel] LUCI works extremely slow...

2013-08-01 Thread Gabriele Pinzauti
Hello, I unfortunately flashed my WRT54GL with 12.09 and then I realize that the web interface is now extremely slow. What is, in your opinion, the best practice to downgrade from 12.09 to 10.03.1? I am able to connect to the shell, via SSH, but I am afraid mtd process will be broken due to the lac

[OpenWrt-Devel] [PATCH] Enable kmod-hid-generic driver when selecting kmod-hid

2013-08-01 Thread Álvaro Fernández Rojas
kmod-hid-generic needs to be selected when enabling kmod-hid in order to get generic devices working. This fixes keyboard support in linux 3.3+ kernels. https://dev.openwrt.org/ticket/12631 https://dev.openwrt.org/ticket/12686 Signed-off-by: Álvaro Fernández Rojas --- diff --git a/package/kerne

Re: [OpenWrt-Devel] [PATCH 0/3] Fix triggering failsafe on every booting.

2013-08-01 Thread Yousong Zhou
On Thu, Aug 01, 2013 at 12:58:58PM +0200, John Crispin wrote: > On 01/08/13 13:02, Yousong Zhou wrote: > >Hi, this series tries to fix unintended failsafe triggering by initializing > >buttons' last_status with its actual value instead of always 0 (released). > >Otherwise devices with like TL-WR720

Re: [OpenWrt-Devel] [PATCH 0/3] Fix triggering failsafe on every booting.

2013-08-01 Thread John Crispin
On 01/08/13 13:02, Yousong Zhou wrote: Hi, this series tries to fix unintended failsafe triggering by initializing buttons' last_status with its actual value instead of always 0 (released). Otherwise devices with like TL-WR720N-v3 would always go into failsafe as some of its GPIO buttons are alw

[OpenWrt-Devel] [PATCH 2/3] gpio-button-hotplug: use gpio_button_get_value() to fetch state.

2013-08-01 Thread Yousong Zhou
Signed-off-by: Yousong Zhou --- .../gpio-button-hotplug/src/gpio-button-hotplug.c |5 + 1 files changed, 1 insertions(+), 4 deletions(-) diff --git a/package/kernel/gpio-button-hotplug/src/gpio-button-hotplug.c b/package/kernel/gpio-button-hotplug/src/gpio-button-hotplug.c index 7fe16

[OpenWrt-Devel] [PATCH 3/3] gpio-button-hotplug: use gpio_button_get_value() to initialize last_state.

2013-08-01 Thread Yousong Zhou
TL-WR720N-v3 has a slider switch composed of 2 GPIO buttons which can be used to swtich between 3 positions. At leat 1 button is in pressed state in any of those positions. Initialize 'last_state' as 0 (released) will cause the device to automatically enter failsafe mode on every bootup. Signed-

[OpenWrt-Devel] [PATCH 1/3] gpio-button-hotplug: add inline function gpio_button_get_value().

2013-08-01 Thread Yousong Zhou
Signed-off-by: Yousong Zhou --- .../gpio-button-hotplug/src/gpio-button-hotplug.c |9 + 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/package/kernel/gpio-button-hotplug/src/gpio-button-hotplug.c b/package/kernel/gpio-button-hotplug/src/gpio-button-hotplug.c index 0

[OpenWrt-Devel] [PATCH 0/3] Fix triggering failsafe on every booting.

2013-08-01 Thread Yousong Zhou
Hi, this series tries to fix unintended failsafe triggering by initializing buttons' last_status with its actual value instead of always 0 (released). Otherwise devices with like TL-WR720N-v3 would always go into failsafe as some of its GPIO buttons are always in pressed state. It's weird that th

[OpenWrt-Devel] wr703n wifi stop work

2013-08-01 Thread xuming_lee
wr703n is AP mode. Version: AA 12.09 Revision: 36447. wifi stop work, ssid not visible. This occasionally happen. I notice others meet same problem, ath79 driver have bug ? 1> run: iw wlan scan, have info [ 2253.53] ath: phy0: DMA failed to stop in 10 ms AR_CR=0xdeadbeef