[PATCH] netifd: add possibility to switch off route config

2020-11-23 Thread Florian Eckert
This change adds the new configuration option `disabled` for the route section, which can be used to temporarily disable the section so that the route is not set. The advantage is that I do not have to delete the whole configuration to achieve this. config route option disabled '1 Signed-off-by

RE: [PATCH] Adds support for Comfast CF-E538AC

2020-11-23 Thread Adrian Schmutzler
Hi, > -Original Message- > From: openwrt-devel [mailto:openwrt-devel-boun...@lists.openwrt.org] > On Behalf Of Sven Danner > Sent: Montag, 23. November 2020 03:23 > To: j...@phrozen.org > Cc: openwrt-devel@lists.openwrt.org > Subject: [PATCH] Adds support for Comfast CF-E538AC Please use

[PATCH] mvebu: sort patches

2020-11-23 Thread Tomasz Maciej Nowak
Sort patches according to target/linux/generic/PATCHES. Additionally: - replace hashes in backported patches with the ones from main Linux tree - add descriptions to some patches - remove 004-add_sata_disk_activity_trigger.patch, as the trigger is already added in shared dtsi Signed-off-by: Toma

[PATCH] mvebu: base-files: move additional files to subtargets

2020-11-23 Thread Tomasz Maciej Nowak
Both of these scripts are only relevant to cortexa9, therefore move them there. Signed-off-by: Tomasz Maciej Nowak --- .../base-files/etc/hotplug.d/ieee80211/00-wifi-config-migrate | 0 target/linux/mvebu/{ => cortexa9}/base-files/sbin/fan_ctrl.sh | 0 2 files changed, 0 insertions(+), 0

Re: ath79 subtarget with cmdline from bootloader

2020-11-23 Thread Sven Eckelmann
On Monday, 3 August 2020 00:49:40 CET SAn via openwrt-devel wrote: > The LibreRouter uses a dual-boot scheme that relies on the bootloader > configuring the kernel cmdline. At ar71xx 18.06 it was possible to select per > device if the cmdline from the bootloader has to be honored (using > patch-

[no subject]

2020-11-23 Thread SAn via openwrt-devel
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 the mailing list software.--- Begin Message --- Hi Sven, yes this is very useful.

Re: perl/host/compile: fails on macOS 11 Big Sur, workaround

2020-11-23 Thread Georgi Valkov
Dear Rosen, Thanks to your help I discovered the feeds/packages repository, however I was not able to resolve the race condition during build and discover why Errno.pm is not built when multiple workers are used e.g.: make package/feeds/packages/perl/host/{clean,compile} -j 12 The good news is

Re: [PATCH] netifd: add possibility to switch off route config

2020-11-23 Thread Hans Dedecker
On Mon, Nov 23, 2020 at 12:08 PM Florian Eckert wrote: > > This change adds the new configuration option `disabled` for the route > section, which can be used to temporarily disable the section so that > the route is not set. The advantage is that I do not have to delete the > whole configuration

Re: perl/host/compile: fails on macOS 11 Big Sur, workaround

2020-11-23 Thread Rosen Penev
On Mon, Nov 23, 2020 at 10:39 AM Georgi Valkov wrote: > > Dear Rosen, > > Thanks to your help I discovered the feeds/packages repository, however I was > not able to resolve the race condition during build and discover why Errno.pm > is not built when multiple workers are used e.g.: make > pack

Re: running custom commands during sysupgrade -

2020-11-23 Thread Sven Roederer
Am Sonntag, 22. November 2020, 18:07:05 CET schrieb Hannu Nyman: > Adrian Schmutzler wrote at Fri Oct 16 19:15:38 EDT 2020: > > Fortunately, and I don't fully understand why, we were able to drive this > > to effectively zero by simply running > > > echo 3 > /proc/sys/vm/drop_caches > > direct

[RPCD PATCH v2 3/4] iwinfo: add ht and vht operation info to wifi scan

2020-11-23 Thread Ansuel Smith
Iwinfo exports ht and vht operation info useful to get channel info of nearby stations. Add these new info to ubus output. Signed-off-by: Ansuel Smith --- iwinfo.c | 16 +++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/iwinfo.c b/iwinfo.c index 7780e69..45ca784 1006

[IWINFO PATCH v2 1/4] iwinfo: export ht and vht operation in scan results

2020-11-23 Thread Ansuel Smith
Export ht and vht operation data in scan results. These additional data can be usefull to check wifi channel utilizzation by neraby stations. Signed-off-by: Ansuel Smith --- include/iwinfo.h | 34 ++ iwinfo_cli.c | 21 - iwinfo_nl80211.c |

[IWINFO PATCH v2 2/4] iwinfo: export center_chan info for local wifi

2020-11-23 Thread Ansuel Smith
Iwinfo already export the htmode but there is no way to know where the channel expan in case a 40Mhz+ channel width is used. Export the center channels used by the driver to better know the channel utilizzation of the wifi. Signed-off-by: Ansuel Smith --- include/iwinfo.h | 2 ++ iwinfo_cli.c

[RPCD PATCH v2 4/4] iwinfo: export center channel for info ubus call

2020-11-23 Thread Ansuel Smith
Iwinfo export the center channel sued by the wifi. Include this data in the ubus info call to better know the channel utilizzation of the wifi. Signed-off-by: Ansuel Smith --- iwinfo.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/iwinfo.c b/iwinfo.c index 45ca784..94fa822 100644 --- a/i

[PATCH v2 0/4] Add support channel with to iwinfo

2020-11-23 Thread Ansuel Smith
This series modify 2 different repo. Iwinfo and Rpcd The 2 iwinfo patch add support to iwinfo to display and export channel width and center_channel info for both wifi scan and wifi info related to the local wifi. The other 2 rpcd patch export the iwinfo data to ubus to make them usable by the webu

[PATCH v2] vxlan: allow for dynamic source ip selection

2020-11-23 Thread Johannes Kimmel
By setting 'auto', the zero address or the empty string as source address (option ipaddr, option ip6addr), vxlan will choose one dynamically. This helps in setups where a wan ip or prefix changes. This corresponse to setting up an vxlan tunnel with: proto vxlan6: # ip link add vx0 type vxlan

[PATCH] base-files: flush kernel memory cache during sysupgrade

2020-11-23 Thread Hannu Nyman
Flush kernel memory caches during sysupgrade in order to mitigate the impact from memory consumption spikes in low-RAM devices. This may help to prevent sysupgrade causing a reboot before the actual flashing starts. Signed-off-by: Hannu Nyman --- I have noticed this to help in 64 MB WNDR3700v2,

[Patch v2] netifd: add possibility to switch off route config

2020-11-23 Thread Florian Eckert
This change adds the new configuration option `disabled` for the route section, which can be used to temporarily disable the section so that the route is not set. The advantage is that we do not have to delete this route configuration section to achieve this. config route option disabled '1 Sig