Re: [OpenWrt-Devel] [PATCH 2/5] build: image: Add pad-to and pad-rootfs-squashfs helpers

2019-03-29 Thread Petr Štetiar
Felix Fietkau [2019-03-29 18:14:36]: > On 2019-03-29 15:07, Petr Štetiar wrote: > > + > > +define Image/pad-root-squashfs > > + $(call Image/pad-to,$(KDIR)/root.squashfs,$(if > > $(1),$(1),$(CONFIG_TARGET_ROOTFS_PARTSIZE)M)) > > +endef > > The image should only be padded if CONFIG_TARGET_IMAGE

[OpenWrt-Devel] [PATCH] mbedtls: update to version 2.16.1

2019-03-29 Thread Josef Schlehofer
Refreshed patches Signed-off-by: Josef Schlehofer --- package/libs/mbedtls/Makefile | 10 ++--- package/libs/mbedtls/patches/200-config.patch | 44 +-- ...optimized-MULADDC-code-only-on-ARM-6.patch | 2 +- 3 files changed, 28 insertions(+), 28 deletions(-) diff

[OpenWrt-Devel] [PATCH openwrt] procd: allow passing optional group instance parameter

2019-03-29 Thread Michael Heimpold
Signed-off-by: Michael Heimpold --- package/system/procd/files/procd.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/package/system/procd/files/procd.sh b/package/system/procd/files/procd.sh index 72f25fe0c0..88114cee2a 100644 --- a/package/system/procd/files/procd.sh

[OpenWrt-Devel] [PATCH procd] service: allow setting a dedicated group id

2019-03-29 Thread Michael Heimpold
Sometimes is desirable to run a process with a specific group id instead of the default one which is derived from passwd entry. However, we still want to initialize supplementary group ids (including the default one), thus we have to store the specific one in a dedicated structure element. Signed

[OpenWrt-Devel] [PATCH] base-files/hotplug: add "dialout" user group and use it for ttyXYZ devices

2019-03-29 Thread Michael Heimpold
This add that "well-known" group to the system database and changes hotplug default rules to assign /dev/tty[A-Za-z]+[0-9]+ nodes to this new group. Background is to allow more fine-granulated permissions, e.g. for daemons like ser2net which make UART ports available via network and thus should no

[OpenWrt-Devel] [PATCH] Allow setting dedicated groupid for services

2019-03-29 Thread Michael Heimpold
Sometimes is desirable to run a process with a specific group id instead of the default one which is derived from passwd entry. This series extends procd to recognize such an optional group name passed to it during service instance definition. It also adds the required passing-through to the procd

[OpenWrt-Devel] New ath10k ct firmware is available.

