[no subject]

2021-01-12 Thread Etan Kissling (IC) 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 --- This adds a config option to allow

Re: [PATCH v2] base-files: restore status of system-services after sysupgrade

2021-01-12 Thread Simonas Tamošaitis
On 1/12/21 12:07 AM, Sven Roederer wrote: Restore the status of the system-services after sysupgrade. Create a file with the status of all known services and keep it during upgrade. After upgrade run a uci-default script to restore every single service. The list of the service status will be stor

RE: [PATCH v2] base-files: restore status of system-services after sysupgrade

2021-01-12 Thread Adrian Schmutzler
> > @@ -231,8 +235,7 @@ do_save_conffiles() { > > run_hooks "$CONFFILES" $sysupgrade_init_conffiles > > ask_bool 0 "Edit config file list" && vi "$CONFFILES" > > > > - if [ "$SAVE_INSTALLED_PKGS" -eq 1 ]; then > > - echo "${INSTALLED_PACKAGES}" >> "$CONFFILES" > > + if [ "$SAV

[no subject]

2021-01-12 Thread Etan Kissling (IC) 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 --- This allows configuration of multi

[no subject]

2021-01-12 Thread Etan Kissling (IC) 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 --- This allows libnetfilter_queue to

[no subject]

2021-01-12 Thread Gagan Sidhu 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, i have spoken with someone wh

SELinux status report and call to action

2021-01-12 Thread Dominick Grift
Community, Optional SELinux support has been added to OpenWrt for a while now and I gave a talk about the status at "Battle of the meshes 13th edition". There was a comment mentioning that there was an impression that "rolling out SELinux on OpenWrt" would still require lots of work and that th

Re: [PATCH v2] base-files: restore status of system-services after sysupgrade

2021-01-12 Thread Hannu Nyman
Martin Schiller kirjoitti 12.1.2021 klo 9.25: On 2021-01-11 23:07, Sven Roederer wrote: Restore the status of the system-services after sysupgrade. Create a file with the status of all known services and keep it during upgrade. After upgrade run a uci-default script to restore every single servi

Re: [PATCH] glibc: add arc700 patch

2021-01-12 Thread Vineet Gupta
On 1/12/21 11:40 AM, Alexey Brodkin wrote: > Hi Paul, > > With that patch I obviously get basic target image built successfully > but then it fails to boot that way: > -->8-- > [    0.554310] Run /init as init process > [    0.554665] usercop

Re: [PATCH] bcm4908: initial work on the Broadcom BCM4908 target

2021-01-12 Thread Rafał Miłecki
On 08.01.2021 19:30, Adrian Schmutzler wrote: -Original Message- From: openwrt-devel [mailto:openwrt-devel-boun...@lists.openwrt.org] On Behalf Of Rafal Milecki Sent: Freitag, 8. Januar 2021 14:53 To: openwrt-devel@lists.openwrt.org Cc: Rafał Miłecki Subject: [PATCH] bcm4908: initial wor

Re:

2021-01-12 Thread Daniel Golle
Hi Etan, On Tue, Jan 12, 2021 at 01:22:16PM +0100, Etan Kissling (IC) 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 wr

Re: [PATCH v2] base-files: restore status of system-services after sysupgrade

2021-01-12 Thread Sven Roederer
Am Dienstag, 12. Januar 2021, 19:56:54 CET schrieb Hannu Nyman: > Martin Schiller kirjoitti 12.1.2021 klo 9.25: > > On 2021-01-11 23:07, Sven Roederer wrote: > >> Restore the status of the system-services after sysupgrade. > >> Create a file with the status of all known services and keep it during

Re: [PATCH v2] base-files: restore status of system-services after sysupgrade

2021-01-12 Thread Sven Roederer
Am Dienstag, 12. Januar 2021, 13:01:45 CET schrieb Adrian Schmutzler: > > Hello, > > You don't have to run such complicated script. Just restore /etc/rc.d/ > > directory after upgrade. > > Well, that depends on how we want to deal with new services. If I upgrade > from 19.07.5 to master, I'd expec

[PATCH 0/2] uhttpd: Generate ETag similar to Nginx and BusyBox HTTPD

2021-01-12 Thread Sergey Ponomarev
Different web servers generates different ETag header and this creates a problem for load balancing between them. Currently uhttpd generates ETag similar to old Apache/2.2. But then Apache changed it. I developing a small blog engine when on a router (uhttpd) runned a shrinked version and full v

[PATCH 1/2] Make ETag load balancer friendly

2021-01-12 Thread Sergey Ponomarev
Current ETag contains file's INODE which is always different on machines even if content of the file the same. When you made a sysupgrade i.e. changed file system then on next visit to web page all files will be downloaded again because their ETag was changed even if not all files actually were

[PATCH 2/2] Generate ETag similar to Nginx and BusyBox HTTPD

2021-01-12 Thread Sergey Ponomarev
Thus user run Luci on them and all cached files will work as previous because ETag is the same. --- file.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/file.c b/file.c index 759ffd6..e0a4fb3 100644 --- a/file.c +++ b/file.c @@ -300,8 +300,9 @@ static const char * uh_file_

Re: base-files: flush kernel memory cache during sysupgrade

2021-01-12 Thread Stijn Segers
Hi, Have tested this on a few low-RAM devices, among which a TL-WR841N v7 (32 MiB) and a WNDR3700 v2 (64 MiB). No idea if this is still necessary/wanted but would be nice to see this end up in master (and trickle down to 21.xx :-D ). Tested-by: Stijn Segers _

Call for testing [Was: Re: [PATCH v2 00/10] kernel: mtdsplit_uimage: use device tree properties for non-standard uimage parsing]

2021-01-12 Thread Petr Štetiar
Bjørn Mork [2020-11-30 23:19:25]: Hi, > But I have NOT run tested this on any of the affected existing devices. > Which means that we don't know if they work at all. And if they don't then > you will not have a rootfs. So some care should be taken until this is > verified on those devices. as

[no subject]

2021-01-12 Thread Etan Kissling 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 --- This allows libnetfilter_queue to

[no subject]

2021-01-12 Thread Etan Kissling 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 --- This adds a config option to allow

[no subject]

2021-01-12 Thread Etan Kissling 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 --- This allows configuration of multi

Re:

2021-01-12 Thread Daniel Golle
Hi Etan, patches look good now, they apply cleanly and don't break the build :) One minor comment below: On Wed, Jan 13, 2021 at 01:02:05AM +0100, Etan Kissling via openwrt-devel wrote: > The sender domain has a DMARC Reject/Quarantine policy which disallows > sending mailing list messages using

[PATCH v3] scripts: target-metadata don't add PROFILES twice

2021-01-12 Thread Paul Spooren
Since 4ee3cf2b5a profiles with alternative vendor names may appear multiple times in `tmp/.targetinfo` or `.targetinfo` (for ImageBuilders). The `target-metadata.pl` script adds these profiles then twice to `PROFILE_NAMES` and the ImageBuilder show the profile twice when running `make info`. This

Re: [PATCH v2] base-files: restore status of system-services after sysupgrade

2021-01-12 Thread Martin Schiller
On 2021-01-12 23:03, Sven Roederer wrote: Am Dienstag, 12. Januar 2021, 19:56:54 CET schrieb Hannu Nyman: Martin Schiller kirjoitti 12.1.2021 klo 9.25: > On 2021-01-11 23:07, Sven Roederer wrote: >> Restore the status of the system-services after sysupgrade. >> Create a file with the status of a

[PATCH] firmware-utils: bcm4908kernel: tool adding BCM4908 kernel header

2021-01-12 Thread Rafał Miłecki
From: Rafał Miłecki BCM4908 CFE bootloader requires kernel to be prepended with a custom header. This simple tool implements support for such headers. Signed-off-by: Rafał Miłecki --- tools/firmware-utils/Makefile| 1 + tools/firmware-utils/src/bcm4908kernel.c | 127 +