Re: [OpenWrt-Devel] More bad RPATH

2015-02-09 Thread Jo-Philipp Wich
Hi Etienne, please test after fresh build with these two patches applied: http://luci.subsignal.org/~jow/rpath/ My first thought was to fixup libtool to not spray rpaths all over the place but since replacing every libtool in every package seems futile the next best place to do so would be the

[OpenWrt-Devel] [PATCH v1 0/7] Add custom TRX header option

2015-02-09 Thread Will Sheppard
Patchset to essentially add custom TRX header to all firmware produced. This is most useful for the Belkin routers from my experience. I'm not how other trx based firmwares modify the header for their own purposes. This is applied across the board so that the kernel, trx tools and mtd tools are

Re: [OpenWrt-Devel] raspberry pi v3.19

2015-02-09 Thread Florian Fainelli
On Feb 9, 2015 4:25 AM, John Crispin blo...@openwrt.org wrote: Hi, i synced our rpi port with the upstream tree on github. it boots and i can see the coloured palette test pic on the hdmi, however ethernet fails to come up. i attached a uart just to find out that my rpi is either broken or

[OpenWrt-Devel] [PATCH v1 7/7] mtd: Fix makefile to work with quilt as per wiki

2015-02-09 Thread Will Sheppard
Signed-off-by: Will Sheppard wshepp...@embedded-bits.co.uk --- package/system/mtd/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/package/system/mtd/Makefile b/package/system/mtd/Makefile index 91c4fac..5da27d1 100644 --- a/package/system/mtd/Makefile +++

[OpenWrt-Devel] [PATCH v1 4/7] trx: Add custom TRX option to trx firmware tool

2015-02-09 Thread Will Sheppard
Signed-off-by: Will Sheppard wshepp...@embedded-bits.co.uk --- tools/firmware-utils/Makefile | 4 tools/firmware-utils/src/trx.c | 10 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/tools/firmware-utils/Makefile b/tools/firmware-utils/Makefile index

[OpenWrt-Devel] [PATCH v1 1/7] config: Add option to specify custom TRX header

2015-02-09 Thread Will Sheppard
Signed-off-by: Will Sheppard wshepp...@embedded-bits.co.uk --- config/Config-images.in | 15 +++ 1 file changed, 15 insertions(+) diff --git a/config/Config-images.in b/config/Config-images.in index 5c2e79e..e4e4804 100644 --- a/config/Config-images.in +++ b/config/Config-images.in

[OpenWrt-Devel] [PATCH v1 5/7] mtd: Add debug showing header magic in use

2015-02-09 Thread Will Sheppard
Signed-off-by: Will Sheppard wshepp...@embedded-bits.co.uk --- package/system/mtd/src/trx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/system/mtd/src/trx.c b/package/system/mtd/src/trx.c index 1722cf2..776cb82 100644 --- a/package/system/mtd/src/trx.c +++

[OpenWrt-Devel] [PATCH v1 6/7] kernel: bcm47xx: Add custom TRX header option to kernel

2015-02-09 Thread Will Sheppard
Signed-off-by: Will Sheppard wshepp...@embedded-bits.co.uk --- .../patches-3.14/162-Belkin_custom_trx_magic.patch | 35 ++ 1 file changed, 35 insertions(+) create mode 100644 target/linux/brcm47xx/patches-3.14/162-Belkin_custom_trx_magic.patch diff --git

[OpenWrt-Devel] [PATCH v1 3/7] mtd: Fix: Use TRX_MAGIC define not hard-coded number

2015-02-09 Thread Will Sheppard
Signed-off-by: Will Sheppard wshepp...@embedded-bits.co.uk --- package/system/mtd/src/trx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/system/mtd/src/trx.c b/package/system/mtd/src/trx.c index 5d0f364..1722cf2 100644 --- a/package/system/mtd/src/trx.c +++

Re: [OpenWrt-Devel] au1xxx v3.18

2015-02-09 Thread John Crispin
On 09/02/2015 21:56, Bruno Randolf wrote: [0.00] Kernel command line: root=/dev/mtdblock/0 console=ttyS0,115200 root=/dev/mtdblock0 rootfstype=squashfs,jffs2 what does that look like on 3.14 ? on mediatek the bug was that the wrong cmdline was used, causing a bad base_baud to be set

