Re: [OpenWrt-Devel] OpenWRT broken for some reason in my system

2015-11-09 Thread Paul Fertser
Hannu Nyman writes: > If you are really interested, check the test command from lines 39-40 > manually: > echo 'int main(int argc, char **argv) { return 0; }' | gcc -x c -o $ > (TMP_DIR)/a.out - Looking at "strace -f -s9 make" is often providing enough clues too. -- Be free, use free (http:

[OpenWrt-Devel] RE: [PATCH] ramips: reset m25p80 when shutdown

2015-11-09 Thread 未命名
Yes, I'd like to submit it to mainline.For 32MB spi flash, The mt7620a soc switch to 32bit address mode.After a soft reset, the spi flash should switch to 24bit back, otherwise the rourer would hang until you do a hard reset. -- 原始邮件 -- 发件人: "Rafał Miłecki";; 发送

Re: [OpenWrt-Devel] Git mirror with branches, tags and full history

2015-11-09 Thread koniu
wouldn't it been nice to rewrite sign offs as author for easy attribution before pushing . awesome otherwise, ta! On 9 November 2015 09:06:38 GMT+00:00, Steven Barth wrote: >Hey everyone, > >I took the time last week to create a full-history git-mirror with >branches, author mapping and release

[OpenWrt-Devel] [PATCH v2 9/9] kirkwood: rename EA3500/EA4500 profiles

2015-11-09 Thread Claudio Leite
Match the engineering board names now used elsewhere. Signed-off-by: Claudio Leite --- v2 changes: new in v2 target/linux/kirkwood/image/Makefile | 4 ++-- target/linux/kirkwood/profiles/115-router.mk | 18 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --g

[OpenWrt-Devel] [PATCH v2 8/9] kirkwood: add diag LED on Linksys EA3500

2015-11-09 Thread Claudio Leite
Signed-off-by: Claudio Leite --- v2 changes: use engineering board names target/linux/kirkwood/base-files/etc/diag.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/target/linux/kirkwood/base-files/etc/diag.sh b/target/linux/kirkwood/base-files/etc/diag.sh index 0435376..8d48054 100755

[OpenWrt-Devel] [PATCH v2 7/9] kirkwood: support sysupgrade on Linksys EA[34]500

2015-11-09 Thread Claudio Leite
This automatically writes to the alternate firmware partition (on Linksys's dual firmware layout) using code borrowed from the WRT1900AC port. Signed-off-by: Claudio Leite --- v2 changes: use engineering board names .../kirkwood/base-files/lib/upgrade/linksys.sh | 79 ++

[OpenWrt-Devel] [PATCH v2 5/9] kirkwood: generate factory images for Linksys EA[34]500

2015-11-09 Thread Claudio Leite
This is done with the new image generation system and board names. It also generates a sysupgrade.tar image. Signed-off-by: Claudio Leite --- v2 changes: use engineering board names, clean up UBI flags in profile.mk target/linux/kirkwood/image/Makefile | 45

[OpenWrt-Devel] [PATCH v2 6/9] kirkwood: support Linksys boot counter on EA[34]500

2015-11-09 Thread Claudio Leite
This is done with existing code from the WRT1900AC port. It makes sure the "auto_recovery" bootloader option is set, and resets the s_env boot counter after a successful boot. This gives users without a serial console connection some measure of safety. Signed-off-by: Claudio Leite --- v2 changes

[OpenWrt-Devel] [PATCH v2 4/9] kirkwood: find active Linksys root partition

2015-11-09 Thread Claudio Leite
This is imported verbatim from the mvebu WRT1900AC port. It picks up the current boot partition from the kernel command line, then renames that partition "ubi" so that it auto-mounts. Signed-off-by: Claudio Leite --- v2 changes: same as v1 target/linux/kirkwood/config-3.18 |

[OpenWrt-Devel] [PATCH v2 3/9] kirkwood: consistently use engineering board names

2015-11-09 Thread Claudio Leite
Signed-off-by: Claudio Leite --- v2 changes: new in v2 target/linux/kirkwood/base-files/etc/diag.sh | 4 ++-- target/linux/kirkwood/base-files/etc/uci-defaults/01_leds| 10 +- target/linux/kirkwood/base-files/etc/uci-defaults/02_network | 4 ++-- target/linux/kirkwo

[OpenWrt-Devel] [PATCH v2 2/9] kirkwood: rework Linksys EA[34]500 DTS

2015-11-09 Thread Claudio Leite
- Use board engineering names rather than marketing names - Linksys uses a dual firmware layout, where the bootloader will switch to the other stored image when one fails to boot three consecutive times. In order to make this firmware compatible with the factory images and the stock bootl

[OpenWrt-Devel] [PATCH v2 1/9] kirkwood: enable squashfs-on-ubiblock support

2015-11-09 Thread Claudio Leite
Signed-off-by: Claudio Leite --- v2 changes: same as v1 target/linux/kirkwood/Makefile| 2 +- target/linux/kirkwood/config-3.18 | 2 +- target/linux/kirkwood/config-4.3 | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/target/linux/kirkwood/Makefile b/target/linux/kirkw

[OpenWrt-Devel] [PATCH] lantiq: spi-max-frequency

2015-11-09 Thread Daniel Gimpelevich
On Thu, 2015-02-26 at 16:02 +0100, Joerg Jungermann wrote: > Hi, > > I have here multiple TD-W8970 with Annex A and Annex B. > > > m25p80@0 { > > #address-cells = <1>; > > #size-cells = <1>; > > compatible = "

Re: [OpenWrt-Devel] OpenWRT broken for some reason in my system

2015-11-09 Thread Hannu Nyman
I am not sure if there is anything that strange. See https://dev.openwrt.org/browser/trunk/include/prereq-build.mk#L27 'gcc' basically just checks that gcc exists. (check that it responds to 'gcc --version' command) 'working-gcc' checks if gcc actually can compile anything. It tries to compile

Re: [OpenWrt-Devel] OpenWRT broken for some reason in my system

2015-11-09 Thread Carlos Ferreira
The weirdest part is this. Checking 'gcc'... ok. Checking 'working-gcc'... failed. Checking 'g++'... ok. Checking 'working-g++'... failed. Checking 'ncurses'... failed. Checking 'zlib'... failed. Checking 'libssl'... failed. GCC and G++ checks out but the tests implemented in prereq-build.mk (wo

Re: [OpenWrt-Devel] OpenWRT broken for some reason in my system

2015-11-09 Thread Carlos Ferreira
For reference, I'm using Manjaro Linux (Arch Linux based). [claymore@Claymore trunk]$ uname -a Linux Claymore 4.3.0-1-MANJARO #1 SMP PREEMPT Mon Nov 2 07:40:28 UTC 2015 x86_64 GNU/Linux On 9 November 2015 at 16:42, Hannu Nyman wrote: > One more "me too" report: > There was probably something u

[OpenWrt-Devel] [PATCH] kernel: fix building RTC drivers

2015-11-09 Thread Helmut Schaa
All RTC drivers require the kernel to be built with CONFIG_RTC_CLASS=y. Set it accordingly. Tested only with DS1307. Signed-off-by: Helmut Schaa --- package/kernel/linux/modules/other.mk | 24 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/package/kernel

Re: [OpenWrt-Devel] OpenWRT broken for some reason in my system

2015-11-09 Thread Hannu Nyman
One more "me too" report: There was probably something unusual in the last OS kernel update for Ubuntu 15.10 x64, which has caused some compiler tools to require re-installation. I updated Ubuntu 15.10 kernel last week along other updates offered by the system, and after the kernel update I ra

[OpenWrt-Devel] unsubscribe

2015-11-09 Thread Brian Epstein
Brian D Epstein CEO www.deepbluecommunications.com (518) 389 - 2711 - Office (518) 429 - 8153 - Mobile [DBC Signature] ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/cgi

Re: [OpenWrt-Devel] Git mirror with branches, tags and full history

2015-11-09 Thread Nemesis
Hi Steven, thank you very much for this effort. It's really handy to be able to watch the repo on github, browse the commits and all the rest. Federico On 11/09/2015 10:06 AM, Steven Barth wrote: > Hey everyone, > > I took the time last week to create a full-history git-mirror with > branches

Re: [OpenWrt-Devel] OpenWRT broken for some reason in my system

2015-11-09 Thread Carlos Ferreira
Yes, I agree it may be a problem related to an OS update because I actually did that. Meanwhile, why would the gcc verification fail? I'm using The multilib gnu compiler and it always worked until now.. On 9 November 2015 at 14:29, Kevin Darbyshire-Bryant < ke...@darbyshire-bryant.me.uk> wrote:

Re: [OpenWrt-Devel] OpenWRT broken for some reason in my system

2015-11-09 Thread Kevin Darbyshire-Bryant
On 09/11/15 13:43, Carlos Ferreira wrote: > PS: Instead of "trunk repo", it's "15.05 repo". > > On 9 November 2015 at 13:42, Carlos Ferreira > wrote: > > Today I updated my OpenWRT trunk repo and after making the usual > "./scripts/feeds install -a" this ha

Re: [OpenWrt-Devel] Git mirror with branches, tags and full history

2015-11-09 Thread Luiz Angelo Daros de Luca
Hello Steven, Thanks for the mirror! Wouldn't it be possible to integrate PR with the maillist? A quick google gave me this: https://github.com/google/pull-request-mailer Regards, Em seg, 9 de nov de 2015 10:54, Emmanuel Deloget escreveu: > Hello, > > Same here - this is really appreciated. >

Re: [OpenWrt-Devel] OpenWRT broken for some reason in my system

2015-11-09 Thread Carlos Ferreira
PS: Instead of "trunk repo", it's "15.05 repo". On 9 November 2015 at 13:42, Carlos Ferreira wrote: > Today I updated my OpenWRT trunk repo and after making the usual > "./scripts/feeds install -a" this happened. > > [claymore@Claymore 15.05]$ ./scripts/feeds install -a > Checking 'working-make'

[OpenWrt-Devel] OpenWRT broken for some reason in my system

2015-11-09 Thread Carlos Ferreira
Today I updated my OpenWRT trunk repo and after making the usual "./scripts/feeds install -a" this happened. [claymore@Claymore 15.05]$ ./scripts/feeds install -a Checking 'working-make'... ok. Checking 'case-sensitive-fs'... ok. Checking 'gcc'... failed. Checking 'working-gcc'... failed. Checking

Re: [OpenWrt-Devel] Git mirror with branches, tags and full history

2015-11-09 Thread Emmanuel Deloget
Hello, Same here - this is really appreciated. BR, -- Emmanuel Deloget ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel

[OpenWrt-Devel] [PATCH v2] lantiq: add phy led config support over devicetree bindings

2015-11-09 Thread Florian Eckert
This patch adds the posibility to config the led behaviour of the lantiq phys over the devicetree bindings.It patches the 0023-NET-PHY-adds-driver-for-lantiq-PHY11G for 3.18 and 4.1. I have also added a register description overview for applicable values. This goes to the documentation folder in

[OpenWrt-Devel] [PATCH] lantiq: add phy led config support over devicetree bindings

2015-11-09 Thread Florian Eckert
--- This patch adds the posibility to config the led behaviour of the lantiq phys over the devicetree bindings. It patches the 0023-NET-PHY-adds-driver-for-lantiq-PHY11G for 3.18 and 4.1. I have also added a register description overview for applicable values. ...023-NET-PHY-adds-driver-for-l

Re: [OpenWrt-Devel] Git mirror with branches, tags and full history

2015-11-09 Thread Jan Čermák
Hello Steven, I'm happy to see that the things moved forward at least a bit after the lengthy discussions. Keep up the good work! Regards, Jan On 9.11.2015 10:06, Steven Barth wrote: > Hey everyone, > > I took the time last week to create a full-history git-mirror with > branches, author mappin

Re: [OpenWrt-Devel] [PATCH 0/7] kirkwood: revamp Linksys EA3500 & EA4500 support

2015-11-09 Thread Claudio Leite
* Imre Kaloz (ka...@openwrt.org) wrote: > On Sat, 07 Nov 2015 03:29:07 +0100, Claudio Leite > wrote: > > >This patch set reworks support for the Linksys EA3500 and EA4500, > >integrating significant amounts of code from the WRT1900AC port. > > > >Previously these two routers were supported by fla

Re: [OpenWrt-Devel] Git mirror with branches, tags and full history

2015-11-09 Thread Bruno Randolf
On 11/09/2015 09:06 AM, Steven Barth wrote: > Hey everyone, > > I took the time last week to create a full-history git-mirror with > branches, author mapping and release tags. It is currently on github, > but it will probably end up on git.openwrt.org in the end. > > Note: Do NOT send us pull req

Re: [OpenWrt-Devel] Git mirror with branches, tags and full history

2015-11-09 Thread Martin Strbačka
A big thanks from the whole Turris team! Cheers, Martin Strbacka On 9.11.2015 10:06, Steven Barth wrote: > Hey everyone, > > I took the time last week to create a full-history git-mirror with > branches, author mapping and release tags. It is currently on github, > but it will probably end up o

[OpenWrt-Devel] Git mirror with branches, tags and full history

2015-11-09 Thread Steven Barth
Hey everyone, I took the time last week to create a full-history git-mirror with branches, author mapping and release tags. It is currently on github, but it will probably end up on git.openwrt.org in the end. Note: Do NOT send us pull requests to this repository, they will be ignored. Send patch

Re: [OpenWrt-Devel] [PATCH 0/7] kirkwood: revamp Linksys EA3500 & EA4500 support

2015-11-09 Thread Imre Kaloz
On Sat, 07 Nov 2015 03:29:07 +0100, Claudio Leite wrote: This patch set reworks support for the Linksys EA3500 and EA4500, integrating significant amounts of code from the WRT1900AC port. Previously these two routers were supported by flashing from the bootloader and setting new boot command