Re: [PATCH] tools: add xxd (from vim)

2021-03-01 Thread Petr Štetiar
Daniel Golle [2021-02-28 19:26:07]: Hi Daniel, > U-Boot requires xxd to create the default environment from an external file > as done in uboot-mediatek. it's not essential package for everyone, so why are you forcing everyone to download Vim now? Can't you solve it as host dependency in that p

R: Clarification about dsa and ipq806x

2021-03-01 Thread ansuelsmth
> Hi > > [Disclaimer: I'm not an OpenWrt developer] > > On 2021-03-01, Ansuel Smith wrote: > [...] > > The idea is to switch this target to dsa but there is a problem... > > Since kernel 5.10 is a testing kernel how should I change the base > [...] > > Do we have some way in openwrt to know if th

Re: Clarification about dsa and ipq806x

2021-03-01 Thread Rosen Penev
On Mon, Mar 1, 2021 at 2:26 AM wrote: > > > Hi > > > > [Disclaimer: I'm not an OpenWrt developer] > > > > On 2021-03-01, Ansuel Smith wrote: > > [...] > > > The idea is to switch this target to dsa but there is a problem... > > > Since kernel 5.10 is a testing kernel how should I change the base >

R: Clarification about dsa and ipq806x

2021-03-01 Thread ansuelsmth
> On Mon, Mar 1, 2021 at 2:26 AM wrote: > > > > > Hi > > > > > > [Disclaimer: I'm not an OpenWrt developer] > > > > > > On 2021-03-01, Ansuel Smith wrote: > > > [...] > > > > The idea is to switch this target to dsa but there is a problem... > > > > Since kernel 5.10 is a testing kernel how should

Unnecessary extension of default packeges for x86 generic

2021-03-01 Thread Florian Eckert
Hello, Is it really necessary that we keep expanding the default package here [1]? The problem is, for example, that I don't need the whole AWS stuff. But now the whole package gets installed. If this is the case, then we should also install the vmware needed driver as default package. Maybe

Re: Clarification about dsa and ipq806x

2021-03-01 Thread Rosen Penev
On Mon, Mar 1, 2021 at 2:37 AM wrote: > > > On Mon, Mar 1, 2021 at 2:26 AM wrote: > > > > > > > Hi > > > > > > > > [Disclaimer: I'm not an OpenWrt developer] > > > > > > > > On 2021-03-01, Ansuel Smith wrote: > > > > [...] > > > > > The idea is to switch this target to dsa but there is a problem.

Re: Curiosity about FRITZ!BOX 7530 portingn

2021-03-01 Thread Enrico Mioso
Thanks!! :) Sorry for stripping the quoted text, doing it only to make it easier to read possibly follow-up messages. :) So I looked at the great work by David And Christian: https://github.com/chunkeey/FritzBox-4040-UBOOT Tee answer seems to lie in include/configs/fritz7530.h; reporting here

Re: [PATCH] tools: add xxd (from vim)

2021-03-01 Thread Daniel Golle
Hi Petr, On Mon, Mar 01, 2021 at 09:12:46AM +0100, Petr Štetiar wrote: > Daniel Golle [2021-02-28 19:26:07]: > > Hi Daniel, > > > U-Boot requires xxd to create the default environment from an external file > > as done in uboot-mediatek. > > it's not essential package for everyone, so why are y

Re: [PATCH] tools: add xxd (from vim)

2021-03-01 Thread Petr Štetiar
Daniel Golle [2021-03-01 11:20:55]: Hi, > > FYI we're likely going to demand swig[1] soon as host dependency and not > > building it as tool, because it would be support and maintenance nightmare. > > Maybe this could be an option for this case as well? > > > > 1. > > https://lists.infradead.o

[PATCH 1/2] build: make GCC version 6+ minimal host build requirement

2021-03-01 Thread Petr Štetiar
Currently minimal GNU supported GCC version is 7 (from May 2, 2017), buildbots are using default GCC version 6 on Debian 9 (old stable), current Debian stable has GCC version 8.3.0. Signed-off-by: Petr Štetiar --- README.md | 2 +- include/prereq-build.mk | 14 +++--- 2 fi

[PATCH 2/2] build: fix checks for GCC11

2021-03-01 Thread Petr Štetiar
Fedora 34 already uses GCC11. Reported-by: Marcin Juszkiewicz Signed-off-by: Petr Štetiar --- include/prereq-build.mk | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/prereq-build.mk b/include/prereq-build.mk index 8a6c4bb46840..bbeba3f8ff6a 100644 --- a/inclu

Re: Installation error for libncursesw6

2021-03-01 Thread Hannu Nyman
Philip Prindeville philipp_subx at redfish-solutions.com wrote at Mon Mar 1 02:11:20 EST 2021: > Is there a workaround to force an install? * Build a new up-to-date version with the current packages data. Update opkg lists. * Download a .ipk manually and install it with opkg. To my knowledge

Circular dependency due to backport from master

2021-03-01 Thread Henrique de Moraes Holschuh
Adrian, There's this backport in openwrt-19.07 (snapshot): commit 86aeac4fc98f42ac0ce7e0dcf1cb240e16b28f8f Author: Adrian Schmutzler AuthorDate: Fri Mar 13 16:56:53 2020 +0100 Commit: Adrian Schmutzler CommitDate: Wed Feb 24 18:05:02 2021 +0100 base-files: source functions.sh in /lib/f

Please consider reverting autoconf-lean from toolchain

2021-03-01 Thread Hannu Nyman
Apparently autoconf-lean, merged into the toolchain during last weekend, causes problems with various packages at buildbot. I am not sure if that is due to underlying problems in the specific failing packages, or due to a wrong site config from autoconf-lean, but buildbot is gradually hitting

[PATCH] toolchain/autoconf-lean: add check for ssize_t

2021-03-01 Thread Sebastian Kemper
This was provided by the old static config.site files and is required by some software, i.e. freeswitch. Signed-off-by: Sebastian Kemper --- toolchain/autoconf-lean/patches/120-add-extra-checks.patch | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/toolchain/autoconf-lean/pa

[PATCH] build: prevent dupes in autotools.mk

2021-03-01 Thread Sebastian Kemper
autotools.mk does not have any protection currently that would prevent it from being sourced multiple times. Note that both package.mk and host-build.mk source autotools.mk. So any package Makefile that includes both will cause hooks to be added twice (at least twice). This is fixed by declaring a

Re: Please consider reverting autoconf-lean from toolchain

2021-03-01 Thread Andrey Jr. Melnikov
Hannu Nyman wrote: > [-- text/plain, encoding 7bit, charset: UTF-8, 60 lines --] > Apparently autoconf-lean, merged into the toolchain during last weekend, > causes problems with various packages at buildbot. > I am not sure if that is due to underlying problems in the specific failing > packa

Re: [PATCH 2/4] imx6: refresh kernel config with 5.10 symbols

2021-03-01 Thread Petr Štetiar
Ilya Lipnitskiy [2021-02-28 11:15:30]: Hi, > On Sat, Feb 27, 2021 at 5:02 AM Petr Štetiar wrote: > > +CONFIG_CRYPTO_ARCH_HAVE_LIB_CHACHA=y > > CONFIG_CRYPTO_AUTHENC=y > > CONFIG_CRYPTO_CBC=y > > CONFIG_CRYPTO_CHACHA20=y > > @@ -117,12 +128,14 @@ CONFIG_CRYPTO_DRBG=y > > CONFIG_CRYPTO_DRBG_H

Re: Please consider reverting autoconf-lean from toolchain

2021-03-01 Thread Andrey Jr. Melnikov
Andrey Jr. Melnikov wrote: > Hannu Nyman wrote: > > [-- text/plain, encoding 7bit, charset: UTF-8, 60 lines --] > > Apparently autoconf-lean, merged into the toolchain during last weekend, > > causes problems with various packages at buildbot. > > I am not sure if that is due to underlying pro

Re: Unnecessary extension of default packeges for x86 generic

2021-03-01 Thread Alberto Bursi
On 01/03/21 11:40, Florian Eckert wrote: Hello, Is it really necessary that we keep expanding the default package here [1]? The problem is, for example, that I don't need the whole AWS stuff. But now the whole package gets installed. If this is the case, then we should also install the vmware

RE: Clarification about dsa and ipq806x

2021-03-01 Thread Adrian Schmutzler
Hi, > -Original Message- > From: openwrt-devel [mailto:openwrt-devel-boun...@lists.openwrt.org] > On Behalf Of Ansuel Smith > Sent: Montag, 1. März 2021 01:52 > To: OpenWrt Development List > Subject: Clarification about dsa and ipq806x > > Hello, > I just pushed a fist pr to the openwrt

R: Clarification about dsa and ipq806x

2021-03-01 Thread ansuelsmth
> > Hello, > > I just pushed a fist pr to the openwrt github repo for ipq806x port to > > kernel > > 5.10. > > The idea is to switch this target to dsa but there is a problem... > > Since kernel 5.10 is a testing kernel how should I change the base files to > > apply different network config? > >

RE: Circular dependency due to backport from master

2021-03-01 Thread Adrian Schmutzler
Hi, > -Original Message- > From: openwrt-devel [mailto:openwrt-devel-boun...@lists.openwrt.org] > On Behalf Of Henrique de Moraes Holschuh > Sent: Montag, 1. März 2021 15:43 > To: Adrian Schmutzler > Cc: OpenWrt Development List > Subject: Circular dependency due to backport from master

RE: Clarification about dsa and ipq806x

2021-03-01 Thread Adrian Schmutzler
Hi, > -Original Message- > From: openwrt-devel [mailto:openwrt-devel-boun...@lists.openwrt.org] > On Behalf Of ansuels...@gmail.com > Sent: Montag, 1. März 2021 21:50 > To: 'Adrian Schmutzler' ; 'OpenWrt > Development List' > Subject: R: Clarification about dsa and ipq806x > > > > Hello,

Re: Enabling SATA via SATA_DWC on Meraki MX60W / APM82181

2021-03-01 Thread Martin Kennedy
For the internal SATA core: I noticed the SATA core actually needs either a 120MHz[1] or 100MHz[2] clock to run. I did some tracing on my MX60W and noticed a third, unpopulated junction of pads on the MX60W near the ICS9FG104D[3] clock generator which lead directly to the SoC. I populated them iden

Re: Installation error for libncursesw6

2021-03-01 Thread Philip Prindeville
Inline... > On Mar 1, 2021, at 7:00 AM, Hannu Nyman wrote: > > Philip Prindeville philipp_subx at redfish-solutions.com wrote at Mon Mar 1 > 02:11:20 EST 2021: > > Is there a workaround to force an install? > > * Build a new up-to-date version with the current packages data. Update opkg > lis

Re: Please consider reverting autoconf-lean from toolchain

2021-03-01 Thread Hauke Mehrtens
On 3/1/21 3:54 PM, Hannu Nyman wrote: Apparently autoconf-lean, merged into the toolchain during last weekend, causes problems with various packages at buildbot. I am not sure if that is due to underlying problems in the specific failing packages, or due to a wrong site config from autoconf-le

[PATCH] procd: fix compilation with newer musl

2021-03-01 Thread Rosen Penev
An open bracket was missing. Signed-off-by: Rosen Penev --- jail/jail.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jail/jail.c b/jail/jail.c index 378a729..ce4f50c 100644 --- a/jail/jail.c +++ b/jail/jail.c @@ -2804,7 +2804,7 @@ static void post_main(struct uloop_timeout

Re: [PATCH] netifd: bridge: set default value for igmp_snoop

2021-03-01 Thread zheng qian
Hi Hauke, Thanks for the review. I'll add multicast_querier in the patch. Hauke Mehrtens 于2021年2月28日周日 上午1:00写道: > > On 2/24/21 1:49 AM, sotu...@gmail.com wrote: > > From: Zheng Qian > > > > When luci unchecked the igmp snoop option for a bridge, it > > just delete the igmp_snooping key from

[PATCH] netifd: bridge: set default value for igmp_snoop

2021-03-01 Thread sotux82
From: Zheng Qian When unchecked the igmp snoop option for a bridge by luci, it just delete the igmp_snooping key from the config file. So netifd can't change /sys/devices/virtual/net/br-lan/bridge/multicast_snooping from "1" to "0". Option multicast_querier seems no input entry in luci, but it'

Re: Please consider reverting autoconf-lean from toolchain

2021-03-01 Thread Felix Fietkau
> On 1. Mar 2021, at 23:47, Hauke Mehrtens wrote: > > On 3/1/21 3:54 PM, Hannu Nyman wrote: >> Apparently autoconf-lean, merged into the toolchain during last weekend, >> causes problems with various packages at buildbot. >> I am not sure if that is due to underlying problems in the specific f

Re: [PATCH] uclibc++: remove

2021-03-01 Thread Felix Fietkau
On 2021-02-27 05:17, Rosen Penev wrote: > No package here depends on it. Furthermore, uClibc++ is a fairly buggy > C++ library and seems to be relatively inactive upstream. > > It also lacks proper support for modern C++11 features. > > The main benefit of it is size: 66.6 KB vs 287.3 KB

Re: [PATCH] uclibc++: remove

2021-03-01 Thread Rosen Penev
On Mon, Mar 1, 2021 at 7:14 PM Felix Fietkau wrote: > > > On 2021-02-27 05:17, Rosen Penev wrote: > > No package here depends on it. Furthermore, uClibc++ is a fairly buggy > > C++ library and seems to be relatively inactive upstream. > > > > It also lacks proper support for modern C++11 features.

Re: [PATCH] uclibc++: remove

2021-03-01 Thread Ilya Lipnitskiy
On Mon, Mar 1, 2021 at 7:18 PM Felix Fietkau wrote: > > > On 2021-02-27 05:17, Rosen Penev wrote: > > No package here depends on it. Furthermore, uClibc++ is a fairly buggy > > C++ library and seems to be relatively inactive upstream. > > > > It also lacks proper support for modern C++11 features.

Re: [PATCH] uclibc++: remove

2021-03-01 Thread Rosen Penev
On Mon, Mar 1, 2021 at 7:45 PM Ilya Lipnitskiy wrote: > > On Mon, Mar 1, 2021 at 7:18 PM Felix Fietkau wrote: > > > > > > On 2021-02-27 05:17, Rosen Penev wrote: > > > No package here depends on it. Furthermore, uClibc++ is a fairly buggy > > > C++ library and seems to be relatively inactive upst

Re: Installation error for libncursesw6

2021-03-01 Thread Hannu Nyman
Philip Prindeville kirjoitti 2.3.2021 klo 0.37: On Mar 1, 2021, at 7:00 AM, Hannu Nyman wrote: Philip Prindeville philipp_subx at redfish-solutions.com wrote at Mon Mar 1 02:11:20 EST 2021: Is there a workaround to force an install? * Build a new up-to-date version with the current packages

Re: Unnecessary extension of default packeges for x86 generic

2021-03-01 Thread Florian Eckert
Hello Alberto, Thank you for the explanation. If that is so then we should also remove the vmware driver as a kmod package [1]. That makes no sense if this is then already in the kernel enabled [2]. Kind Regards Florian [1] https://github.com/openwrt/openwrt/blob/master/package/kernel/linux