Re: [PATCH 2/2] toolchain/musl: remove several GNU headers

2020-08-28 Thread Rosen Penev
On Fri, Aug 28, 2020 at 10:40 PM Felix Fietkau wrote: > > On 2020-08-29 05:28, Rosen Penev wrote: > > Remove GLOB_ONLYDIR patch. Only fstools relies on it. fstools can be fixed > > separately. > > > > Remove woresize.h file. It seems to be for an old version of GCC.

[PATCHv2] umdns: fix 64-bit time format string

2020-08-29 Thread Rosen Penev
Fixes compilation under musl 1.2.0 Signed-off-by: Rosen Penev --- v2: added header to fix compilation with uClibc-ng service.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/service.c b/service.c index af3083e..53f44c1 100644 --- a/service.c +++ b/service.c @@ -17,6

Re: [RFC] self-signed certificates for LuCI

2020-08-30 Thread Rosen Penev
> On Aug 30, 2020, at 00:57, Paul Spooren wrote: > > Hi team, > > I recently rewrote px5g[1] to use WolfSSL instead of MbedTLS, as the former > will be included in OpenWrt 20.x per default. > > Both implementations support the generation of RSA and ECC keys, where uhttpd > currently default

[PATCH] umdns: fix compilation with GCC 10

2020-08-30 Thread Rosen Penev
ds] 242 | s->id = strncpy(d_id, blobmsg_name(b), n); Signed-off-by: Rosen Penev --- service.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service.c b/service.c index 53f44c1..e649b64 100644 --- a/service.c +++ b/service.c @@ -240,7 +240,7 @@ service_load_blob(struct bl

[PATCH 1/2] busybox: fix build with musl 1.2.0

2020-08-30 Thread Rosen Penev
The first two are useless as /bin/sh can execute those scripts just fine. Shellcheck reports no problems. Telnet patch is useless as telnet is no longer used in OpenWrt. Signed-off-by: Rosen Penev --- package/utils/busybox/Makefile| 2 +- ...rappers-around-clock_gettime-clo

[PATCH 2/2] base-files: use hwclock --systz

2020-08-30 Thread Rosen Penev
p;tt); int b = gettimeofday(NULL, &tz); printf("%d - %d, %d\n", a, tt.tz_minuteswest, tt.tz_dsttime); printf("%d - %d, %d\n", b, tz.tz_minuteswest, tz.tz_dsttime); } Signed-off-by: Rosen Penev --- package/base-files/Makefile| 2 +-

[PATCHv2] libunwind: update to 1.4.0

2020-08-31 Thread Rosen Penev
the InstallDev section for ARC. libunwind does not support ARC and fails to compile. It seems InstallDev ignores the !arc DEPENDS. Signed-off-by: Rosen Penev --- v2: reworded slightly package/libs/libunwind/Makefile | 17 +- ...03-fix-missing-ef_reg-defs-with-musl.patch | 2

Re: [PATCH] umdns: fix compilation with GCC 10

2020-08-31 Thread Rosen Penev
> On Aug 31, 2020, at 00:08, Petr Štetiar wrote: > > Rosen Penev [2020-08-30 15:07:03]: > > Hi, > >> /service.c:242:10: error: 'strncpy' offset 6 from the object at 'b' is >> out of the bounds of referenced subobject 'name'

Re: [PATCH] umdns: fix compilation with GCC 10

2020-08-31 Thread Rosen Penev
Sent from my iPhone > On Aug 31, 2020, at 01:29, Petr Štetiar wrote: > > Rosen Penev [2020-08-31 00:53:32]: > >>>> /service.c:242:10: error: 'strncpy' offset 6 from the object at 'b' is >>>> out of the bounds of referenced subobje

Re: [PATCH] umdns: fix compilation with GCC 10

2020-08-31 Thread Rosen Penev
> On Aug 31, 2020, at 9:41 AM, Hauke Mehrtens wrote: > > On 8/31/20 11:35 AM, Petr Štetiar wrote: >> Rosen Penev [2020-08-31 02:06:50]: >> >>> I compile with target GCC 10, not host. >> >> Then as you can see its probably some issue with GCC 10

[PATCH] iftop: fix compilation with GCC 10

