Re: [LEDE-DEV] [PATCH v2] ipq806x: add kernel 4.14 support

2018-05-17 Thread Joris de Vries
ar...@protonmail.com> > Message-ID: <mailman.7267.1525467398.2282.lede-...@lists.infradead.org> > - TP-Link Archer C2600 > smooth transition, patches for DTS and tplink-safeloader needed > tested by: Joris de Vries <j.s.de.vr...@gmail.com> > Message-Id: <e30ace8a-b750-4

Re: [OpenWrt-Devel] SDK vs. Toolchain+

2016-01-05 Thread Joris de Vries
> On 05 Jan 2016, at 16:04, Daniel Dickinson > wrote: > > am of two minds about how to deal with the issue that having to build the > toolchain for an SDK before being able use the SDK is rather painful (or at > least it tests my patience; don't know about other

Re: [OpenWrt-Devel] SVN to GIT transition

2015-10-11 Thread Joris de Vries
> On 11 Oct 2015, at 14:48, John Crispin wrote: > > patches will linger in mailing list until someone has time to look at > them. the version control system used is completely irrelevant Which is true enough if the switch just encompasses moving to another VCS. However,

Re: [OpenWrt-Devel] HTTPS with 'letsencrypt.org' on OpenWrt

2015-09-25 Thread Joris de Vries
I would be interested in this as well, although I'm not sure how useful this is without configuring a good hostname for routers, also maybe automatically. That said, from what I can see there are two options to achieve this. The first and probably the easiest would be to port their tool to

Re: [OpenWrt-Devel] Designated Driver

2015-04-08 Thread Joris de Vries
+1 ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel

Re: [OpenWrt-Devel] menuconfig and deselect ('1 click' packages selection)

2014-01-23 Thread Joris de Vries
Based on an email sent by Weedy [1] I have a config file that deselects packages I don’t need or want via 'CONFIG_PACKAGE_ppp=n’ or similar lines. In that same fashion, you can select via ‘CONFIG_PACKAGE_nano=y’ (provided nano is installed via the packages feed). Then you can copy that file to

Re: [OpenWrt-Devel] Interest in a openwrt router database to partially replace TOH?

2013-12-09 Thread Joris de Vries
What I really wish the TOH listing had is some indication of whether the hardware is known to be out of production. Looking for hardware to buy to run OpenWRT is... less than straightforward. This is so absolutely true. I have gone as far as to create a snippet (link included, please don't

[OpenWrt-Devel] [PATCH] build: Set owner root for all files on ubifs creation

2013-10-16 Thread Joris de Vries
When creating an image it makes no sense to have files owned by the uid and gid on the host (and even creates a bug when for example dropbear authorized_keys is included via env/files). Signed-off-by: Joris de Vries jo...@apptrician.nl --- include/image.mk |1 + 1 file changed, 1 insertion

[OpenWrt-Devel] [PATCH] build: remove breaking commas from ubi calls

2013-10-15 Thread Joris de Vries
The extra commas get output by the shell resulting in errors since the commands that get called with those extra commas are then malformed. Signed-off-by: Joris de Vries jo...@apptrician.nl --- include/image.mk |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include