Re: [OpenWrt-Devel] [PATCH] @44360 scripts

2015-02-09 Thread John Crispin
Hi, the subject is wonky On 09/02/2015 15:55, . wrote: From d1f104b6fe94507a80b85943fd1d4ba895f4e0a0 Mon Sep 17 00:00:00 2001 From: Detlef Schmitt blubb...@nurfuerspam.de not sure what to think of this email addr Date: Mon, 9 Feb 2015 15:35:28 +0100 Subject: [PATCH 2/2] daemon.notice

Re: [OpenWrt-Devel] au1xxx v3.18

2015-02-09 Thread John Crispin
On 09/02/2015 21:56, Bruno Randolf wrote: Hi John, Something's wrong with the serial, but I was able to login via Ethernet. I did not verify PCI yet, as I only have a PCI adapter on the cubes which are in use. Serial log below: bruno On 02/09/2015 12:26 PM, John Crispin wrote:

Re: [OpenWrt-Devel] Support for DFS 5470 - 5725MHz DFS channels in US?

2015-02-09 Thread Dirk Neukirchen
On 10.02.2015 05:32, Ben West wrote: I found on a UBNT Nanostation running BB r43824 that apparently only a subset of the DFS 5.8GHz channels are enabled. This matches the channel definitions in the reg DB file: https://dev.openwrt.org/browser/trunk/package/kernel/mac80211/files/regdb.txt

[OpenWrt-Devel] [PATCH v1 2/7] mtd: Add custom trx magic option to mtd tool

2015-02-09 Thread Will Sheppard
Signed-off-by: Will Sheppard wshepp...@embedded-bits.co.uk --- package/system/mtd/Makefile | 8 +++- package/system/mtd/src/trx.c | 6 ++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/package/system/mtd/Makefile b/package/system/mtd/Makefile index 8d7bb44..91c4fac 100644

Re: [OpenWrt-Devel] lantiq v3.18

2015-02-09 Thread Daniel Gimpelevich
On Mon, 2015-02-09 at 13:30 +0100, John Crispin wrote: Hi, i bumped the lantiq support to v3.18 and tested it on 6 different boards. I have not tested vdsl support due to lack of a vdsl line. could someone please do so. @antii: can you rebase/resnd the dwc2 series ? it does not apply to

[OpenWrt-Devel] [PATCH] BB:ramips:Kingston MLW221 cleanup

2015-02-09 Thread L. D. Pinney
MLW221 dts use tabs NOT spaces. Cleanup uci-defaults and diag.sh Signed-off-by: L. D. Pinney ldpin...@gmail.com --- target/linux/ramips/base-files/etc/diag.sh | 4 +- target/linux/ramips/base-files/etc/uci-defaults/01_leds| 5 +-

Re: [OpenWrt-Devel] raspberry pi v3.19

2015-02-09 Thread John Crispin
On 09/02/2015 18:12, Florian Fainelli wrote: Could you share the boot log to see if there is anything obvious? Hi, without uart i get no bootlog. i just see the coloured palette on the hdmi. but the uart stays quiet. i am starting to wonder if the uart is dead. John

Re: [OpenWrt-Devel] lantiq v3.18

2015-02-09 Thread John Crispin
there is no ar9 target. can you give me your .config file please ? On 09/02/2015 18:30, Daniel Gimpelevich wrote: On Mon, 2015-02-09 at 13:30 +0100, John Crispin wrote: Hi, i bumped the lantiq support to v3.18 and tested it on 6 different boards. I have not tested vdsl support due to lack

Re: [OpenWrt-Devel] lantiq v3.18

2015-02-09 Thread John Crispin
On 09/02/2015 18:30, Daniel Gimpelevich wrote: On Mon, 2015-02-09 at 13:30 +0100, John Crispin wrote: Hi, i bumped the lantiq support to v3.18 and tested it on 6 different boards. I have not tested vdsl support due to lack of a vdsl line. could someone please do so. @antii: can you

Re: [OpenWrt-Devel] raspberry pi v3.19

