Re: [LEDE-DEV] [OpenWrt-Devel] [RFC] Pre-seeded files/directories for UBIFS

2017-05-21 Thread Ralph Sennhauser
Hi Richard On Sun, 21 May 2017 10:40:05 +0200 Richard Weinberger wrote: > Geert, > > Am 21.05.2017 um 10:37 schrieb Geert Uytterhoeven: > > On Sat, May 20, 2017 at 9:36 PM, Ralph Sennhauser > > wrote: > >> There is also the size consideration. Unless a seed

Re: [LEDE-DEV] [OpenWrt-Devel] [RFC] Pre-seeded files/directories for UBIFS

2017-05-20 Thread Ralph Sennhauser
Hi Richard, On Sat, 20 May 2017 21:57:36 +0200 Richard Weinberger wrote: > Ralph, > > Am 20.05.2017 um 21:36 schrieb Ralph Sennhauser: > >>> These days I had an interesting discussion with Christoph about > >>> overlayfs and its burden. The main use-case of ov

Re: [LEDE-DEV] [OpenWrt-Devel] [RFC] Pre-seeded files/directories for UBIFS

2017-05-20 Thread Ralph Sennhauser
On Sat, 20 May 2017 11:39:33 -0700 Florian Fainelli wrote: > Hello, > > On 05/20/2017 09:12 AM, Richard Weinberger wrote: > > Hi! > > > > These days I had an interesting discussion with Christoph about > > overlayfs and its burden. The main use-case of overlayfs in > > combination with UBIFS is

Re: [LEDE-DEV] [OpenWrt-Devel] Adding host Java support to the buildbots

2017-01-02 Thread Ralph Sennhauser
On Fri, 30 Dec 2016 06:52:32 -0800 Dana Myers wrote: > On 12/29/2016 11:50 PM, Ralph Sennhauser wrote: > > Hi Dana > > > > On Thu, 29 Dec 2016 12:30:37 -0800 > > Dana Myers wrote: > > > >> In reference to https://github.com/openwrt/packages/pull/3686

Re: [LEDE-DEV] [OpenWrt-Devel] Adding host Java support to the buildbots

2016-12-29 Thread Ralph Sennhauser
Hi Dana On Thu, 29 Dec 2016 12:30:37 -0800 Dana Myers wrote: > In reference to https://github.com/openwrt/packages/pull/3686 > > We've added OpenWRT support for: > > * JamVM 2.0: Java JVM > * GNU Classpath 2.0: Java class library There is no classpath 2.0 > * RXTX Java serial communications

Re: [LEDE-DEV] [OpenWrt-Devel] [PATCH RFC firewall3] musl-compat: avoid kernel header conflicts

2016-11-13 Thread Ralph Sennhauser
On Mon, 7 Nov 2016 07:39:19 +0100 Ralph Sennhauser wrote: > On Sun, 6 Nov 2016 19:07:01 +0100 > Szabolcs Nagy wrote: > > > * Ralph Sennhauser [2016-11-06 10:59:43 > > +0100]: > > > The conflict between Musls net/if.h and linux/if.h is an old well > >

Re: [LEDE-DEV] [OpenWrt-Devel] [PATCH RFC firewall3] musl-compat: avoid kernel header conflicts

2016-11-06 Thread Ralph Sennhauser
On Sun, 6 Nov 2016 19:07:01 +0100 Szabolcs Nagy wrote: > * Ralph Sennhauser [2016-11-06 10:59:43 > +0100]: > > The conflict between Musls net/if.h and linux/if.h is an old well > > known one and taken care of by a series of linux-headers patches in > > OpenWrt. Since

Re: [LEDE-DEV] [OpenWrt-Devel] [PATCH RFC firewall3] musl-compat: avoid kernel header conflicts

2016-11-06 Thread Ralph Sennhauser
Hi Jo On Sun, 6 Nov 2016 20:48:58 +0100 Jo-Philipp Wich wrote: > Hi again, > > > Will see if I find another solution... > > I managed to find a solution that works for me on a Linux 4.6.0 system > with glibc, a Linux 4.6.0 system with unpatched musl and a Linux 4.4 > system with patched kern

[LEDE-DEV] [PATCH RFC firewall3] musl-compat: avoid kernel header conflicts

2016-11-06 Thread Ralph Sennhauser
headers prevent inclusion of the corresponding kernel headers. Signed-off-by: Ralph Sennhauser --- Jo, this certainly isn't the most elegant solution but at least it's immediately obvious what it is about. Firewall3 is one of only a few remaining packages still having issues with Musl a

[LEDE-DEV] [PATCH firewall3] iptables: optional loading of static extensions

2016-11-06 Thread Ralph Sennhauser
xt.so, libiptext4.so, libiptext6.so to save a couple more bytes are of no use or non-existent one could say. So this commit avoids requiring a tampered with iptables. Signed-off-by: Ralph Sennhauser --- CMakeLists.txt | 12 +--- iptables.c | 4 iptables.h | 2 ++ 3 files change

Re: [LEDE-DEV] [PATCH firewall3] iptables: fix loading standard target

2016-11-05 Thread Ralph Sennhauser
On Sat, 5 Nov 2016 17:58:49 +0100 Jo-Philipp Wich wrote: > Hi Ralph, > > thanks - applied with minor code style change in 010723e. > > ~ Jo > Hi Jo, fixup looks good. Thanks ___ Lede-dev mailing list Lede-dev@lists.infradead.org http://lists.infr

[LEDE-DEV] [PATCH firewall3] iptables: fix loading standard target

2016-11-05 Thread Ralph Sennhauser
In case iptables is built with --disable-static xt_standard needs to be loaded just like the other extensions. Signed-off-by: Ralph Sennhauser --- iptables.c | 11 +-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/iptables.c b/iptables.c index 95fc0d4..bbd2b00 100644

[LEDE-DEV] [PATCH firewall3] iptables: add support for version 1.6.0

2016-11-04 Thread Ralph Sennhauser
Account for the struct xtables_globals change and add API version 11 to the supported APIs. Signed-off-by: Ralph Sennhauser --- iptables.c | 6 ++ iptables.h | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/iptables.c b/iptables.c index 2a0d0ee..95fc0d4 100644 --- a