Re: [LEDE-DEV] x86 auto fsck at boot possible?

2018-02-20 Thread Nishant Sharma
Hi Daniel, On Monday 19 February 2018 09:44 PM, Daniel Golle wrote: Many thanks for your reply. How can I enable automatic fsck.ext4 on x86? Your description sounds like you are using ext4 as a root filesystem without an overlay on top. The option of having a read-write rootfs instead of

[LEDE-DEV] Advice needed for fixing a regression causing ar71xx mtd chips > 16MB to fail reading on kernel 4.9

2018-02-20 Thread Christian Beier
Hi list, I am currently working on a fix for a regression that causes reads on 32 MB flash to fail on ar71xx Linux 4.9 and need some help with this. The bug is already reported in all detail at [1], but in shorts, it's: * on the way to Linux 4.9, a mmap'ed read request was added to m25p80.c

Re: [LEDE-DEV] kernel version status

2018-02-20 Thread Zoltan HERPAI
Hi, Michael Heimpold wrote: Hi, Am Sonntag, 18. Februar 2018, 22:43:42 CET schrieb Hauke Mehrtens: ... The following targets are on kernel 4.9 and are fine: ... * mxs ... a few weeks ago, I was in contact with Zoltan who started working on 4.14 support for mxs. I found some patches

Re: [LEDE-DEV] x86 auto fsck at boot possible?

2018-02-20 Thread Jeff Ahrenholz
>> How can I enable automatic fsck.ext4 on x86? In response to your original question, you could call e2fsck from the script file package/base-files/files/lib/preinit/80_mount_root prior to mounting the root fs. -Jeff ___ Lede-dev mailing list

[LEDE-DEV] [OpenWrt-Devel] [PATCH 4/8] octeontx: remove CFLAGS

2018-02-20 Thread Tim Harvey
You should not define CFLAGS for the toolchain as this will also leak into other targets if they share the same toolchain. Cc: Hauke Mehrtens Signed-off-by: Tim Harvey --- target/linux/octeontx/Makefile | 1 - 1 file changed, 1 deletion(-) diff --git

[LEDE-DEV] [OpenWrt-Devel] [PATCH 3/8] octeontx: add FAT FS support to kernel

2018-02-20 Thread Tim Harvey
The CN80XX Boot firmware uses an embedded FAT12 filesystem. For some reason busybox can't mount this unless its enabled static in the kernel. Signed-off-by: Tim Harvey --- target/linux/octeontx/config-4.14 | 2 ++ 1 file changed, 2 insertions(+) diff --git

[LEDE-DEV] [OpenWrt-Devel] [PATCH 7/8] octeontx: remove undefs of CONFIG_NET_VENDOR_*

2018-02-20 Thread Tim Harvey
Signed-off-by: Tim Harvey --- target/linux/octeontx/config-4.14 | 52 --- 1 file changed, 52 deletions(-) diff --git a/target/linux/octeontx/config-4.14 b/target/linux/octeontx/config-4.14 index a6f762c..114fc38 100644 ---

[LEDE-DEV] [OpenWrt-Devel] [PATCH 8/8] kernel: add missing symbol

2018-02-20 Thread Tim Harvey
Signed-off-by: Tim Harvey --- target/linux/generic/config-4.14 | 1 + 1 file changed, 1 insertion(+) diff --git a/target/linux/generic/config-4.14 b/target/linux/generic/config-4.14 index f7d9cca..6d3a207 100644 --- a/target/linux/generic/config-4.14 +++

[LEDE-DEV] [OpenWrt-Devel] [PATCH 5/8] octeontx: add fpu support

2018-02-20 Thread Tim Harvey
Cc: Hauke Mehrtens Signed-off-by: Tim Harvey --- target/linux/octeontx/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/linux/octeontx/Makefile b/target/linux/octeontx/Makefile index ecac152..e7f6b2d 100644 ---

[LEDE-DEV] [OpenWrt-Devel] [PATCH 2/8] octeontx: remove static EXT2/3/4 FS support

2018-02-20 Thread Tim Harvey
We are using F2FS as our overlay read/write FS. Others can be supported as modules. Signed-off-by: Tim Harvey --- target/linux/octeontx/config-4.14 | 9 - 1 file changed, 9 deletions(-) diff --git a/target/linux/octeontx/config-4.14

[LEDE-DEV] [OpenWrt-Devel] [PATCH 1/8] octeontx: add USB_PCI support

2018-02-20 Thread Tim Harvey
The CN80XX XHCI is supported through PCI Signed-off-by: Tim Harvey --- target/linux/octeontx/config-4.14 | 7 --- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/target/linux/octeontx/config-4.14 b/target/linux/octeontx/config-4.14 index

Re: [LEDE-DEV] [PATCH 1/3] uboot-envtools: Remove openwrt mirror from PKG_SOURCE_URL.

2018-02-20 Thread Felix Fietkau
On 2018-02-20 21:42, Rosen Penev wrote: > This mirror is already attempted in case the other fails. Doesn't matter > though since it doesn't work anyway (404 error). Discovered through "make > download V=s" Output: > > make[2]: Entering directory >

Re: [LEDE-DEV] [PATCH 1/3] uboot-envtools: Remove openwrt mirror from PKG_SOURCE_URL.

2018-02-20 Thread Rosen Penev
On Tue, Feb 20, 2018 at 1:23 PM, Felix Fietkau wrote: > On 2018-02-20 21:42, Rosen Penev wrote: >> This mirror is already attempted in case the other fails. Doesn't matter >> though since it doesn't work anyway (404 error). Discovered through "make >> download V=s" Output: >> >>

[LEDE-DEV] [PATCH 1/3] uboot-envtools: Remove openwrt mirror from PKG_SOURCE_URL.

2018-02-20 Thread Rosen Penev
This mirror is already attempted in case the other fails. Doesn't matter though since it doesn't work anyway (404 error). Discovered through "make download V=s" Output: make[2]: Entering directory '/home/mangix/devstuff/openwrt/package/boot/uboot-envtools' mkdir -p

[LEDE-DEV] [PATCH 3/3] download.pl: Change OpenWrt mirrors to HTTPS.

2018-02-20 Thread Rosen Penev
These have supported HTTPS for quite a while. I have not seen any obvious breakage. Signed-off-by: Rosen Penev --- scripts/download.pl | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/download.pl b/scripts/download.pl index

[LEDE-DEV] [PATCH 2/3] download.pl: Change SourceForge address to HTTPS.

2018-02-20 Thread Rosen Penev
SourceForge has supported HTTPS for its downloads for a long time now. I have not been able to see any failures resulting from this change. Signed-off-by: Rosen Penev --- scripts/download.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git