2020-09-01 Thread Rosen Penev
GCC 10 defaults to fno-common, which demands unique defenitions. Patch taken from buildroot. Signed-off-by: Rosen Penev --- package/network/utils/iftop/Makefile | 2 +- .../utils/iftop/patches/010-gcc10.patch | 57 +++ 2 files changed, 58 insertions(+), 1

[PATCH] trace-cmd: update to 2.9

2020-09-01 Thread Rosen Penev
Fixes compilation with GCC 10. Signed-off-by: Rosen Penev --- package/devel/trace-cmd/Makefile | 25 +++ .../patches/110-mac80211_tracepoint.patch | 10 .../devel/trace-cmd/patches/120-limits.patch | 24 -- .../devel/trace-cmd/patches

[PATCH] ppp: fix compilation with musl 1.2.0

2020-09-01 Thread Rosen Penev
As sys/cdefs.h is no longer available, a __P definition is needed. Fixes compilation with rp-pppoe-server. Signed-off-by: Rosen Penev --- package/network/services/ppp/Makefile | 2 +- package/network/services/ppp/patches/610-__P.patch | 14 ++ 2 files changed, 15

[PATCH] kexec-tools: update to 2.0.20

2020-09-01 Thread Rosen Penev
kdump was removed in 7acd257ae67b4ca94f8c23cb8bda0ee0709b9216 gdb can be used as an alternative. Backported patch to fix compilation with GCC10. Backported several openembedded patches, some of which are upstream backports. Signed-off-by: Rosen Penev --- package/boot/kexec-tools/Makefile

[PATCH] util-linux: fix build when libmagic is present

2020-09-01 Thread Rosen Penev
Signed-off-by: Rosen Penev --- package/utils/util-linux/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package/utils/util-linux/Makefile b/package/utils/util-linux/Makefile index 0fc9819c58..05ceaa413e 100644 --- a/package/utils/util-linux/Makefile +++ b/package

[PATCH] tools/zstd: update to 1.4.5

2020-09-02 Thread Rosen Penev
Fix URL. The GITHUB macro is meant to be used for files inside a git repository. This gets downloaded purely by accident (19.07 packages feed has zstd 1.4.5 with the file in sources.openwrt.org). Remove upstream backport. Signed-off-by: Rosen Penev --- tools/zstd/Makefile

[PATCH] uClibc-ng: update to 1.0.35

2020-09-02 Thread Rosen Penev
Fixes compilation with iproute2-full by adding open__to_handle_at. Switched to HTTPS for download URL. Signed-off-by: Rosen Penev --- toolchain/uClibc/common.mk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/toolchain/uClibc/common.mk b/toolchain/uClibc/common.mk

[PATCH] policycoreutils: add nls.mk

2020-09-02 Thread Rosen Penev
Fixes compilation under uClibc-ng. Signed-off-by: Rosen Penev --- package/utils/policycoreutils/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package/utils/policycoreutils/Makefile b/package/utils/policycoreutils/Makefile index 0cebec7ece..34c186e62e 100644

Re: [PATCH] util-linux: fix build when libmagic is present

2020-09-04 Thread Rosen Penev
On Thu, Sep 3, 2020 at 11:29 PM Petr Štetiar wrote: > > Rosen Penev [2020-09-01 15:37:03]: > > From https://openwrt.org/submitting-patches, section about commit description: > > "it will be committed to the source changelog, so it should explain to a > competen

Re: ramips: ethernet: fix to interrupt handling

2020-09-04 Thread Rosen Penev
On Fri, Sep 4, 2020 at 7:01 AM Jaap Buurman wrote: > > Dear all, > > Is there a reason the "ramips: ethernet: fix to interrupt handling" > patch never was included in the master branch or 19.07 branch?: > > https://patchwork.ozlabs.org/project/openwrt/patch/20191029172328.85861-2-ros...@gmail.com/

Re: Upcoming 19.07.4 and 18.07.9 stable releases

2020-09-04 Thread Rosen Penev
On Fri, Aug 28, 2020 at 2:38 PM Hauke Mehrtens wrote: > > On 7/30/20 8:57 PM, Baptiste Jonglez wrote: > > Hi, > > > > New point releases for 19.07 and 18.06 are starting to be overdue, and I > > would like to help 19.07.4 and 18.06.9 get released somewhere around > > mid-August. > > > > The main m

