[LEDE-DEV] pppd does not restart for 3g-wwan

2016-08-27 Thread Reiner Karlsberg
Actually I am trying to set up a remote station, connected to the web using integrated 3g/LTE-modem (Huawei ME909u-521) via ppp. My basic system without the modem connection works perfectly, using pppoe instead. However, after my mods for the modem, I have following problems: - quite often, sys

[LEDE-DEV] VRV9510KWAC23

2016-08-27 Thread Juan Rios
Hello, I managed to get this router and want to get lede on it. The hardware is this Lantiq VRX288 500Mhz 2 NANYA NT5TU128M8HE-AC 256MB RAM ZENTEL A501GA31ATS 8G 128MB NAND FLASH. Wireless 2.4Ghz BCM43222KFBG Wireless 5Ghz BCM4360KMLG VDSL/ADSL2+ XWAY VRX208 5 port GB Ethernet I already found

[LEDE-DEV] [PATCH/RFC 0/3] UBI: unify mouting rootfs based on cmdline parameter

2016-08-27 Thread Daniel Golle
Hi! In an attempts to fix the flaws of the current set of UBI-related patches we are carrying in OpenWrt, I re-wrote the way mounting the rootfs from UBI in OpenWrt/LEDE works. The main requirement I face which cannot be easily addressed using other means which are already available in the kernel

[LEDE-DEV] [PATCH 3/3] init: auto-create ubiblock device for non-UBIFS rootfs on UBI

2016-08-27 Thread Daniel Golle
Signed-off-by: Daniel Golle --- init/do_mounts.c | 62 +--- 1 file changed, 55 insertions(+), 7 deletions(-) diff --git a/init/do_mounts.c b/init/do_mounts.c index dea5de9..485df12 100644 --- a/init/do_mounts.c +++ b/init/do_mounts.c @@ -28,6 +

[LEDE-DEV] [PATCH 1/3] UBIFS, UBI: move volume string parser from UBIFS to UBI

2016-08-27 Thread Daniel Golle
Signed-off-by: Daniel Golle --- drivers/mtd/ubi/kapi.c | 65 + fs/ubifs/super.c| 64 +--- include/linux/mtd/ubi.h | 1 + 3 files changed, 67 insertions(+), 63 deletions(-) diff --git a/drivers/m

[LEDE-DEV] [PATCH 2/3] mtd: ubiblock: introduce ubiblock_create_dev

2016-08-27 Thread Daniel Golle
Define function ubiblock_create_dev(char *name, dev_t *bdev) which returns the created device by setting the point bdev. This is useful for in-kernel users creating a ubiblock device in order to mount the root filesystem. Signed-off-by: Daniel Golle --- drivers/mtd/ubi/block.c | 11 ++-