Re: Intention on moving board-2 blob to a separate repo

2023-02-27 Thread Jo-Philipp Wich
Hi Ansuel, this makes a lot of sense imho. ~ Jo signature.asc Description: OpenPGP digital signature ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/mailman/listinfo/openwrt-devel

Re: [PATCH v2] mt7621: move uboot-envtools to DEFAULT_PACKAGES

2023-02-27 Thread Bjørn Mork
Hauke Mehrtens writes: > On 2/27/23 13:38, Bjørn Mork wrote: >> Several devices depend on fw_printenv during sysupgrade. Make sure >> it always is present in all images, including initramfs images built >> by the buildbots. >> Fixes: 2449a632084b ("ramips: mt7621: Add support for ZyXEL NR7101")

[PATCH] gpio-button-hotplug: do not error on interrupt attached keys

2023-02-27 Thread Tim Harvey
The Linux gpio-keys driver bindings allow for GPIO attached or interrupt attached keys. Currently if an interrupt attached key is encountered gpio_keys_button_probe() will fail due to not being able to get a gpio descriptor: gpio-keys: probe of gpio-keys failed with error -2 Skip the failure in

[PATCH] kernel: add kmod-hwmon-max6642 support

2023-02-27 Thread Tim Harvey
Add package for Maxim MAX6642 i2c based temperature sensor. Signed-off-by: Tim Harvey --- package/kernel/linux/modules/hwmon.mk | 15 +++ 1 file changed, 15 insertions(+) diff --git a/package/kernel/linux/modules/hwmon.mk b/package/kernel/linux/modules/hwmon.mk index

[PATCH v2] kernel: fix hwmon-gsc driver

2023-02-27 Thread Tim Harvey
Fix hwmon-gsc driver by replacing out-of-tree hwmon-gsc driver with in-tree driver that was merged in Linux v5.8: - remove the old out-of-tree module - add configuration for the in-tree modules Signed-off-by: Tim Harvey --- v2: - build both CONFIG_MFD_GATEWORKS_GSC and CONFIG_SENSORS_GSC as

Re: [PATCH] kernel: replace out-of-tree hwmon-gsc driver with in-tree

2023-02-27 Thread Tim Harvey
On Sun, Feb 26, 2023 at 9:24 AM Hauke Mehrtens wrote: > > On 2/18/23 01:24, Tim Harvey wrote: > > The Gateworks GSC drivers were merged in Linux v5.8: > > - remove the old out-of-tree module > > - add configuration for the in-tree modules > > > > Signed-off-by: Tim Harvey > > --- > >

Re: [PATCH v2] mt7621: move uboot-envtools to DEFAULT_PACKAGES

2023-02-27 Thread Peter Naulls
On 2/27/23 17:23, Hauke Mehrtens wrote:   Build firmware images for Ralink MT7621 based boards. This will add uboot-envtools to all devices. uboot-envtools is not included in all DEVICE_PACKAGES now, should we explicitly remove it from device definitions which do not had it before? The

Intention on moving board-2 blob to a separate repo

2023-02-27 Thread Ansuel Smith
Hi, there is an idea of moving board-2 blob to a separate repo. It seems ath10k chance of getting board-2 blob merged upstream is becoming almost impossible. Result is that the board-2 blob number is growing and some are complaining that these are bloating openwrt repo. As said in the intro,

Re: [PATCH v2] mt7621: move uboot-envtools to DEFAULT_PACKAGES

2023-02-27 Thread Hauke Mehrtens
On 2/27/23 13:38, Bjørn Mork wrote: Several devices depend on fw_printenv during sysupgrade. Make sure it always is present in all images, including initramfs images built by the buildbots. Fixes: 2449a632084b ("ramips: mt7621: Add support for ZyXEL NR7101") Signed-off-by: Bjørn Mork ---

Re: DHCP leasetime

2023-02-27 Thread Eric 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 --- On Monday, February 27th, 2023 at

DHCP leasetime

2023-02-27 Thread Ravi Paluri (QUIC)
Hi all, We see that the DHCP leasetime can be configured either in days or hours or minutes etc. as below: dhcp.@dhcp[0].leasetime='12h' Query: If we don't specify the letter i.e., d, h, or m and just specify the number (as below), then how does dnsmasq interpret the leasetime?

Re: Automatic LAN Subnet Reassignment PLUS mDNS name

2023-02-27 Thread Rich Brown
Thank you Imre for bringing this up again. I have also notified the author of that RFC (Peter Sherman, @psherman on the forums) that this discussion is going on so he can offer opinions. You can read the RFC at:

Re: Automatic LAN Subnet Reassignment

2023-02-27 Thread Imre Kaloz
Hi Rich, Basic (v4 only) version of these (as well automatic wan proto detection) was implemented and rejected some years ago :) Both are quite easy to do, that version used the following hotplug script: === #!/bin/sh if [ "$INTERFACE" = "wan" ] && [ "$ACTION" = "ifup" ] then # Get

[PATCH v2] mt7621: move uboot-envtools to DEFAULT_PACKAGES

2023-02-27 Thread Bjørn Mork
Several devices depend on fw_printenv during sysupgrade. Make sure it always is present in all images, including initramfs images built by the buildbots. Fixes: 2449a632084b ("ramips: mt7621: Add support for ZyXEL NR7101") Signed-off-by: Bjørn Mork --- Changes since v1: - rebased onto current