Re: [PATCH] build/prereq: requie make 4.1 or later

2020-12-13 Thread Petr Štetiar
Paul Spooren [2020-12-12 21:17:02]: Hi, > FS#2086 "IS_TTY in the makefile is broken" reports flawed detection of > stdout piping to a file. The issue describes how e.g. terminal color > codes and up in log files if running make like `make > log.txt`. > > The proposed solution uses the make vari

Re: [PATCH] build/json: add filesystem information

2020-12-13 Thread Petr Štetiar
Paul Spooren [2020-12-13 14:40:55]: > Some images are created using different filesystems, most popular > squashfs and ext4. To allow downstream projects to distinguesh between > those, add the `filesystem` information to created json files. > > Signed-off-by: Paul Spooren Reviewed-by: Petr Št

[PATCH] build/json: add filesystem information

2020-12-13 Thread Paul Spooren
Some images are created using different filesystems, most popular squashfs and ext4. To allow downstream projects to distinguesh between those, add the `filesystem` information to created json files. Signed-off-by: Paul Spooren --- include/image.mk | 1 + scripts/json_add_image_inf

[PATCH v2 1/2] uboot-envtools: add support for multiple config partitions

2020-12-13 Thread Bjørn Mork
Most (all?) of the realtek devices have two u-boot config partitions with a different set of variables in each. The U-Boot shell provides two sets of apps to manipulate these: printenv- print environment variables printsys- printsys - print system information variables saveenv - save environmen

[PATCH v2 2/2] uboot-envtools: add wrapper scripts for alternate config

2020-12-13 Thread Bjørn Mork
Now that we can create an alternate configuration file, add two wrapper scripts for simple access to it using the alternate alternate application names `fw_printsys' and `fw_setsys'. Signed-off-by: Bjørn Mork --- package/boot/uboot-envtools/Makefile | 4 +++- package/boot/uboot-envtools

[PATCH v2 0/2] uboot-envtools: support for multiple config partitions

2020-12-13 Thread Bjørn Mork
Changes since v1: - incremented PKG_RELEASE - using wrapper scripts instead of patching the tool Bjørn Mork (2): uboot-envtools: add support for multiple config partitions uboot-envtools: add wrapper scripts for alternate config package/boot/uboot-envtools/Makefile | 5 ++- packa

[PATCH v2] build/prereq: require make 4.1 or later

2020-12-13 Thread Paul Spooren
FS#2086 "IS_TTY in the makefile is broken" reports flawed detection of stdout piping to a file. The issue describes how e.g. terminal color codes and up in log files if running make like `make > log.txt`. The proposed solution uses the make variable "MAKE_TERMOUT", which was introduced in make 4.1

[no subject]

2020-12-13 Thread Stephen Walker 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 --- Branch: refs/heads/master Home

Re: [PATCH] netifd: add segment routing support

2020-12-13 Thread Hans Dedecker
On Sat, Dec 12, 2020 at 9:51 PM wrote: > > From: Nick Hainke > > seg6_enabled - Bool > Accept or drop SR-enabled IPv6 packets on this interface. > > More Information: > https://www.kernel.org/doc/html/latest/networking/seg6-sysctl.html > > Now you can set as interface option > option ip6segme

Re: [PATCH] build/prereq: requie make 4.1 or later

2020-12-13 Thread Felix Fietkau
On 2020-12-13 12:35, Hauke Mehrtens wrote: > On 12/13/20 8:17 AM, Paul Spooren wrote: >> FS#2086 "IS_TTY in the makefile is broken" reports flawed detection of >> stdout piping to a file. The issue describes how e.g. terminal color >> codes and up in log files if running make like `make > log.txt

[PATCH 2/2] armvirt: README: rename it from LEDE to OpenWrt

2020-12-13 Thread Josef Schlehofer
Signed-off-by: Josef Schlehofer --- target/linux/armvirt/README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/linux/armvirt/README b/target/linux/armvirt/README index ae0d2ada62..b870fe19f7 100644 --- a/target/linux/armvirt/README +++ b/target/linux/armvirt/README @@

[PATCH 1/2] armvirt/64: change it to cortex-a53 instead of generic

2020-12-13 Thread Josef Schlehofer
Package architecture aarch64_generic [1] can be used just with three devices. One is NanoPI R2S and then there are two development boards from NXP. Let's change armvirt/64 to Cortex A53 (aarch64_cortex-a53) [2]. It has wider support by multiple devices like NanoPI Neo Plus2/Core2, ESPRESSObin, Pine

RE: [PATCH] build/prereq: requie make 4.1 or later

2020-12-13 Thread Adrian Schmutzler
Hi, > -Original Message- > From: openwrt-devel [mailto:openwrt-devel-boun...@lists.openwrt.org] > On Behalf Of Paul Spooren > Sent: Sonntag, 13. Dezember 2020 08:17 > To: openwrt-devel@lists.openwrt.org > Cc: Paul Spooren > Subject: [PATCH] build/prereq: requie make 4.1 or later there is

[PATCH] utils: simplify mkdir_p boolean conditions

2020-12-13 Thread Rui Salvaterra
Just a trivial simplification. Signed-off-by: Rui Salvaterra --- utils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils.c b/utils.c index db63238..82af887 100644 --- a/utils.c +++ b/utils.c @@ -164,7 +164,7 @@ int mkdir_p(char *dir, mode_t mask) int ret;

Re: [PATCH] build/prereq: requie make 4.1 or later

2020-12-13 Thread Hauke Mehrtens
On 12/13/20 8:17 AM, Paul Spooren wrote: FS#2086 "IS_TTY in the makefile is broken" reports flawed detection of stdout piping to a file. The issue describes how e.g. terminal color codes and up in log files if running make like `make > log.txt`. The proposed solution uses the make variable "MAKE