ddns-scripts is broken since last major update

2020-09-25 Thread e9hack
Hi, since last update, ddns-scripts doesn't work any more. The log files contains the following output: 094310 : ** ** ** 094310 note : PID '6635' started at 2020-09-25 09:43 094310 : ddns version : 2.8.0-24 094310 : uci co

Re: ddns-scripts is broken since last major update

2020-09-25 Thread Ansuel Smith
> > Hi, > > since last update, ddns-scripts doesn't work any more. The log files contains > the following output: > We changed how the services files is handled... You now need to both download the service with the 'ddns' command or install the companion package with all the services preinstalled

Re: ddns-scripts is broken since last major update

2020-09-25 Thread Florian Eckert
Hello Hartmut since last update, ddns-scripts doesn't work any more. The log files contains the following output: The current handling of the large file service and service6 with all services was complicated. Therefore I have outsourced the information of every service into different JSON fi

Re: ddns-scripts is broken since last major update

2020-09-25 Thread e9hack
It looks like a configuration problem. If ddns-scripts_service isn't selected together with ddns-scripts, it doesn't work. Regards, Hartmut ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/mailman/listinfo/open

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

2020-09-25 Thread Adrian Schmutzler
Hi, > -Original Message- > From: openwrt-devel [mailto:openwrt-devel-boun...@lists.openwrt.org] > On Behalf Of Rosen Penev > Sent: Sonntag, 20. September 2020 07:32 > To: openwrt-devel@lists.openwrt.org > Subject: [PATCH 1/4] base-files/functions.sh: read grep output by line > > From: htt

Re: [PATCH] generic: platform/mikrotik: implement multi caldata

2020-09-25 Thread Thibaut
Ping? > Le 24 août 2020 à 12:38, Thibaut VARÈNE a écrit : > > MikroTik recently changed again the way they store wlan calibration data > on devices. Prior to this change, ERD calibration data for all available > radios was stored within a single identifier node ("tag" in RouterBoot > parlance).

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 > > + . "$file" > > the existence check is prob

Support for packages written in Go on powerpc_464fp

2020-09-25 Thread Martin Kennedy
Hi there, I'm not quite sure why, but I'm not able to install e.g. Restic on my MX60W (CPU: APM82181). I think it's because the golang package doesn't include this architecture in its list of supported architectures? Yet the HOST_GO_VALID_OS_ARCH variable in packages/golang/Makefile mentions powe

Re: [PATCH v2] mac80211: fix regression in sta connection monitor

2020-09-25 Thread Georgi Valkov
Hi Felix! With your latest suggestion, it takes between 10 and 17 hours for the connection to drop, then long five minutes to reconnect. Notice the order of code execution in the original code of ieee80211_sta_tx_notify(): probe_send_count is always cleared when ack is true. But before clearing

Re: [PATCH v2] mac80211: fix regression in sta connection monitor

2020-09-25 Thread Felix Fietkau
Hi Georgi, thanks for testing and for your insight into this issue. On 2020-09-26 06:41, Georgi Valkov wrote: > Hi Felix! > > With your latest suggestion, it takes between 10 and 17 hours for the > connection to drop, then long five minutes to reconnect. > Notice the order of code execution in