Re: [OpenWrt-Devel] Maintenance of external packages

2013-04-26 Thread Jiri Slachta
Dne 25.4.2013 17:42, Guillermo Senna napsal(a): Hi, I wanted to ask what is the situation of packages inside feeds? Does this list still receives patches for external packages? I ask this because faad2 library for example in AA still has an old Makefile when there was Changeset 34527 made 5

[OpenWrt-Devel] [PATCH] [lantiq] ltq-atm: add rx tasklet

2013-04-26 Thread Luca dariz
Use a tasklet to handle incoming packets. Fix #12917. Incoming packets are now processes in a tasklet instead of in the irq handler; this should improve latency. This patch is based on a previous version of ltq-atm driver, which did implement a tasklet. It has been tested on a arv4518pw with a

Re: [OpenWrt-Devel] [PATCH] [lantiq] ltq-atm: add rx tasklet

2013-04-26 Thread Conor O'Gorman
On Fri, 2013-04-26 at 14:13 +0200, Luca dariz wrote: Use a tasklet to handle incoming packets. Fix #12917. Incoming packets are now processes in a tasklet instead of in the irq handler; this should improve latency. This patch is based on a previous version of ltq-atm driver, which did

Re: [OpenWrt-Devel] Maintenance of external packages

2013-04-26 Thread Guillermo Senna
I see. I asked because there was a time when it was being said that as the project kept growing, it was impossible for the developers to also maintain external packages. I have a question, is there a way of browsing the Makefiles of the packages in feeds of AA for example? Because here '

[OpenWrt-Devel] snmpd trap for IPv6

2013-04-26 Thread Pietro Paolini
Hello all, I am experiencing probleming configuring the snmpd daemon trap for IPv6, I am using this line : trap2sink udp6:[fe80::aa20:66ff:fe39:a181]:162 In this configuration file: agentaddress UDP:161 agentaddress UDP6:161 authtrapenable 2 sysObjectID 1.3.6.1.4.1.9303.1.6.4 com2sec public

Re: [OpenWrt-Devel] [PATCH] mpc85xx: Add subtargets Generic and P1020

2013-04-26 Thread Gabor Juhos
2013.04.16. 17:18 keltezéssel, Helmut Schaa írta: Only difference between Generic and P1020 is that P1020 enables SMP with two CPUs in the kernel config. Signed-off-by: Helmut Schaa helmut.sc...@googlemail.com Applied. Thanks, Gabor ___

Re: [OpenWrt-Devel] [PATCH] [ar71xx] Add support for TPLINK WR720N v3

2013-04-26 Thread Gabor Juhos
2013.04.10. 4:50 keltezéssel, Yousong Zhou írta: Add support for TPLINK WR720N v3 which has 4MB flash, 32MB ram, 2 ethernet interfaces, 1 USB 2.0 port. The patch is mostly a modification from mach-tl-wr703n.c. GPIO numbers for the slider switch is from mach-tl-mr3020n.c. Tested on my

Re: [OpenWrt-Devel] [PATCH] ar71xx: Add Netgear WNR2000v3 support

2013-04-26 Thread Gabor Juhos
2013.04.22. 18:29 keltezéssel, Mathieu Olivari írta: Network connectivity works fine (LAN and WAN). For GPIOs, only pwr led and the green wan leds are supported for now. Signed-off-by: Mathieu Olivari mathieu.oliv...@gmail.com Applied. Thanks, Gabor

Re: [OpenWrt-Devel] Maintenance of external packages

2013-04-26 Thread Jonas Gorski
On Fri, Apr 26, 2013 at 5:18 PM, Guillermo Senna gse...@gmail.com wrote: I have a question, is there a way of browsing the Makefiles of the packages in feeds of AA for example? Because here 'https://dev.openwrt.org/browser/packages/libs/faad2/Makefile' is the new Makefile, but where is the old

Re: [OpenWrt-Devel] [PATCH] [lantiq] ltq-atm: add rx tasklet

2013-04-26 Thread Luca dariz
Il 26/04/2013 16:35, Conor O'Gorman ha scritto: On Fri, 2013-04-26 at 14:13 +0200, Luca dariz wrote: Use a tasklet to handle incoming packets. Fix #12917. Incoming packets are now processes in a tasklet instead of in the irq handler; this should improve latency. This patch is based on a

[OpenWrt-Devel] Traffic Control Subsystem

2013-04-26 Thread scolfield
Hello, I have a doubt about queue length, more specifically, if the parameter called *limit* from PFIFO/BFIFO works well or not. I've tried to configure the queue length of the Ethernet interface via TC command and everything was well, but when I used IFCONFIG command to see the '*txqueuelen*',

[OpenWrt-Devel] Math operation gets wrong result on ar71xx for AA

2013-04-26 Thread Luiz Angelo Daros de Luca
Hello, I reported a bug that prevents partitions in a large disk (1.5TB) to be used here: https://dev.openwrt.org/ticket/13420 I already isolated it to this line: /block/partitions/msdos.c: this_sector = first_sector + start_sect(p) * sector_size; And some printk show their values: [

Re: [OpenWrt-Devel] Math operation gets wrong result on ar71xx for AA

2013-04-26 Thread David Newall
On 27/04/13 11:15, Luiz Angelo Daros de Luca wrote: The correct output would be 2273342085 and not 18446744071687926405. Comparing both, the MSB 32bit of first_sector becomes all 1. 2273342085 = 0x87807285 18446744071687926405 = 0x87807285 Any idea of why? Maybe

[OpenWrt-Devel] WNDR4300

2013-04-26 Thread David Lang
As far as I can tell the openwrt for the 4300 requires using a initramfs image instead of a squashfs or jffs image. But how do you load the initramfs image on the system? I managed to compile such an image, but I was unable to successfully load it using the standard netgear

Re: [OpenWrt-Devel] Math operation gets wrong result on ar71xx for AA

2013-04-26 Thread Luiz Angelo Daros de Luca
The usage of sign-extension might be cause. The problem is that all these variables are sector_t, which as far as I know, is a u64. Even if it was using signed variable, all of them are 64bit and using values much lower that 2^63. As mips is not a 64-bit processor, the compiler must do it by

Re: [OpenWrt-Devel] Math operation gets wrong result on ar71xx for AA

2013-04-26 Thread Wojciech Kromer
W dniu 27.04.2013 03:45, Luiz Angelo Daros de Luca pisze: /block/partitions/msdos.c: this_sector = first_sector + start_sect(p) * sector_size; please look at linux/types.h maybe CONFIG_LBDAF is not set #ifdef CONFIG_LBDAF typedef u64 sector_t; typedef u64 blkcnt_t; #else typedef