2015-02-09 Thread Álvaro Fernández Rojas
I tried adding support for 3.18 and I have issues booting the raspberry. There must be something wrong with the new mmc driver, because it detects the SD card insertions/extractiones, but doesn't read the partitions: http://pastebin.com/GWFYrXnT My patches:

Re: [OpenWrt-Devel] lantiq v3.18

2015-02-09 Thread John Crispin
bootlog please On 09/02/2015 21:25, Daniel Gimpelevich wrote: On Mon, 2015-02-09 at 19:18 +0100, John Crispin wrote: try r44366 or newer please SPI flash is not detected, bricking the device. ___ openwrt-devel mailing list

Re: [OpenWrt-Devel] [PATCH v1 0/7] Add custom TRX header option

2015-02-09 Thread Florian Fainelli
On 09/02/15 08:29, Will Sheppard wrote: Patchset to essentially add custom TRX header to all firmware produced. This is most useful for the Belkin routers from my experience. I'm not how other trx based firmwares modify the header for their own purposes. This is applied across the board so

[OpenWrt-Devel] Failsafe broken on Nexx WT3020

2015-02-09 Thread probono
Hi, I am asking for help on https://dev.openwrt.org/ticket/18768 Failsafe mode appears to be broken on the Nexx WT3020 as of r43977. I suspect that TCP connections are not working when VLAN is disabled just like on other MediaTek/Ralink chipsets. Can someone please have a look? Thanks, probono

[OpenWrt-Devel] A5-V11 images are missing in snapshots

2015-02-09 Thread probono
Hi, what is needed to get a certain target board into the snapshots? Specifically, A5-V11 images are missing in the ramips-rt305x snapshots on http://downloads.openwrt.org/snapshots/trunk/ramips/generic/ as described in https://dev.openwrt.org/ticket/18712 Thanks, probono

Re: [OpenWrt-Devel] lantiq v3.18

2015-02-09 Thread Daniel Gimpelevich
On Mon, 2015-02-09 at 19:18 +0100, John Crispin wrote: try r44366 or newer please SPI flash is not detected, bricking the device. ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org

Re: [OpenWrt-Devel] lantiq v3.18

2015-02-09 Thread Daniel Gimpelevich
On Mon, 2015-02-09 at 21:27 +0100, John Crispin wrote: bootlog please On 09/02/2015 21:25, Daniel Gimpelevich wrote: On Mon, 2015-02-09 at 19:18 +0100, John Crispin wrote: try r44366 or newer please SPI flash is not detected, bricking the device. [0.00] Linux version

Re: [OpenWrt-Devel] [PATCH v1 0/7] Add custom TRX header option

2015-02-09 Thread Will Sheppard
Hi - thanks for review; reply inline On 9 February 2015 at 20:52, Florian Fainelli flor...@openwrt.org wrote: On 09/02/15 08:29, Will Sheppard wrote: Patchset to essentially add custom TRX header to all firmware produced. This is most useful for the Belkin routers from my experience. I'm

Re: [OpenWrt-Devel] au1xxx v3.18

2015-02-09 Thread Bruno Randolf
Hi John, Something's wrong with the serial, but I was able to login via Ethernet. I did not verify PCI yet, as I only have a PCI adapter on the cubes which are in use. Serial log below: bruno On 02/09/2015 12:26 PM, John Crispin wrote: Hi Bruno, (or anyone else that has the hw at hand) i

Re: [OpenWrt-Devel] [PATCH] ar71xx: ZyXEL NBG6716 leds improvement ( correction - second attempt )

2015-02-09 Thread John Crispin
the 3 patches sent are white space broken and patchwork failed to pick them up. i have manually applied this patch, but please use git for sending patches in future. On 06/02/2015 12:27, Marcin Mikołajczak wrote: This patch fixes LEDs in ZyXEL NBG6716 - POWER LED was missing - USB LEDs

Re: [OpenWrt-Devel] [PATCH v1 0/7] Add custom TRX header option

2015-02-09 Thread Florian Fainelli
On 09/02/15 13:12, Will Sheppard wrote: Hi - thanks for review; reply inline On 9 February 2015 at 20:52, Florian Fainelli flor...@openwrt.org mailto:flor...@openwrt.org wrote: On 09/02/15 08:29, Will Sheppard wrote: Patchset to essentially add custom TRX header to all firmware

[OpenWrt-Devel] [PATCH] kernel: add missing symbol

2015-02-09 Thread Daniel Golle
Signed-off-by: Daniel Golle dan...@makrotopia.org --- target/linux/generic/config-3.18 | 1 + 1 file changed, 1 insertion(+) diff --git a/target/linux/generic/config-3.18 b/target/linux/generic/config-3.18 index b831223..52cc3b0 100644 --- a/target/linux/generic/config-3.18 +++

[OpenWrt-Devel] [PATCH] oxnas: switch to 3.18

2015-02-09 Thread Daniel Golle
Tested on stg212 and kd20. Signed-off-by: Daniel Golle dan...@makrotopia.org --- target/linux/oxnas/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/linux/oxnas/Makefile b/target/linux/oxnas/Makefile index 05ae8cf..186222d 100644 ---

[OpenWrt-Devel] [PATCH] ar71xx: add mc-mac1200r to do_load_ath10k_board_bin()

2015-02-09 Thread Roger Pueyo Centelles
This patch adds the mc-mac1200r target to do_load_ath10k_board_bin() in target/linux/ar71xx/base-files/lib/preinit/81_load_ath10k_board_bin to load the ath10k radio MAC address from the EEPROM in MERCURY MAC1200R devices Signed-off-by: Roger Pueyo Centelles roger.pu...@guifi.net ---

[OpenWrt-Devel] raspberry pi v3.19

2015-02-09 Thread John Crispin
Hi, i synced our rpi port with the upstream tree on github. it boots and i can see the coloured palette test pic on the hdmi, however ethernet fails to come up. i attached a uart just to find out that my rpi is either broken or i am connecting it wrong. has anyone managed to get uart working ?

Re: [OpenWrt-Devel] More bad RPATH

2015-02-09 Thread John Crispin
On 09/02/2015 14:07, Etienne Champetier wrote: Hi 2015-02-09 14:01 GMT+01:00 John Crispin blo...@openwrt.org mailto:blo...@openwrt.org: On 09/02/2015 13:57, Etienne Champetier wrote: Hi all, To follow r44328 (https://dev.openwrt.org/browser/trunk?rev=44328) (jow fix for cmake

Re: [OpenWrt-Devel] lantiq v3.18

2015-02-09 Thread Sylwek ScApi
I'll test it today. 9 lut 2015 13:30 John Crispin blo...@openwrt.org napisał(a): Hi, i bumped the lantiq support to v3.18 and tested it on 6 different boards. I have not tested vdsl support due to lack of a vdsl line. could someone please do so. @antii: can you rebase/resnd the dwc2 series

[OpenWrt-Devel] [PATCH] @44360 scripts

2015-02-09 Thread .
From d1f104b6fe94507a80b85943fd1d4ba895f4e0a0 Mon Sep 17 00:00:00 2001 From: Detlef Schmitt blubb...@nurfuerspam.de Date: Mon, 9 Feb 2015 15:35:28 +0100 Subject: [PATCH 2/2] daemon.notice netifd: wan (4235): udhcpc: option -h NAME is deprecated, use -x hostname:NAME daemon.notice netifd: wan

Re: [OpenWrt-Devel] raspberry pi v3.19

2015-02-09 Thread John Crispin
ok, so uart, how do you connect it ? On 10/02/2015 02:02, Álvaro Fernández Rojas wrote: I tried adding support for 3.18 and I have issues booting the raspberry. There must be something wrong with the new mmc driver, because it detects the SD card insertions/extractiones, but doesn't read the

[OpenWrt-Devel] Support for DFS 5470 - 5725MHz DFS channels in US?

2015-02-09 Thread Ben West
I found on a UBNT Nanostation running BB r43824 that apparently only a subset of the DFS 5.8GHz channels are enabled. Frequencies: * 5180 MHz [36] (17.0 dBm) * 5200 MHz [40] (17.0 dBm) * 5220 MHz [44] (17.0 dBm) * 5240 MHz [48] (17.0 dBm)