[OpenWrt-Devel] [PATCH V3 libubox] uloop: ignore SIGPIPE by default

2015-01-26 Thread Rafał Miłecki
Most app don't want to crash because of unhandled SIGPIPE. It could happen is such trivial situations like writing to socket. Signed-off-by: Rafał Miłecki --- V2: Replace signal call with sigaction V3: Don't duplicate the code --- uloop.c | 24 1 file changed, 24 inserti

Re: [OpenWrt-Devel] [PATCH] [ar71xx] Add support for MERCURY MAC1200R

2015-01-26 Thread 郭传鈜
2015-01-27 1:10 GMT+08:00 Roger Pueyo Centelles : > Hi, > > Thank you both for your comments. > > @郭传鈜: > > >> + ucidef_set_led_wlan "wlan2g" "WLAN2G" "mercury:green:wlan2g" > "phy1tpt" > > I think the following line is incorrect: > >> + ucidef_set_led_wlan "wlan5g" "WLAN5G" "mercury:g

[OpenWrt-Devel] [PATCH netifd] bridge: allow enabling or disabling the multicast querier independently of IGMP snooping

2015-01-26 Thread Matthias Schiffer
In larger networks, especially big batman-adv meshes, it may be desirable to enable IGMP snooping on every bridge without enabling the multicast querier to specifically put the querier on a well-connected node. This patch adds a new UCI option 'multicast_querier' for bridges which allows this. The

Re: [OpenWrt-Devel] [PATCH V2 libubox] uloop: ignore SIGPIPE by default

2015-01-26 Thread Felix Fietkau
On 2015-01-26 21:12, Rafał Miłecki wrote: > Most app don't want to crash because of unhandled SIGPIPE. It could > happen is such trivial situations like writing to socket. > > Signed-off-by: Rafał Miłecki > --- > V2: Replace signal call with sigaction > --- > uloop.c | 23 +++

[OpenWrt-Devel] [PATCH, v3] feeds: search packages by license

2015-01-26 Thread Eric Schultz
Currently, the feeds scripts provides no way to filter packages by their license. This patch adds a search feature to feeds which can be used to search for packages using the -l option. Additionally, use of the -n option modifies the search to only return packages which don't have a license. C

Re: [OpenWrt-Devel] [PATCH] [ar71xx] Add support for MERCURY MAC1200R

2015-01-26 Thread Hartmut Knaack
Roger Pueyo Centelles schrieb am 26.01.2015 um 18:10: > Hi, > > Thank you both for your comments. > > @郭传鈜: > >>> + ucidef_set_led_wlan "wlan2g" "WLAN2G" "mercury:green:wlan2g" >>> "phy1tpt" >> I think the following line is incorrect: >>> + ucidef_set_led_wlan "wlan5g" "WLAN5G" "mer

[OpenWrt-Devel] [PATCH V2 libubox] uloop: ignore SIGPIPE by default

2015-01-26 Thread Rafał Miłecki
Most app don't want to crash because of unhandled SIGPIPE. It could happen is such trivial situations like writing to socket. Signed-off-by: Rafał Miłecki --- V2: Replace signal call with sigaction --- uloop.c | 23 +++ 1 file changed, 23 insertions(+) diff --git a/uloop.c b

Re: [OpenWrt-Devel] [PATCH] [ar71xx] Add support for MERCURY MAC1200R

2015-01-26 Thread Roger Pueyo Centelles
Hi, Thank you both for your comments. @郭传鈜: >> + ucidef_set_led_wlan "wlan2g" "WLAN2G" "mercury:green:wlan2g" "phy1tpt" > I think the following line is incorrect: >> + ucidef_set_led_wlan "wlan5g" "WLAN5G" "mercury:green:wlan5g" "phy0tpt" > There is no LED trigger called 'phy0tpt' so

[OpenWrt-Devel] [patch] [x86] Backport hyperv change the receive buffer size for legacy hosts to 3.14 tree

2015-01-26 Thread Ning Ye
Signed-off-by: Ning Ye commit 3a3021bfa90d0fbc0b49e84983d02036591f517c Author: Ning Ye Date: Sun Jan 25 21:50:38 2015 -0500 Backport hyperv change the receive buffer size for legacy hosts to 3.14 tree. Without this patch, linux 3.14 wouldn't recognize NIC cards in Windows 2008 R2. Linux

Re: [OpenWrt-Devel] ar8216: phy_init and bug report 18415

2015-01-26 Thread Weedy
On Jan 26, 2015 1:44 AM, "Heiner Kallweit" wrote: > If it worked with a previous version of the driver then you could use "git bisect" to find out which change actually introduced > the problem. https://dev.openwrt.org/changeset/43332 This was the change, there was a huge fit about it at the time

Re: [OpenWrt-Devel] [PATCH libubox] uloop: ignore SIGPIPE by default

2015-01-26 Thread Felix Fietkau
On 2015-01-26 11:25, Rafał Miłecki wrote: > Most app don't want to crash because of unhandled SIGPIPE. It could > happen is such trivial situations like writing to socket. > > Signed-off-by: Rafał Miłecki > --- > uloop.c | 17 + > 1 file changed, 17 insertions(+) > > diff --git

[OpenWrt-Devel] [PATCH libubox] uloop: ignore SIGPIPE by default

2015-01-26 Thread Rafał Miłecki
Most app don't want to crash because of unhandled SIGPIPE. It could happen is such trivial situations like writing to socket. Signed-off-by: Rafał Miłecki --- uloop.c | 17 + 1 file changed, 17 insertions(+) diff --git a/uloop.c b/uloop.c index 9a77ce4..7d11bbc 100644 --- a/uloo