2019-03-29 Thread Ben Greear
Hello, I fixed a bug that broke sending mgt frames in htt-mgt mode if mgt frame was short (or had very unlucky contents at a certain offset) and previous longer packet was EAPOL or some other high-priority frame types. This bug was in both 10.1 and 10.4 firmware, and I introduced it (or rather,

Re: [OpenWrt-Devel] [PATCH 2/5] build: image: Add pad-to and pad-rootfs-squashfs helpers

2019-03-29 Thread Felix Fietkau
On 2019-03-29 15:07, Petr Štetiar wrote: > In order to share common functionality across platforms. > > Signed-off-by: Petr Štetiar > --- > include/image-commands.mk | 3 +-- > include/image.mk | 9 + > 2 files changed, 10 insertions(+), 2 deletions(-) > > diff --git a/include/

[OpenWrt-Devel] [PATCH] ramips: add missing SPDX identifier for EX6150

2019-03-29 Thread David Bauer
This adds the SPDX license identifier for the NETGEAR EX6150. It was missed when submitting the original patch. Signed-off-by: David Bauer --- target/linux/ramips/dts/EX6150.dts | 1 + 1 file changed, 1 insertion(+) diff --git a/target/linux/ramips/dts/EX6150.dts b/target/linux/ramips/dts/EX61

[OpenWrt-Devel] [PATCH 5/5] x86: image: Fix small disk space in squashfs overlay

2019-03-29 Thread Petr Štetiar
Current squashfs snapshot images are improperly padded by just 128k, which doesn't correspond with TARGET_ROOTFS_PARTSIZE=256 default config option, leading to following: FilesystemSize Used Available Use% Mounted on /dev/root 2.5M 2.5M 0 100% /r

[OpenWrt-Devel] [PATCH 1/5] build: image: Add IMG_ROOTFS and IMG_COMBINED variables

2019-03-29 Thread Petr Štetiar
Adding those two variables in order to share them across the tree. Signed-off-by: Petr Štetiar --- include/image.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/image.mk b/include/image.mk index 9e40a54..6d9e347 100644 --- a/include/image.mk +++ b/include/image.mk @@ -42,6 +42,8

[OpenWrt-Devel] [PATCH 4/5] rb532, x86: image: Use new IMG_COMBINED and IMG_ROOTFS vars

2019-03-29 Thread Petr Štetiar
In `build: image: Add IMG_ROOTFS and IMG_COMBINED variables` we've added this new variables so switch to them now. Signed-off-by: Petr Štetiar --- target/linux/rb532/image/Makefile | 2 +- target/linux/x86/image/Makefile | 24 2 files changed, 13 insertions(+), 13 del

[OpenWrt-Devel] [PATCH 0/5] x86: Fix small disk space in squashfs overlay

2019-03-29 Thread Petr Štetiar
Hi, this is a continuation of my work on fixing currently broken squashfs images on x86, armvirt and malta. This patch series fixes problem with small disk space on squashfs overlays (f2fs/ext4). Current squashfs snapshot(and probably releases as well) images are improperly padded by just 128k,

[OpenWrt-Devel] [PATCH 2/5] build: image: Add pad-to and pad-rootfs-squashfs helpers

2019-03-29 Thread Petr Štetiar
In order to share common functionality across platforms. Signed-off-by: Petr Štetiar --- include/image-commands.mk | 3 +-- include/image.mk | 9 + 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/include/image-commands.mk b/include/image-commands.mk index 8251a81

[OpenWrt-Devel] [PATCH 3/5] build: image: Add variable for gzip-ext4-padded-squashfs

2019-03-29 Thread Petr Štetiar
This common code could be shared by at least 3 targets (malta, armvirt and x86) so let's factor it out to separate variable. Signed-off-by: Petr Štetiar --- include/image.mk | 21 + 1 file changed, 21 insertions(+) diff --git a/include/image.mk b/include/image.mk index 8b84c

Re: [OpenWrt-Devel] ath10k-ct issues - IBSS mode

2019-03-29 Thread Hauke Mehrtens
On 3/29/19 1:43 PM, Ben Greear wrote: > > > On 03/29/2019 02:58 AM, Koen Vandeputte wrote: >> >> On 26.03.19 19:39, Ben Greear wrote: >>> On 3/26/19 6:59 AM, Koen Vandeputte wrote: On 26.03.19 14:50, Ben Greear wrote: > > > On 03/26/2019 03:09 AM, Koen Vandeputte wrote:

Re: [OpenWrt-Devel] ath10k-ct issues - IBSS mode

2019-03-29 Thread Ben Greear
On 03/29/2019 02:58 AM, Koen Vandeputte wrote: On 26.03.19 19:39, Ben Greear wrote: On 3/26/19 6:59 AM, Koen Vandeputte wrote: On 26.03.19 14:50, Ben Greear wrote: On 03/26/2019 03:09 AM, Koen Vandeputte wrote: Hi Ben, Following our conversation from yesterday, here is a summary of all

Re: [OpenWrt-Devel] ath10k-ct issues - IBSS mode

2019-03-29 Thread Koen Vandeputte
On 26.03.19 19:39, Ben Greear wrote: On 3/26/19 6:59 AM, Koen Vandeputte wrote: On 26.03.19 14:50, Ben Greear wrote: On 03/26/2019 03:09 AM, Koen Vandeputte wrote: Hi Ben, Following our conversation from yesterday, here is a summary of all issues seen so far: Test setup: - Board: Mikro

[OpenWrt-Devel] Merged: ramips: Increase GB-PC1 SPI frequency to 80MHz

2019-03-29 Thread Petr Štetiar
Thanks! Merged into my staging tree at https://git.openwrt.org/openwrt/staging/ynezz.git ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/mailman/listinfo/openwrt-devel