Re: [OpenWrt-Devel] [PATCH] procd: instance: Support deleting stopped instances

2019-04-04 Thread Hans Dedecker
On Wed, Mar 13, 2019 at 4:44 PM Kristian Evensen wrote: > > procd currently does not support deleting a stopped instance. The reason > is that we return in instance_stop(), if pending is set to false. This > patch adds a new function, instance_delete(), which does the necessary > clean-up of an in

Re: [OpenWrt-Devel] [Patch 1/1] mtd add winbond w25q128jv nor flash

2019-04-04 Thread Schlote, Carsten
Hi Petr, > FYI there is no plan to make another v17 release. Oh, thanks for the info. Just another good reason to migrate from our patched v17 to v18 asap ;-) I made an initial v18 branch some months ago. The new flash device forced me to patch the current v17 as some kind of hotfix, and eve

Re: [OpenWrt-Devel] [PATCH v2] base-files/hotplug: fix dedicated group for tty devices

2019-04-04 Thread Hans Dedecker
On Tue, Apr 2, 2019 at 9:48 PM Michael Heimpold wrote: > > Commit 124ab1dc0a and 5523ee3459 introduced the assignment of the > group "tty" to /dev/tty* devices in order to support unprivileged > user access to serial devices. > > However, due to an improperly rebased commit this feature broke. > >

Re: [OpenWrt-Devel] [PATCH 1/4] uboot-imx6: Add support for Toradex Apalis board family

2019-04-04 Thread Petr Štetiar
Petr Štetiar [2019-04-04 15:10:32]: > I'm adding SDP filesize patch as I plan to use recovery/factory flashing > with imx_usb and SDP. I'll fix the commit message, the SDP filesize patch is no longer part of this commit as it was upstreamed and is already part of 2019.1 U-Boot release. -- ynezz

[OpenWrt-Devel] [PATCH 4/4] imx6: Add support for Toradex Apalis family of CoMs

2019-04-04 Thread Petr Štetiar
This patch adds support for the following computer on modules (CoM) from Toradex[A]: Apalis iMX6 Quad 2GB IT - i.MX 6Quad 800MHz, 2GB DDR3, 4GB eMMC -40° to +85° C Temp Apalis iMX6 Quad 1GB- i.MX 6Quad 1GHz, 1GB DDR3, 4GB eMMC

[OpenWrt-Devel] [PATCH 0/4] imx6: Add support for Toradex Apalis family of CoMs

2019-04-04 Thread Petr Štetiar
Hi, this is a continuation of PR#1595 and I'm sending it through mailing list for a final review. I've been using OpenWrt on this modules for a few years already. This patches are already being tested on some units in production, where they're running fine 24/7 since beginning of February 2019 (r

[OpenWrt-Devel] [PATCH 2/4] uboot-envtools: imx6: Add support for Toradex Apalis board family

2019-04-04 Thread Petr Štetiar
Signed-off-by: Petr Štetiar --- package/boot/uboot-envtools/files/imx6 | 4 1 file changed, 4 insertions(+) diff --git a/package/boot/uboot-envtools/files/imx6 b/package/boot/uboot-envtools/files/imx6 index fec8ce0..fb05f13 100644 --- a/package/boot/uboot-envtools/files/imx6 +++ b/package/

[OpenWrt-Devel] [PATCH 1/4] uboot-imx6: Add support for Toradex Apalis board family

2019-04-04 Thread Petr Štetiar
I'm adding SDP filesize patch as I plan to use recovery/factory flashing with imx_usb and SDP. Signed-off-by: Petr Štetiar --- package/boot/uboot-imx6/Makefile | 7 ++ ...apalis-Make-the-boot-process-more-generic.patch | 127 + 2 files changed, 134 inserti

[OpenWrt-Devel] [PATCH 3/4] imx6: image: Split imx6-sdcard image for reusability

2019-04-04 Thread Petr Štetiar
Signed-off-by: Petr Štetiar --- target/linux/imx6/image/Makefile | 19 --- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/target/linux/imx6/image/Makefile b/target/linux/imx6/image/Makefile index 9dd5b52..fa10b75 100644 --- a/target/linux/imx6/image/Makefile +++ b/

Re: [OpenWrt-Devel] [Patch 1/1] mtd add winbond w25q128jv nor flash

2019-04-04 Thread Petr Štetiar
Schlote, Carsten [2019-04-04 10:05:35]: Hi Carsten, > This patch adds support for the w25q128jv NOR flash device to kernel 4.4 as > used in the v17 releases. we already have support for this flash in our tree: target/linux/generic/pending-4.14/475-mtd-spi-nor-Add-Winbond-w25q128jv-support.pa

[OpenWrt-Devel] [Patch 1/1] mtd add winbond w25q128jv nor flash

2019-04-04 Thread Schlote, Carsten
This patch adds support for the w25q128jv NOR flash device to kernel 4.4 as used in the v17 releases. Signed-off-by: Carsten Schlote --- diff --git a/target/linux/generic/patches-4.4/478-mtd-add-winbond-w25q128jv-nor-flash.patch b/target/linux/generic/patches-4.4/478-mtd-add-winbond-w25q128

[OpenWrt-Devel] [PATCH 3/3] x86: add EFI images and make iso images EFI bootable

2019-04-04 Thread 李国
Add EFI bootable images for x86 platforms. These images can also boot from legacy BIOS. And iso images can boot from EFI now. EFI System Partition need to be fat12/fat16/fat32 (not need to load filesystem drivers), so the first partition of EFI images are not ext4 filesystem any more. GPT partiti

[OpenWrt-Devel] [PATCH 1/3] firmware-utils: ptgen: add GPT support

2019-04-04 Thread 李国
Add GPT support to ptgen, so we can generate EFI bootable images. Introduced two options: -ggenerate GPT partition table -G GUID use GUID for disk and increase last bit for all partitions We drop The alternate partition table to reduce size, This may cause problems when generate

[OpenWrt-Devel] [PATCH 2/3] grub2: split to grub2 and grub2-efi packages

2019-04-04 Thread 李国
EFI bootable images need grub2 host packages with efi platform, but grub2 can not build efi platform and pc platform together, so we split it to grub2 and grub2-efi packages. Signed-off-by: 李国 --- package/boot/grub2/Makefile | 93 --- package/boot/grub2/

[OpenWrt-Devel] [PATCH] kernel: fix rtcache compilation with 4.19 and NF_CONNTRACK_IPV6

2019-04-04 Thread Rafał Miłecki
From: Rafał Miłecki This fixes: net/netfilter/nf_conntrack_rtcache.c: In function 'nf_rtcache_get_cookie': net/netfilter/nf_conntrack_rtcache.c:82:11: error: 'const struct rt6_info' has no member named 'rt6i_node'; did you mean 'rt6i_idev'? if (rt->rt6i_node) ^ r

Re: [OpenWrt-Devel] ath9k: fix dynack in IBSS mode

2019-04-04 Thread Lorenzo Bianconi
> On Wed, Apr 3, 2019 at 7:40 AM Lorenzo Bianconi > wrote: > > > > > > > > On Tue, Apr 2, 2019 at 11:45 PM Lorenzo Bianconi > > > wrote: > > > > > > > > > > > > > > On Sun, Mar 31, 2019 at 11:49 PM Lorenzo Bianconi > > > > > wrote: > > > > > > > > > > > > > > > > > > > > On Sun, Mar 31, 2019 at