Re: [PATCHv3] mdadm: revised mdadm config & init logic

2020-09-09 Thread Rosen Penev
Ping. Is there any chance of this being merged? On Wed, Jan 22, 2020 at 6:57 PM Rosen Penev wrote: > > From: Joseph Tingiris > > This is a significant revision of /etc/init.d/mdadm. It adds new > features, support for new configuration options, safer error > handling, (con

[PATCH] libcxxabi: fix compilation under the SDK

2020-09-09 Thread Rosen Penev
Under the SDK, the path for base packages is different. Signed-off-by: Rosen Penev --- package/libs/libcxxabi/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/libs/libcxxabi/Makefile b/package/libs/libcxxabi/Makefile index 90547561b2..e663fafc8e 100644 --- a

Re: [PATCH] libcxxabi: fix compilation under the SDK

2020-09-10 Thread Rosen Penev
On Thu, Sep 10, 2020 at 1:25 AM Jo-Philipp Wich wrote: > > Hi, > > > + $(MAKE) -C $(TOPDIR)/$(if > > $(CONFIG_IN_SDK),feeds/base/)package/libs/libcxx prepare > > this looks like an ugly hack, Yes it is. > also the feed is not guaranteed to reside in > feeds/base/ - the user can theoretically

Re: [OpenWrt-Devel] [PATCHv3] mdadm: revised mdadm config & init logic

2020-09-10 Thread Rosen Penev
On Thu, Sep 10, 2020 at 1:40 AM Jo-Philipp Wich wrote: > > Hi, > > comments inline. > > On 1/23/20 3:56 AM, Rosen Penev wrote: > > From: Joseph Tingiris > > > > This is a significant revision of /etc/init.d/mdadm. It adds new > > features, support

[PATCHv4] mdadm: revised mdadm config & init logic

2020-09-11 Thread Rosen Penev
ration file. Incremented PKG_RELEASE from 1 to 2 Signed-off-by: Joseph Tingiris (rebased and ran through shellcheck) Signed-off-by: Rosen Penev --- v4: remove a bunch of stuff based on review v3: Simplified several sections v2: Rebased after sysmacro patches package/utils/mdadm/Makefile |

[PATCH] bpftools: fix compilation under powerpc

2020-09-13 Thread Rosen Penev
K 58 Signed-off-by: Rosen Penev --- package/network/utils/bpftools/Makefile | 2 +- .../utils/bpftools/patches/010-powerpc.patch | 50 +++ 2 files changed, 51 insertions(+), 1 deletion(-) create mode 100644 package/network/utils/bpftools/patches/010-powerpc.patch di

Re: [PATCH] bpftools: fix compilation under powerpc

2020-09-13 Thread Rosen Penev
On Sun, Sep 13, 2020 at 1:56 PM Rosen Penev wrote: > > asm/errno.h must be included before errno.h under powerpc. https://downloads.openwrt.org/snapshots/faillogs/powerpc_464fp/base/bpftools/full/compile.txt > > Fixes: > > In file included from tools/arch/powerpc/include/

[PATCH] fs-cifs: remove old CONFIG option

2020-09-14 Thread Rosen Penev
0fdfef9aa7ee68ddd508aef7c98630cfc054f8d6 upstream removed this option. Kernels 4.19 and above do not have it. Currently only kernels 4.19 and 5.4 are in the tree. Signed-off-by: Rosen Penev --- package/kernel/linux/modules/fs.mk | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff

[PATCH 1/2] fs/cifs: update module dependencies

2020-09-14 Thread Rosen Penev
-off-by: Rosen Penev --- package/kernel/linux/modules/fs.mk | 17 ++--- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/package/kernel/linux/modules/fs.mk b/package/kernel/linux/modules/fs.mk index cfce929c0c..abaf2d07fb 100644 --- a/package/kernel/linux/modules/fs.mk

[PATCH 2/2] target/linux: disable legacy and debug cifs options

2020-09-14 Thread Rosen Penev
CIFS_ALLOW_INSECURE_LEGACY is only relevant for mounting shares that are provided by old CIFS servers. It is not relevant to the Samba or ksmbd package that provide a server. CIFS_STATS is a debugging option. It is not really useful for end users Signed-off-by: Rosen Penev --- target/linux

[PATCH 3/4] base-files/functions.sh: replace ^ with ! in []

2020-09-19 Thread Rosen Penev
lcheck: https://github.com/koalaman/shellcheck/wiki/SC2169 Signed-off-by: Rosen Penev --- package/base-files/files/lib/functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/base-files/files/lib/functions.sh b/package/base-files/files/lib/functions.sh index 0f5638724

[PATCH 1/4] base-files/functions.sh: read grep output by line

2020-09-19 Thread Rosen Penev
From: https://github.com/koalaman/shellcheck/wiki/SC2013 For loops by default (subject to $IFS) read word by word. Additionally, glob expansion will occur. I believe the intended use case of these loops is to read lines. Signed-off-by: Rosen Penev --- package/base-files/files/lib/functions.sh

[PATCH 4/4] base-files/functions.sh: quote variables in []

2020-09-19 Thread Rosen Penev
ash does not support [[]] syntax, which makes this redundant. Found with https://github.com/koalaman/shellcheck/wiki/Sc2086 Signed-off-by: Rosen Penev --- package/base-files/files/lib/functions.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/base-files/files

[PATCH 2/4] base-files/functions.sh: do not iterate over ls

2020-09-19 Thread Rosen Penev
rying to process a file with spaces in the name). Signed-off-by: Rosen Penev --- package/base-files/files/lib/functions.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/package/base-files/files/lib/functions.sh b/package/base-files/files/lib/functions.sh index 59bb0fe711..0f

