Re: [LEDE-DEV] [PATCH 4/4] ramips/RT5350F-OLINUXINO(-EVB) dts: enable ttyS1

2017-09-16 Thread Zoltan Gyarmati
Dear John & All, do you have any update regarding to your patch review below? Thanks, regards, Zoltan Gyarmati https://zgyarmati.de On 09/06/2017 02:25 AM, Zoltan Gyarmati wrote: > Dear John&All, > > thanks for the review, see my response inline > > On 08/29/2017 09:37 AM, John Crispin wrote:

Re: [LEDE-DEV] [PATCH 4/4] ramips/RT5350F-OLINUXINO(-EVB) dts: enable ttyS1

2017-09-16 Thread Martin Blumenstingl via Lede-dev
The sender domain has a DMARC Reject/Quarantine policy which disallows sending mailing list messages using the original "From" header. To mitigate this problem, the original message has been wrapped automatically by the mailing list software.--- Begin Message --- Hi Zoltan, On Wed, Sep 6, 2017 at

Re: [LEDE-DEV] [LEDE-DEV, v2, 01/11] at91: Renaming subtarget sama5d3 to sama5

2017-09-16 Thread Florian Fainelli
On 09/13/2017 11:51 AM, Sandeep Sheriker Mallikarjun wrote: > Renaming at91 subtarget sama5d3 to sama5 and using at91-sama5d3_xplained > as a target device in sama5 subtarget.This will enable to add other > sama5d2 & sama5d4 target devices in sama5 subtraget.This will avoid > code duplication whe

[LEDE-DEV] [PATCH] kernel: update to 3.18.71

2017-09-16 Thread Florian Fainelli
Delete a bunch of fixes that are already included. Refresh patches. Compile-tested on malta/mipsel Runtime-tested on malta/mipsel Signed-off-by: Florian Fainelli --- include/kernel-version.mk | 4 +- .../pending-3.18/002-phy_drivers_backport.patch| 56 +++---

[LEDE-DEV] [PATCH] uci/file: replace mktemp() with mkstemp()

2017-09-16 Thread Maxim Gorbachyov
Because mktemp() is evil. Signed-off-by: Maxim Gorbachyov --- file.c | 19 +++ 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/file.c b/file.c index 494c649..ad0355b 100644 --- a/file.c +++ b/file.c @@ -28,6 +28,7 @@ #include #include #include +#include #