Re: [LEDE-DEV] [PATCH 2/3] procd: Don't use syslog before its initialization

2017-03-11 Thread Michal Sojka
Hi David, I understand what you're saying and you are right that there can be a lot of problems (e.g. hangs) due logging. Some comments below. On Sat, Mar 11 2017, David Lang wrote: > On Sat, 11 Mar 2017, Michal Sojka wrote: > >> On Sat, Mar 11 2017, John Crispin wrote: >>> On 11/03/17 01:48,

[LEDE-DEV] [PATCH v2] procd: Don't use syslog before its initialization

2017-03-11 Thread Michal Sojka
When procd starts a rcS script, it captures its stdout and stderr and logs them via syslog(). The problem with that is that the rest of procd code uses ulog rather than syslog() directly and ulog_open() doesn't call openlog() immediately, but only after something is logged with ulog(). This lazy

Re: [LEDE-DEV] [PATCH 2/3] procd: Don't use syslog before its initialization

2017-03-11 Thread Michal Sojka
On Sat, Mar 11 2017, Michal Sojka wrote: > On Sat, Mar 11 2017, John Crispin wrote: >> On 11/03/17 01:48, Michal Sojka wrote: >>> When procd starts a rcS script, it captures its stdout and stderr and >>> logs them to syslog. It could happen (and I don't know exactly why), >>> that a rcS scripts

[LEDE-DEV] [PATCH] Add i2c_801 i2c driver module support

2017-03-11 Thread michael
From: Michael Marley This driver supports the i2c controller on many Intel chipsets. The patch also adds the i2c_smbus driver upon which i2c_i801 depends. Signed-off-by: Michael Marley --- package/kernel/linux/modules/i2c.mk | 30

[LEDE-DEV] [PATCH] kernel: Add intel_idle driver to x86_64 build

2017-03-11 Thread michael
From: Michael Marley This driver supports CPU-specific idle features on recent Intel processors. It does not conflict with the ACPI idle driver and that driver will continue to be used for unsupported and non-Intel processors. Signed-off-by: Michael Marley

[LEDE-DEV] [PATCH] kernel: Add coretemp driver to x86_64 build

2017-03-11 Thread michael
From: Michael Marley The x86_64 build already has the k10temp driver for AMD processors built in, so this patch adds the coretemp driver for the same functionality on Intel processors. Signed-off-by: Michael Marley ---

[LEDE-DEV] [PATCH] kernel: Add iTCO_wdt watchdog timer module support

2017-03-11 Thread michael
From: Michael Marley This supports the Intel TCO Watchdog Timer Device, which has been nearly ubiquitous in Intel chipsets for almost 20 years. Signed-off-by: Michael Marley --- package/kernel/linux/modules/other.mk | 15 +++ 1

[LEDE-DEV] [PATCH 2/2] x86: image: drop unneeded grub call

2017-03-11 Thread Rafał Miłecki
From: Rafał Miłecki It appears there isn't any Image/Build/grub/* define so this step looks redundant. Signed-off-by: Rafał Miłecki --- target/linux/x86/image/Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/target/linux/x86/image/Makefile

[LEDE-DEV] [PATCH 1/2] x86: image: drop unused ROOTDELAY variable

2017-03-11 Thread Rafał Miłecki
From: Rafał Miłecki It's unused since commit 742700719303 ("x86: remove the olpc subtarget, it has been unmaintained for a long time"). Signed-off-by: Rafał Miłecki --- target/linux/x86/image/Makefile | 2 -- 1 file changed, 2 deletions(-) diff --git

Re: [LEDE-DEV] using 464XLAT in LEDE (or OpenWRT)

2017-03-11 Thread Hans Dedecker
Hi, On Wed, Mar 8, 2017 at 10:23 PM, JORDI PALET MARTINEZ wrote: > Hi Hans, > > I believe you’re the maintainer of 464XLAT. I want to do demonstrations of > OpenWRT/LEDE in scenarios where you run out of IPv4 addresses for the WAN > links. > > Sorry to write you

Re: [LEDE-DEV] [PATCH odhcpd] dhcpv6-ia: add option for dhcpv6 privacy address

2017-03-11 Thread Paul Oranje
Small addition (the following may be non-obvious to those not involved in this discussion). Just saw that A_TA does not have renewal (T1) or rebinding (T2) fields and for that reason cannot suit a use-case like a IA just for a work shift. -- Paul > Op 11 mrt. 2017, om 13:21 heeft Paul Oranje

Re: [LEDE-DEV] [PATCH odhcpd] dhcpv6-ia: add option for dhcpv6 privacy address

2017-03-11 Thread Paul Oranje
> Op 11 mrt. 2017, om 06:09 heeft Eric Luehrsen het > volgende geschreven: > > On 03/10/2017 09:09 AM, Bjørn Mork wrote: >> Eric Luehrsen writes: >>> It appears many other severs and clients dont implement IA_TA. Its a lost >>> option. >>

Re: [LEDE-DEV] [PATCH] Lantiq Amazon-SE SoC / ADSL Modem Allnet All0333CJ Rev.C

2017-03-11 Thread Tino Reichardt
* Bastian Bittorf wrote: > * Bastian Bittorf [07.03.2017 11:07]: > > * Tino Reichardt [06.03.2017 08:24]: > > > BE AWARE: > > > My patch seems to work fine, even the dsl modem seems to be correctly > > > loaded. But it's not tested currently... so

Re: [LEDE-DEV] [PATCH 2/3] procd: Don't use syslog before its initialization

2017-03-11 Thread Michal Sojka
On Sat, Mar 11 2017, John Crispin wrote: > On 11/03/17 01:48, Michal Sojka wrote: >> When procd starts a rcS script, it captures its stdout and stderr and >> logs them to syslog. It could happen (and I don't know exactly why), >> that a rcS scripts produces some output before openlog() is called