Re: [LEDE-DEV] [RFC] iproute2: update to v4.10.0

2017-03-21 Thread Russell Senior
> "Syrone" == Syrone Wong writes: Syrone> It seems this chunk is redundant - DEPENDS:=+kmod-sched-core + Syrone> DEPENDS:=+kmod-sched-core iptables Syrone> If you really want to add iptables as runtime dependency, it Syrone> should be `+iptables`. Syrone, afaict, tc

Re: [LEDE-DEV] [RFC] iproute2: update to v4.10.0

2017-03-21 Thread Russell Senior
> "Russell" == Russell Senior writes: Please test: diff --git a/package/network/utils/iproute2/Makefile b/package/network/utils/iproute2/Makefile index 65ae5cb457..3a4b114039 100644 --- a/package/network/utils/iproute2/Makefile +++

[LEDE-DEV] [PATCH] libubox: Fix -Wsign-compare warnings

2017-03-21 Thread Rosen Penev
-Wsign-compare is part of the -Wextra series of warnings so it's worth fixing. The issues are mainly sign conversion ones. --- base64.c | 6 +++--- blob.c | 12 ++-- blob.h | 8 blobmsg.c | 2 +- blobmsg_json.c | 4 ++-- jshn.c | 2 +-

[LEDE-DEV] [PATCH] usock: Fix some types resulting in type conversion warnings.

2017-03-21 Thread Rosen Penev
A few types were changed to adhere to the particular API. Signed-off by: Rosen Penev --- usock.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/usock.c b/usock.c index 0ce5390..c159a76 100644 --- a/usock.c +++ b/usock.c @@ -33,7 +33,7 @@ #include

[LEDE-DEV] [PATCH] uloop: Fix new_handler type

2017-03-21 Thread Rosen Penev
sa_handler is of type void (*)(int). Update new_handler to match. Signed-off by: Rosen Penev --- uloop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uloop.c b/uloop.c index 26fef32..b42e601 100644 --- a/uloop.c +++ b/uloop.c @@ -437,7 +437,7 @@ static

[LEDE-DEV] [PATCH RFC] ar8216: (try to) implement get_port_stats

2017-03-21 Thread Vittorio Gambaletta (VittGam)
Hello, TP-LINK, in their new TL-WR1043ND v4, for some reason wired the ethernet LEDs not to the AR8337, but to the QCA956x SoC instead. This means that the switch LED trigger needs to be used for all of the ethernet LEDs (4 x LAN and 1 x WAN), like on the AR9341 when its internal switch is used.

Re: [LEDE-DEV] [PATCH] rules.mk: disable CXX11 ABI with uClibc++

2017-03-21 Thread Felix Fietkau
On 2017-03-21 19:13, Stijn Tintel wrote: > GCC 5.1 introduced a new library ABI to conform to the 2011 C++ > standard. This new ABI is enabled by default. This causes compatibility > issues between libraries compiled against libstdc++ and libraries > compiled against uClibc++, as the latter

[LEDE-DEV] [PATCH] rules.mk: disable CXX11 ABI with uClibc++

2017-03-21 Thread Stijn Tintel
GCC 5.1 introduced a new library ABI to conform to the 2011 C++ standard. This new ABI is enabled by default. This causes compatibility issues between libraries compiled against libstdc++ and libraries compiled against uClibc++, as the latter doesn't support this new ABI. Solve this by disabling

Re: [LEDE-DEV] [PATCH] libubox: Fix -Wsign-compare and sign conversion warnings

2017-03-21 Thread Yousong Zhou
On 29 January 2017 at 09:11, Rosen Penev wrote: > While at it, also add -Wextra and -Wno-unused-parameter to the > CFLAGS. Compile tested on 32 and 64-bit x86. > > Signed-off by: Rosen Penev Sorry for the delay, but I just also compile-tested this ;) With

Re: [LEDE-DEV] [RFC] iproute2: update to v4.10.0

2017-03-21 Thread Yousong Zhou
On 21 March 2017 at 03:54, Russell Senior wrote: > The new ip-tiny ipk is 20k bigger than the old version (~79k vs ~100k). > There may be some additional pruning possible to get it back down to a > similar size. It will be really nice if the size can be squeezed for at

[LEDE-DEV] Kodi feed

2017-03-21 Thread Stijn Tintel
Hi all, After a minor cleanup, I published [0] Kodi and dependencies for running on the brcm2708 target (Raspberry Pi). Dependencies for this are in the kodi branches of my LEDE staging tree [1], and my fork of the packages feed [2]. I am currently working on x86 support, but it's taking longer

[LEDE-DEV] [PATCH] kernel: video: add kmod-drm-vc4 package for brcm2708 target

2017-03-21 Thread Rafał Miłecki
From: Rafał Miłecki It includes vc4 driver for Broadcom VideoCore IV GPU. Signed-off-by: Rafał Miłecki --- package/kernel/linux/modules/video.mk | 18 ++ 1 file changed, 18 insertions(+) diff --git a/package/kernel/linux/modules/video.mk