Re: Regressions in 19.07.4

2020-09-22 Thread Rosen Penev
On Tue, Sep 22, 2020 at 4:48 PM Baptiste Jonglez wrote: > > Hi, > > FYI, there have been several regressions reported in 19.07.4: > > https://openwrt.org/releases/19.07/notes-19.07.4#regressions I think what that patch fixes was done on master with the upstream driver. I backported some of the c

Re: [PATCH 2/4] base-files/functions.sh: do not iterate over ls

2020-09-25 Thread Rosen Penev
On Sun, Sep 20, 2020 at 3:15 AM wrote: > > On 20.09.2020 07:31, Rosen Penev wrote: > > - for file in $(ls $1/*.sh 2>/dev/null); do > > - . $file > > + for file in "$1"/*.sh; do > > + [ -e "$file" ] || break &

Re: Meson files missing breaking build

2020-09-26 Thread Rosen Penev
On Sat, Sep 26, 2020 at 11:13 PM Andre Heider wrote: > > On 27/09/2020 00:02, Philip Prindeville wrote: > > Hi. > > > > I’m having issues building a lot of packages lately, going back to June or > > July. Not sure what changed then. Maybe the 0.54.3 update to Meson? > > > > Various things like

[PATCH] perf: disable libzstd support

2020-10-02 Thread Rosen Penev
libzstd from the packages feed gets picked up. Remove it. Fixes: Package perf is missing dependencies for the following libraries: libzstd.so.1 Signed-off-by: Rosen Penev --- package/devel/perf/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package/devel/perf

Re: [PATCH 2/2] target/linux: disable legacy and debug cifs options

2020-10-10 Thread Rosen Penev
On Sat, Oct 10, 2020 at 2:04 PM Hauke Mehrtens wrote: > > On 9/15/20 3:33 AM, Rosen Penev wrote: > > CIFS_ALLOW_INSECURE_LEGACY is only relevant for mounting shares that > > are provided by old CIFS servers. It is not relevant to the Samba or > > ksmbd package that provide

[PATCH] trace-cmd: update to 2.9.1

2020-10-11 Thread Rosen Penev
Fixes compilation with GCC 10. Added patch to fix compilation without fortify-headers. Signed-off-by: Rosen Penev --- package/devel/trace-cmd/Makefile | 24 ++- .../patches/110-mac80211_tracepoint.patch | 10 ++--- .../devel/trace-cmd/patches/120-limits.patch | 24

[PATCH] argp-standalone: add BUILDONLY

2020-10-13 Thread Rosen Penev
Fixes Makefile warning: WARNING: skipping argp-standalone -- package has no install section Signed-off-by: Rosen Penev --- package/libs/argp-standalone/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/package/libs/argp-standalone/Makefile b/package/libs/argp-standalone/Makefile

[PATCH] exfat: update to 5.10.1

2020-10-14 Thread Rosen Penev
x27;VolumeFlags' properly Signed-off-by: Rosen Penev --- package/kernel/exfat/Makefile | 9 - 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/package/kernel/exfat/Makefile b/package/kernel/exfat/Makefile index c3d20fe263..3f873a71ee 100644 --- a/package/kernel/exfat/Ma

[PATCHv2 4/4] base-files/functions.sh: quote variables in []

2020-10-14 Thread Rosen Penev
ash does not support [[]] syntax, which makes this redundant. Found with https://github.com/koalaman/shellcheck/wiki/Sc2086 Signed-off-by: Rosen Penev --- package/base-files/files/lib/functions.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/base-files/files

[PATCHv2 3/4] base-files/functions.sh: replace ^ with ! in []

2020-10-14 Thread Rosen Penev
lcheck: https://github.com/koalaman/shellcheck/wiki/SC2169 Signed-off-by: Rosen Penev --- package/base-files/files/lib/functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/base-files/files/lib/functions.sh b/package/base-files/files/lib/functions.sh index 61aa87b2d

[PATCHv2 1/4] base-files/functions.sh: read grep output by line

2020-10-14 Thread Rosen Penev
>From https://github.com/koalaman/shellcheck/wiki/SC2013 For loops by default (subject to $IFS) read word by word. Additionally, glob expansion will occur. I believe the intended use case of these loops is to read lines. Signed-off-by: Rosen Penev --- package/base-files/files/lib/functions

[PATCHv2 2/4] base-files/functions.sh: do not iterate over ls

2020-10-14 Thread Rosen Penev
process a file with spaces in the name). Signed-off-by: Rosen Penev --- v2: replaced break with continue package/base-files/files/lib/functions.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/package/base-files/files/lib/functions.sh b/package/base-files/f

[PATCHv2 2/2] target/linux: disable CONFIG_CIFS_STATS

2020-10-14 Thread Rosen Penev
CIFS_STATS is a debugging option. It is not really useful for end users Signed-off-by: Rosen Penev --- v2: no longer disable CIFS1 target/linux/generic/config-4.19 | 2 +- target/linux/generic/config-5.4 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/target/linux

[PATCHv2 1/2] fs/cifs: update module dependencies

2020-10-14 Thread Rosen Penev
-off-by: Rosen Penev --- package/kernel/linux/modules/fs.mk | 17 ++--- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/package/kernel/linux/modules/fs.mk b/package/kernel/linux/modules/fs.mk index cabc272282..6fae78048e 100644 --- a/package/kernel/linux/modules/fs.mk

[PATCHv3] umdns: fix 64-bit time format string

2020-10-14 Thread Rosen Penev
Fixes compilation under musl 1.2.0 Signed-off-by: Rosen Penev --- v3: Use signed size type instead of unsigned v2: added header to fix compilation with uClibc-ng service.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/service.c b/service.c index af3083e..66a3382 100644

[PATCH 2/2] libcxx: update to 11.0.0

2020-10-21 Thread Rosen Penev
Added Fedora patch to remove monorepo requirement. Refreshed other patch. Signed-off-by: Rosen Penev --- package/libs/libcxx/Makefile | 4 +-- package/libs/libcxx/patches/010-ssp.patch | 2 +- .../020-remove-monorepo-requirement.patch | 33 +++ 3

[PATCH 1/2] libcxxabi: update to 11.0.0

2020-10-21 Thread Rosen Penev
Added Fedora patch to remove the monorepo requirement. Fixed compilation under the SDK. Signed-off-by: Rosen Penev --- package/libs/libcxxabi/Makefile | 7 +++--- .../020-remove-monorepo-requirement.patch | 23 +++ 2 files changed, 26 insertions(+), 4

[PATCH] toolchain/uClibc-ng: update to 1.0.36

2020-10-28 Thread Rosen Penev
Fixes compilation with iproute2-full by adding open__to_handle_at. Switched to HTTPS for download URL. Signed-off-by: Rosen Penev --- toolchain/uClibc/common.mk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/toolchain/uClibc/common.mk b/toolchain/uClibc/common.mk

[PATCH] prereq-build: add python 3.9 support

2020-10-29 Thread Rosen Penev
Fixes unmet dependency issue. Signed-off-by: Rosen Penev --- include/prereq-build.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/prereq-build.mk b/include/prereq-build.mk index f67a01299e..8352b38776 100644 --- a/include/prereq-build.mk +++ b/include/prereq-build.mk @@ -148,6

Re: elfutils build failure

2023-01-25 Thread Rosen Penev
On Wed, Jan 25, 2023 at 1:27 PM Peter Naulls wrote: > > > This is elfutils-0.188 in master. No doubt I'm using a bad toolchain combo - I > brought the config over from my 22.03 build: > > CONFIG_GCC_VERSION="11.3.0" > CONFIG_BINUTILS_VERSION_2_38=y > > > > configure:3994: mipsel-openwrt-linux-musl

Re: [PATCH ustream-ssl] ustream-mbedtls: Use getrandom() instead of /dev/urandom

2023-01-28 Thread Rosen Penev
nction returns not > as many bytes as expected. > > Signed-off-by: Hauke Mehrtens Acked-by: Rosen Penev > --- > ustream-mbedtls.c | 23 +-- > 1 file changed, 5 insertions(+), 18 deletions(-) > > diff --git a/ustream-mbedtls.c b/ustream-mbedtls.c >

Re: [PATCH] tools: meson: bump to 1.0.0

2023-02-23 Thread Rosen Penev
On Fri, Feb 17, 2023 at 2:13 AM Andre Heider wrote: > > On 17/02/2023 10:18, Koen Vandeputte wrote: > > Drop upstreamed patch. > > > > Tested by compiling the complete gstreamer package which heavily > > depends on this one. > > > > Signed-off-by: Koen Vandeputte > > Not possible unfortunately, s

Re: OpenWrt Next Generation Ideas

2023-03-31 Thread Rosen Penev
On Fri, Mar 31, 2023 at 6:50 AM Daniel Golle wrote: > > On Fri, Mar 31, 2023 at 03:52:47PM +0300, Arınç ÜNAL wrote: > > On 31.03.2023 14:33, Daniel Golle wrote: > > > Hi! > > > > > > On Fri, Mar 31, 2023 at 12:44:12PM +0300, Arınç ÜNAL wrote: > > > > Hi all, > > > > > > > > These are the ideas I'v

Re: [PATCH] ath79: increase the rfkill debounce interval for TP-Link Archer C7 v2

2023-07-14 Thread Rosen Penev
On Fri, Jul 14, 2023 at 8:12 AM Shiji Yang wrote: > > From: Shiji Yang > > Due to circuit issue or silicon defect, sometimes the WiFi switch button > of the Archer C7 v2 can be accidentally triggered multiple times in one > second. This will cause WiFi to be unexpectedly shut down and trigger > '

Re: mips: Make mips64 n32/o32 userland possible or remove support completely

2023-07-20 Thread Rosen Penev
On Wed, Jul 19, 2023 at 1:29 AM Jeffery To wrote: > > Hi, > > I've been looking into platform triplets for Python and figuring out > the possible combinations. This has led me to trying to compile images > of the possible combinations for testing. > > As a result, I've been trying to compile malta

Re: [PATCH] build: explicitly specify Makefile generator

2023-10-09 Thread Rosen Penev
On Mon, Oct 9, 2023 at 6:05 AM Eicke Herbertz wrote: > > > > > Where does that CMAKE_GENERATOR environment variable come from? Would > > it make sense to undefine it instead? > > > > Regards, > > Jonas > > Well, from the environment of my development machine. > I have it set to Ninja for a long ti

Re: [PATCH ustream-ssl 2/2] cmake: Fail if undefined symbols are used

2023-11-11 Thread Rosen Penev
On Sat, Nov 11, 2023 at 1:35 PM Hauke Mehrtens wrote: > > Make the linking of the shared library fail when undefined symbols are > used. Linking undefined symbols in a shared library normally works and > the linking of the binary using the shared library fails. We also > compile some example appli

Re: [PATCH] ath79: use "fixed-layout" for Embedded Wireless devices

2023-11-12 Thread Rosen Penev
: Ansuel Smith > Cc: Catrinel Catrinescu > Cc: Felix Fietkau > Signed-off-by: Rafał Miłecki Reviewed-by: Rosen Penev > --- > .../dts/ar9331_embeddedwireless_dorin.dts | 26 > .../dts/ar9344_embeddedwireless_balin.dts | 30 ++- > 2 files

Re: [PATCH ustream-ssl 1/2] ustream-mbedtls: Add compatibility with Mbed TLS 3.0.0

2023-11-12 Thread Rosen Penev
On Sat, Nov 11, 2023 at 1:35 PM Hauke Mehrtens wrote: > > This adds support for compiling the code against Mbed TLS 3.0.0. > It still compiles against Mbed TLS 2.28. > > The following changes were needed: > * DES and 3DES was removed > * mbedtls_pk_context->pk_info is private, use mbedtls_pk_get

Re: [PATCH] kernel: of: remove "mac-address-ascii" support hack

2023-11-12 Thread Rosen Penev
> > Signed-off-by: Shiji Yang Reviewed-by: Rosen Penev > --- > > Git grep ref: > https://git.openwrt.org/?p=openwrt%2Fopenwrt.git&a=search&h=HEAD&st=grep&s=mac-address-ascii&sr=1 > > Regards, > Shiji Yang > > > ...of_net-add-mac-address-

Re: [PATCH] kernel: xt_FLOWOFFLOAD: fix use of uninitialized dir variable

2024-03-12 Thread Rosen Penev
On Tue, Mar 12, 2024 at 8:51 PM Qingfang Deng wrote: > > From: Qingfang Deng > > The dir variable has been used uninitialized since the port to 5.10, and > somehow this remains undetected by GCC. This patch looks like it's for iptables. Is it needed anymore? > > Fixes: b10d6044599d ("kernel: add

Re: [PATCH] mtd: fix compile warnings

2024-06-07 Thread Rosen Penev
On Thu, Jun 6, 2024 at 7:48 PM Adam wrote: > > From: Adam-0320 > > ubi-mdeia.h defines 'struct ubi_vid_hdr'. It is used as a parameter type > of function 'ubigen_init_ec_hdr', which is declared in libubigen.h. > ubiformat.c and liubigen.c use this function. And they both have > included ubi-mdeia

Re: State of APK package manger integration

2024-08-24 Thread Rosen Penev
On Sun, Aug 11, 2024 at 11:36 AM Paul Spooren wrote: > > Hi all, > > Some time has passed and there are further news for the APK migration: > > Timo and Ansuel worked out a way to allow index trust[1]. If a package index > is signed by a trusted key, all containing packages are automatically > t

Re: [PATCH] gpio-button-hotplug: skip disabled buttons

2024-09-05 Thread Rosen Penev
gt; Subject: [PATCH] gpio-button-hotplug: skip disabled buttons > Ignore buttons which are disabled in the devicetree. > > Signed-off-by: Thomas Richard Reviewed-by: Rosen Penev > --- > package/kernel/gpio-button-hotplug/Makefile | 2 +- > package/kernel/gpi

Re: OpenWrt One / status update

2024-09-06 Thread Rosen Penev
On Fri, Sep 6, 2024 at 6:58 AM John Crispin wrote: > > Hi, > > Since it's been a while I'd like to share a brief update on the OpenWrt > One project. > > * 50 DVT (Design Validation Test) samples arrived with the final PCB, > metal case and packaging. They look really good. > * The samples feature

Re: [RFC 6/6] qoriq: m300 switchport mac assignment order

2024-10-09 Thread Rosen Penev
On Wed, Oct 9, 2024 at 1:20 AM Evan Jobling via openwrt-devel wrote: > > 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 t

Re: [PATCH] mpc85xx: Add support for HP MSM466 (J9622A)

2024-09-25 Thread Rosen Penev
5GHz. > Factory is 20dBm in both bands for both > radios. > > Factory left it to the user to consider > transmit power, antenna gain and channel > selection, given the approval for indoor > and outdoor antennas of various gains. > > Signed-off-by: Evan Jobling Reviewed-b

<    5   6   7   8   9   10