Re: [OpenWrt-Devel] [RFC TRY#2][PATCH] bgmac: pass received packet to the netif instead of copying it

2013-10-29 Thread Nathan Hintz
On Mon, 28 Oct 2013 18:42:22 +0100 Rafał Miłecki zaj...@gmail.com wrote: Hi: A few questions/comments inline... Nathan Copying whole packets with skb_copy_from_linear_data_offset is a pretty bad idea. CPU was spending time in __copy_user_common and network performance was lower. With the

Re: [OpenWrt-Devel] [RFC TRY#2][PATCH] bgmac: pass received packet to the netif instead of copying it

2013-10-29 Thread Rafał Miłecki
2013/10/29 Nathan Hintz nlhi...@hotmail.com: On Mon, 28 Oct 2013 18:42:22 +0100 Rafał Miłecki zaj...@gmail.com wrote: Hi: A few questions/comments inline... Nathan Copying whole packets with skb_copy_from_linear_data_offset is a pretty bad idea. CPU was spending time in

Re: [OpenWrt-Devel] Convert cambria-setup.c to use ehci-platform driver

2013-10-29 Thread Michael Weiser
Hello Tim, On Mon, Oct 28, 2013 at 09:40:00AM -0700, Tim Harvey wrote: Is there a conversion of cambria-setup.c to ehci-platform floating around somewhere? I'd be happy to give it a go myself if someone could give me a starting point on how to convert a ixp4xx-ehci user to

[OpenWrt-Devel] build fails when uhttpd is built without TLS/SSL with r38575 / Trac fails for new tickets

2013-10-29 Thread Bastian Bittorf
again trac fails openening a new ticket, because of SPAM: build fails when uhttpd is built without TLS/SSL with r38575: {{{ make dirclean rm .config make menuconfig - select brcm63xx - select uhttpd make }}} results in: {{{

Re: [OpenWrt-Devel] AR9344 wifi dying on WD N600 routers

2013-10-29 Thread omggo
Im having a simikar issue with my wnr3700v2, the wifi just dont work nothing in logs :/ Is your router version 4 (even though the box says wnr3700v2). I noticed in the wiki that version 4 has the same chipset as the WD n600, the AR9344. On Tue, Oct 29, 2013 at 1:53 PM, RealOpty

[OpenWrt-Devel] netifd macvlan support

2013-10-29 Thread Gui Iribarren
I'm trying to get a macvlan interface brought up by netifd on last week openwrt trunk BARRIER BREAKER (Bleeding Edge, r38505) with netifd - 2013-10-19-566af724dad393fa127e07469dcc9ade62bd3a75 and i'm probably missing something very silly, but i'm not getting any reaction or error whatsoever.

Re: [OpenWrt-Devel] netifd macvlan support

2013-10-29 Thread Gui Iribarren
On 10/29/2013 01:31 PM, Gui Iribarren wrote: I'm trying to get a macvlan interface brought up by netifd on last week openwrt trunk BARRIER BREAKER (Bleeding Edge, r38505) with netifd - 2013-10-19-566af724dad393fa127e07469dcc9ade62bd3a75 and i'm probably missing something very silly, but i'm not

Re: [OpenWrt-Devel] netifd macvlan support

2013-10-29 Thread Felix Fietkau
On 2013-10-29 13:31, Gui Iribarren wrote: I'm trying to get a macvlan interface brought up by netifd on last week openwrt trunk BARRIER BREAKER (Bleeding Edge, r38505) with netifd - 2013-10-19-566af724dad393fa127e07469dcc9ade62bd3a75 and i'm probably missing something very silly, but i'm

[OpenWrt-Devel] [PATCH] [ar71xx] Support for HiWifi HC6361 router

2013-10-29 Thread Xiaoning Kang
From: Xiaoning Kang kan...@gmail.com HiWifi HC6361(aka tw150v1) is a router developed by http://www.hiwifi.com, which is basically a WR703N with larger flash and ram. It also carries a 4G emmc chip. The manufacturer had released a copy of modified openwrt sources at https://code.hiwifi.com/.

[OpenWrt-Devel] Installing Linux kernel image to rootfs

2013-10-29 Thread Yegor Yefremov
I want OpenWrt (12.09) to install Kernel (zImage/uImage) to /boot. What *.mk file should I change? So far I could only find BIN_DIR in include/kernel-build.mk, but it is for kernel-debug.tar.bz2. Regards, Yegor ___ openwrt-devel mailing list

Re: [OpenWrt-Devel] Installing Linux kernel image to rootfs

2013-10-29 Thread Felix Fietkau
On 2013-10-29 15:27, Yegor Yefremov wrote: I want OpenWrt (12.09) to install Kernel (zImage/uImage) to /boot. What *.mk file should I change? So far I could only find BIN_DIR in include/kernel-build.mk, but it is for kernel-debug.tar.bz2. What platform, and why? - Felix

Re: [OpenWrt-Devel] Installing Linux kernel image to rootfs

2013-10-29 Thread Yegor Yefremov
On Tue, Oct 29, 2013 at 3:42 PM, Felix Fietkau n...@openwrt.org wrote: On 2013-10-29 15:27, Yegor Yefremov wrote: I want OpenWrt (12.09) to install Kernel (zImage/uImage) to /boot. What *.mk file should I change? So far I could only find BIN_DIR in include/kernel-build.mk, but it is for

[OpenWrt-Devel] [PATCH] libnetfilter-conntrack: update to 1.0.4

2013-10-29 Thread Ulrich Weber
update libnetfilter-conntrack to 1.0.4 Signed-off-by: Ulrich Weber u...@xyne.com --- package/libs/libnetfilter-conntrack/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/libs/libnetfilter-conntrack/Makefile b/package/libs/libnetfilter-conntrack/Makefile

[OpenWrt-Devel] [PATCH] lldpd: update to 0.7.6, add lldpcli

2013-10-29 Thread Ulrich Weber
lldpctl symlinks to lldpcli Signed-off-by: Ulrich Weber u...@xyne.com --- package/network/services/lldpd/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package/network/services/lldpd/Makefile b/package/network/services/lldpd/Makefile index d850b11..5b634eb

Re: [OpenWrt-Devel] Installing Linux kernel image to rootfs

2013-10-29 Thread Felix Fietkau
On 2013-10-29 15:54, Yegor Yefremov wrote: On Tue, Oct 29, 2013 at 3:42 PM, Felix Fietkau n...@openwrt.org wrote: On 2013-10-29 15:27, Yegor Yefremov wrote: I want OpenWrt (12.09) to install Kernel (zImage/uImage) to /boot. What *.mk file should I change? So far I could only find BIN_DIR in

Re: [OpenWrt-Devel] Installing Linux kernel image to rootfs

2013-10-29 Thread Yegor Yefremov
On Tue, Oct 29, 2013 at 4:16 PM, Felix Fietkau n...@openwrt.org wrote: On 2013-10-29 15:54, Yegor Yefremov wrote: On Tue, Oct 29, 2013 at 3:42 PM, Felix Fietkau n...@openwrt.org wrote: On 2013-10-29 15:27, Yegor Yefremov wrote: I want OpenWrt (12.09) to install Kernel (zImage/uImage) to /boot.

Re: [OpenWrt-Devel] Installing Linux kernel image to rootfs

2013-10-29 Thread John Crispin
On 29/10/13 16:26, Yegor Yefremov wrote: On Tue, Oct 29, 2013 at 4:16 PM, Felix Fietkaun...@openwrt.org wrote: On 2013-10-29 15:54, Yegor Yefremov wrote: On Tue, Oct 29, 2013 at 3:42 PM, Felix Fietkaun...@openwrt.org wrote: On 2013-10-29 15:27, Yegor Yefremov wrote: I want OpenWrt (12.09)

Re: [OpenWrt-Devel] Installing Linux kernel image to rootfs

2013-10-29 Thread Felix Fietkau
On 2013-10-29 16:26, Yegor Yefremov wrote: On Tue, Oct 29, 2013 at 4:16 PM, Felix Fietkau n...@openwrt.org wrote: On 2013-10-29 15:54, Yegor Yefremov wrote: On Tue, Oct 29, 2013 at 3:42 PM, Felix Fietkau n...@openwrt.org wrote: On 2013-10-29 15:27, Yegor Yefremov wrote: I want OpenWrt (12.09)

[OpenWrt-Devel] [PATCH] [packages] send: move patch to right location

2013-10-29 Thread Michael Heimpold
Signed-off-by: Michael Heimpold m...@heimpold.de --- ipv6/send/Makefile |2 +- {send = ipv6/send}/patches/007-use-flex.patch |0 2 files changed, 1 insertion(+), 1 deletion(-) rename {send = ipv6/send}/patches/007-use-flex.patch (100%) diff --git

[OpenWrt-Devel] [PATCH] [packages] postgresql: fix build due to missing link to libpthread

2013-10-29 Thread Michael Heimpold
This fixes the following linker error: ./../src/interfaces/libpq/libpq.so: undefined reference to `pthread_sigmask' Signed-off-by: Michael Heimpold m...@heimpold.de --- libs/postgresql/Makefile |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/postgresql/Makefile

[OpenWrt-Devel] build root output binary package name

2013-10-29 Thread cmsv
I think that someone has asked the same a while ago but i lost track of the email in the mailing list so here it goes again. I have been having some difficulty in finding the source code file that is responsible for the binary package prefix name. In other words the file that prefixes a very

[OpenWrt-Devel] [PATCH] cns3xxx: add pushbutton GPIO for GW2380/82/83

2013-10-29 Thread Tim Harvey
Signed-off-by: Tim Harvey thar...@gateworks.com --- .../cns3xxx/files/arch/arm/mach-cns3xxx/laguna.c |3 +++ 1 file changed, 3 insertions(+) diff --git a/target/linux/cns3xxx/files/arch/arm/mach-cns3xxx/laguna.c b/target/linux/cns3xxx/files/arch/arm/mach-cns3xxx/laguna.c index

[OpenWrt-Devel] [PATCH] cns3xxx: add uImage image build

2013-10-29 Thread Tim Harvey
- add building of a standard uImage along with the combined kernel+rootfs - remove 'old' image build - that was for a very old and obsolete bootloader To update the bootloader for GW2387,GW2388,GW2391 (NOR Flash) from uboot: put latest NOR bootloader on tftp server: