Re: [OpenWrt-Devel] BT Home Hub 2B support - nand driver patch (for comment only)

2014-01-22 Thread Ben Mulvihill
I missed that one on the mailing list. It is the same fix, or part of it anyway. Ben On Wed, 2014-01-22 at 01:01 +0100, Luka Perkov wrote: > On Tue, Jan 21, 2014 at 08:50:03PM +0100, Ben Mulvihill wrote: > > Any enlightenment you can provide will be gratefully received. > > I have not tested th

[OpenWrt-Devel] [PATCH 2/2] mpc85xx: Fix building ramdisk images

2014-01-22 Thread Helmut Schaa
Signed-off-by: Helmut Schaa --- target/linux/mpc85xx/image/Makefile | 8 ++-- 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/target/linux/mpc85xx/image/Makefile b/target/linux/mpc85xx/image/Makefile index 4c80bb7..5ecd100 100644 --- a/target/linux/mpc85xx/image/Makefile +++ b

[OpenWrt-Devel] [PATCH 1/2] mpc85xx: Remove inittab workaround

2014-01-22 Thread Helmut Schaa
The default inittab uses "askconsole" which is implemented by procd and uses the console provided by the kernel command line. Hence, this platform specific workaround is not necessary anymore. Signed-off-by: Helmut Schaa --- target/linux/mpc85xx/base-files/etc/inittab| 2 -- .../etc/uc

Re: [OpenWrt-Devel] BT Home Hub 2B support - nand driver patch (for comment only)

2014-01-22 Thread John Crispin
I have a feeling that the patch posted by luka will fix the fritz3370 problem. i have a vague recollection that it worked once upon a time. I also remember that in my last test it did not work, but i had wifi enabled so that would fit in with the missing locking. I'll let you know if that is the

Re: [OpenWrt-Devel] BT Home Hub 2B support - nand driver patch (for comment only)

2014-01-22 Thread Ben Mulvihill
That makes sense. Thanks again. Ben On Wed, 2014-01-22 at 10:30 +0100, John Crispin wrote: > I have a feeling that the patch posted by luka will fix the fritz3370 > problem. > > i have a vague recollection that it worked once upon a time. I also > remember that in my last test it did not work, b

Re: [OpenWrt-Devel] BT Home Hub 2B support - nand driver patch (for comment only)

2014-01-22 Thread Ben Mulvihill
On Wed, 2014-01-22 at 00:42 +0100, John Crispin wrote: > On 21/01/2014 21:55, David Lang wrote: > > On Tue, 21 Jan 2014, Ben Mulvihill wrote: > > > >> The nand driver currently in trunk works fine, provided ... > > > > what is the current status of nand flash support? I asked about this > > within

Re: [OpenWrt-Devel] BT Home Hub 2B support - nand driver patch (for comment only)

2014-01-22 Thread Jonas Gorski
On Wed, Jan 22, 2014 at 1:02 PM, Ben Mulvihill wrote: > On Wed, 2014-01-22 at 00:42 +0100, John Crispin wrote: >> On 21/01/2014 21:55, David Lang wrote: >> > On Tue, 21 Jan 2014, Ben Mulvihill wrote: >> > >> >> The nand driver currently in trunk works fine, provided ... >> > >> > what is the curre

Re: [OpenWrt-Devel] BT Home Hub 2B support - nand driver patch (for comment only)

2014-01-22 Thread Matti Laakso
> The Home Hub 2B has both nand and nor flash connected to the ebu, plus > an ath9k pci wireless card, and the main difficulty is getting all three > working at the same time without interfering with each other. The nand > driver currently in trunk works fine, provided that open-drain is > enabl

Re: [OpenWrt-Devel] BT Home Hub 2B support - nand driver patch (for comment only)

2014-01-22 Thread Matti Laakso
> Based on my experience with the boards with NOR only, the EBU_CS1 pin > should always be driven (i.e., not open-drain) for the flash not to get > corrupted by PCI. If it is not driven, it takes some time for the pin to > be pulled up (depending on the pull-up resistors), and the flash chip > may

[OpenWrt-Devel] [PATCH][feeds] openvpn-devel: make openvpn compatible with polarssl 1.2.3 or newer [AA]

2014-01-22 Thread Tijs Van Buggenhout
Only relevant for Attitude Adjustment, see trac #12982 [1]. Commit r35529 [2] upgrades polarssl from v 1.1(.3) to 1.2(.5), but introduces compile errors for openvpn-devel (2.2.2) package present in feeds, as detailed in [1]. The following small patch [3] fixes these compatibility issues. [1].

Re: [OpenWrt-Devel] [PATCH][feeds] openvpn-devel: make openvpn compatible with polarssl 1.2.3 or newer [AA]

2014-01-22 Thread Tijs Van Buggenhout
On Wednesday 22 January 2014 15:34:56 Tijs Van Buggenhout wrote: > Only relevant for Attitude Adjustment, see trac #12982 [1]. > > Commit r35529 [2] upgrades polarssl from v 1.1(.3) to 1.2(.5), but > introduces compile errors for openvpn-devel (2.2.2) package present in version of openvpn is 2.3_

Re: [OpenWrt-Devel] [PATCH][feeds] openvpn-devel: make openvpn compatible with polarssl 1.2.3 or newer [AA]

2014-01-22 Thread Gert Doering
Hi, On Wed, Jan 22, 2014 at 03:34:56PM +0100, Tijs Van Buggenhout wrote: > Only relevant for Attitude Adjustment, see trac #12982 [1]. > > Commit r35529 [2] upgrades polarssl from v 1.1(.3) to 1.2(.5), but introduces > compile errors for openvpn-devel (2.2.2) package present in feeds, as > deta

[OpenWrt-Devel] [PATCH 1/2] b53: Add BCM53128 switch support

2014-01-22 Thread Helmut Schaa
The BCM53128 seems to be very similar to the BCM53125 but has some more ports. Signed-off-by: Helmut Schaa --- .../generic/files/drivers/net/phy/b53/b53_common.c | 14 + .../generic/files/drivers/net/phy/b53/b53_mdio.c | 24 ++ .../generic/files/drivers/net/phy/

[OpenWrt-Devel] [PATCH 2/2] b53: Use phy_drivers_register

2014-01-22 Thread Helmut Schaa
Using phy_drivers_register multiple phy drivers can be registered at once which makes the code easier to read. Signed-off-by: Helmut Schaa --- .../generic/files/drivers/net/phy/b53/b53_mdio.c | 56 +- 1 file changed, 13 insertions(+), 43 deletions(-) diff --git a/target/li

Re: [OpenWrt-Devel] BT Home Hub 2B support - nand driver patch (for comment only)

2014-01-22 Thread Ben Mulvihill
On Wed, 2014-01-22 at 13:39 +0100, Matti Laakso wrote: > > The Home Hub 2B has both nand and nor flash connected to the ebu, plus > > an ath9k pci wireless card, and the main difficulty is getting all three > > working at the same time without interfering with each other. The nand > > driver curr

Re: [OpenWrt-Devel] BT Home Hub 2B support - nand driver patch (for comment only)

2014-01-22 Thread Matti Laakso
> Interesting! I had assumed either that there was a cs0 pin, but that > it did not appear anywhere in the sources because it was not > reconfigurable in the way cs1 is, or else (but I don't know enough > about electronics to know whether this is feasible in practice) > that both nand and nor on

Re: [OpenWrt-Devel] [PATCH 1/2] b53: Add BCM53128 switch support

2014-01-22 Thread Jonas Gorski
Hi, On Wed, Jan 22, 2014 at 4:58 PM, Helmut Schaa wrote: > The BCM53128 seems to be very similar to the BCM53125 but has some more ports. > > Signed-off-by: Helmut Schaa > --- > .../generic/files/drivers/net/phy/b53/b53_common.c | 14 + > .../generic/files/drivers/net/phy/b53/b53_md

[OpenWrt-Devel] [PATCH v2] busybox: backport dd conv=swab from 1.22

2014-01-22 Thread Matti Laakso
Some boards have the WLAN EEPROM stored in flash in big-endian format, whereas the driver requires the EEPROM in little-endian format. The conv=swab option in dd is particularly useful in this case. This patch backports this feature from busybox-1.22 based on the following commits: commitb9413

[OpenWrt-Devel] [PATCH v2] lantiq: do an endianness swap to the RT2860 eeprom for ARV752DPW(22)

2014-01-22 Thread Matti Laakso
ARV7510PW22, ARV752DPW and ARV752DPW22 have the RT2860 eeprom stored in flash as big-endian, but the driver needs it in little-endian format. We have to swab it before handing it over. This requires my earlier patch for busybox. Funnily enough, ARV752DPW works also with the incorrect eeprom, but u

Re: [OpenWrt-Devel] BT Home Hub 2B support - nand driver patch (for comment only)

2014-01-22 Thread Ben Mulvihill
On Wed, 2014-01-22 at 13:38 +0100, Jonas Gorski wrote: > On Wed, Jan 22, 2014 at 1:02 PM, Ben Mulvihill > wrote: > > On Wed, 2014-01-22 at 00:42 +0100, John Crispin wrote: > >> On 21/01/2014 21:55, David Lang wrote: > >> > On Tue, 21 Jan 2014, Ben Mulvihill wrote: > >> > > >> >> The nand driver c

Re: [OpenWrt-Devel] BT Home Hub 2B support - nand driver patch (for comment only)

2014-01-22 Thread Ben Mulvihill
On Wed, 2014-01-22 at 18:28 +0100, Matti Laakso wrote: > > Interesting! I had assumed either that there was a cs0 pin, but that > > it did not appear anywhere in the sources because it was not > > reconfigurable in the way cs1 is, or else (but I don't know enough > > about electronics to know whe

Re: [OpenWrt-Devel] [PATCH] Clean up NFSv4 dependencies

2014-01-22 Thread Daniel Colascione
On 01/15/2014 02:49 PM, Daniel Colascione wrote: This patch removes the NFSv4 package and makes NFSv4 support a configuration option for existing packages. Did I not add the right maintainers to my original message? I don't recall finding a specific owner when I looked. __

Re: [OpenWrt-Devel] [PATCH] Zabbix: update to 2.2.1

2014-01-22 Thread Stefan Hellermann
It's running on one of my servers for about a day, update went smooth. Acked-by: Stefan Hellermann 2014/1/22 Etienne CHAMPETIER > > With this new version of zabbix we do not need > uname and hostname anymore, see > https://svn.zabbix.com/browse/ZBX-5616 > Only compile tested for now > > Signed-

Re: [OpenWrt-Devel] [PATCH 1/2] b53: Add BCM53128 switch support

2014-01-22 Thread Helmut Schaa
On Wed, Jan 22, 2014 at 9:40 PM, Jonas Gorski wrote: > Hi, > > On Wed, Jan 22, 2014 at 4:58 PM, Helmut Schaa > wrote: >> The BCM53128 seems to be very similar to the BCM53125 but has some more >> ports. >> >> Signed-off-by: Helmut Schaa >> --- >> .../generic/files/drivers/net/phy/b53/b53_commo