[OpenWrt-Devel] [PATCH] procd: make nand_do_platform_check check image only

2015-09-24 Thread Rafał Miłecki
Recently all targets have been updated to call nand_do_upgrade directly. It's not needed anymore to leave a magic /tmp/sysupgrade-nand-path mark during image check. Signed-off-by: Rafał Miłecki --- I'll wait a week or two before pushing it. Maybe it'll make someone test it just in case :) --- pa

Re: [OpenWrt-Devel] [PATCH] [SIGNED-OFF] Add WeIO Board Support

2015-09-24 Thread John Crispin
its in trunk finally, sorry for the delay On 23/09/2015 20:23, Drasko DRASKOVIC wrote: > A kind reminder, > please someone take a look at this patch and integrate it if it is OK. > > BR, > Drasko > > > On Sun, Sep 20, 2015 at 7:27 PM, Drasko DRASKOVIC > wrote: >> Add support for WeIO board (ht

Re: [OpenWrt-Devel] [PATCH netifd 2/6] iprule: Insert network and address ip rules before main table lookup rule

2015-09-24 Thread Hans Dedecker
On Wed, Sep 23, 2015 at 11:44 PM, Kristian Evensen < kristian.even...@gmail.com> wrote: > On Wed, Sep 23, 2015 at 1:23 PM, Kristian Evensen > wrote: > > On Wed, Sep 23, 2015 at 1:07 PM, Hans Dedecker > wrote: > >> Indeed we're using source based routing in combination with a default > route > >>

Re: [OpenWrt-Devel] [PATCH] procd: make nand_do_platform_check check image only

2015-09-24 Thread John Crispin
On 24/09/2015 11:32, Rafał Miłecki wrote: > Recently all targets have been updated to call nand_do_upgrade directly. > It's not needed anymore to leave a magic /tmp/sysupgrade-nand-path mark > during image check. > > Signed-off-by: Rafał Miłecki Acked-by: John Crispin > --- > I'll wait a we

Re: [OpenWrt-Devel] [PATCH] [SIGNED-OFF] Add WeIO Board Support

2015-09-24 Thread Drasko DRASKOVIC
Hi John, On Thu, Sep 24, 2015 at 11:36 AM, John Crispin wrote: > its in trunk finally, sorry for the delay Great, thanks! BR, Drasko ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/cgi-bin/mailman/listinfo/open

[OpenWrt-Devel] [PATCH] base-files: sbin/sysupgrade preserve dnsmasq.time

2015-09-24 Thread Kevin Darbyshire-Bryant
dnsmasq uses /etc/dnsmasq.time as record of the last known good system time to aid its validation of dnssec timestamps. dnsmasq updates the timestamp on process start/stop once it considers the system time as valid. The timestamp file should be preserved across system upgrade but should not be inc

[OpenWrt-Devel] [PATCH] dnsmasq: prevent forwarding RFC6303 zones

2015-09-24 Thread Kevin Darbyshire-Bryant
RFC6303 specifies reverse dns zones that ideally should not be forwarded to upstream (root) servers and create unnecessary load upon them. Signed-off-by: Kevin Darbyshire-Bryant --- package/network/services/dnsmasq/files/dhcp.conf | 12 1 file changed, 12 insertions(+) diff --git a

[OpenWrt-Devel] [PATCH] target/mpc85xx: check if 'generic' subtarget for image file cuImage.tl-wdr4900-v1

2015-09-24 Thread Alexandru Ardelean
Only add 'cuImage.tl-wdr4900-v1' to KERNEL_IMAGES if the selected subtarget is 'generic'. Signed-off-by: Alexandru Ardelean --- target/linux/mpc85xx/Makefile | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/target/linux/mpc85xx/Makefile b/target/linux/mpc85xx/Makefile i

[OpenWrt-Devel] [PATCH 1/1] [SIGNED-OFF] ramips: Ralink RT3883 RGMII pinmux fix.

2015-09-24 Thread N.Leiten
Due to datasheet of rt3883 SoC rgmii1 port handles pins 84-95 and rgmii2 port handles pins 72-83. When this function ports gets added to rt3883_pinmux_data there's wrong pinmux bits set (RT3883_GPIO_MODE_GE1 manages 84-95 pins and RT3883_GPIO_MODE_GE2 manages 72-83). So when enabling rgmii2 as G

Re: [OpenWrt-Devel] [PATCH] build: fixes feeds with Makefile in root directory (#20392)

2015-09-24 Thread Ryan Lindeman
A kind reminder to please incorporate or comment on my patch. I think this fix should also be backported to CC, BB, and possibly AA as well. Thank you in advance for your consideration and thoughts/comments. Best Regards, Ryan Lindeman On Fri, Aug 28, 2015 at 2:05 PM, Ryan Lindeman wrote: > Th

Re: [OpenWrt-Devel] [PATCH] dnsmasq: prevent forwarding RFC6303 zones

2015-09-24 Thread Steven Barth
There is already "option boguspriv 1" so I do not really see the point. Cheers, Steven ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel

[OpenWrt-Devel] [PATCH] libubox: lua: use pkg-config built in module to search for alternatives

2015-09-24 Thread Karl Palsson
From: Karl Palsson Different distributions have different names for the lua 5.1 package. Use cmake's built in pkg-config support to search for the first one, rather than running it explicitly and searching for a single version. Signed-off-by: Karl Palsson --- Resending after running into this

Re: [OpenWrt-Devel] [PATCH] dnsmasq: prevent forwarding RFC6303 zones

2015-09-24 Thread Kevin Darbyshire-Bryant
On 24/09/15 15:57, Steven Barth wrote: > There is already "option boguspriv 1" so I do not really see the point. > > > Cheers, > > Steven > ___ > openwrt-devel mailing list > openwrt-devel@lists.openwrt.org > https://lists.openwrt.org/cgi-bin/mailman/li

Re: [OpenWrt-Devel] [PATCH] dnsmasq: prevent forwarding RFC6303 zones

2015-09-24 Thread Steven Barth
Okay, we can do this, however we need to figure 3 things out first. 1. Disable boguspriv, doing both is unintuitive. 2. Make sure it doesn't broke reverse resolving locally known hosts, i.e. those in the hostfiles and those that have a DHCP lease. 3. Make sure that doesn't break applications that

Re: [OpenWrt-Devel] [PATCH] dnsmasq: prevent forwarding RFC6303 zones

2015-09-24 Thread Kevin Darbyshire-Bryant
On 24/09/15 17:54, Steven Barth wrote: > Okay, we can do this, however we need to figure 3 things out first. > > 1. Disable boguspriv, doing both is unintuitive. ok, so extra lines for .10, 16-32.172, 168.192 - an extra 18 lines in total. And an update to luci to remove the bogus priv tick box?

[OpenWrt-Devel] [ar71xx] Improving device support for WNR2200

2015-09-24 Thread Jeremy Wong
Hi, The current OpenWrt trunk does not have working USB support for the Netgear WNR2200. (See discussion at https://dev.openwrt.org/ticket/15267) There seem to be two problems: == 1. == Review needed for the gpio patch for working USB. I understand that there was a previous patch submission, bu

[OpenWrt-Devel] [PATCH] lldpd: wrap procd command args in separate quotes

2015-09-24 Thread Alexandru Ardelean
From: Alexandru Ardelean Seems the match pattern was being adapted from 'eth0' to ' eth0' because of the way I added the procd command args. This did not seem to be a problem when there were multiple interfaces, just on devices with single interfaces for lldpd to listen on. Signed-off-by: Alexa