Re: [OpenWrt-Devel] Add support for AVM Fritzbox 7360 SL

2016-05-15 Thread Martin Blumenstingl
nux/lantiq/config-4.4 Additionally you should check the phy-mode: You are setting phy-mode = "rgmii", but Atheros says that the AR8030 is an "Ultra low-power single RMII Fast Ethernet PHY". Thus you should probably change "rgmii" to "rmii". Martin On Sun,

Re: [OpenWrt-Devel] Add support for AVM Fritzbox 7360 SL

2016-05-15 Thread Martin Blumenstingl
On Sun, May 15, 2016 at 9:45 PM, Sebastian Ortwein wrote: > Am 15.05.2016 um 17:37 schrieb Martin Blumenstingl: > Okay thank you for support. Now all thinks works fine LAN, WIFI, Switch and > USB. > I attach my patch to add the support for OpenWRT. Great - congratulations :-) > Is

Re: [OpenWrt-Devel] [PATCH] [RFC] lantiq: disable a bunch of features not applicable to my box

2016-05-18 Thread Martin Blumenstingl
On Wed, May 18, 2016 at 9:54 AM, Ben Mulvihill wrote: > On Wed, 2016-05-18 at 09:39 +0200, Oswald Buddenhagen wrote: >> - NAND/UBI support is completely irrelevant for my box, and for >> lantiq/Danube in general (IIRC). It appears to me that it would make >> sense to split it off from the xway

Re: [OpenWrt-Devel] latency on PPPoA ADSL Annex A on using Lantiq

2016-08-03 Thread Martin Blumenstingl
On Tue, Aug 2, 2016 at 6:10 PM, Alexander Couzens wrote: > On Tue, 2 Aug 2016 13:38:55 + > Daniel Niasoff wrote: > >> I can provide remote ssh access if required. When using SSH you will >> notice it feels sluggish due to this issue. >> >> Any ideas plase, I am really stuck here? > > I ca

[OpenWrt-Devel] [PATCH] lantiq: Change the data-type of mac address in ETOP driver

2015-10-04 Thread Martin Blumenstingl
This adds the changes from r46219 to the linux 4.1 patches as well. Signed-off-by: Martin Blumenstingl --- It seems that I forgot to include these in the original patchset which added the 4.1 patches for the lantiq target. Thanks to Mathias Kresin for finding this. .../lantiq/patches-4.1/0028

[OpenWrt-Devel] [PATCH] lantiq: Synchronize access to the DSL command pipe

2015-10-13 Thread Martin Blumenstingl
Whenever two processes were executing different commands at the same time then one of the commands sometimes got the response of the other command. Signed-off-by: Martin Blumenstingl --- target/linux/lantiq/base-files/lib/functions/lantiq_dsl.sh | 2 ++ 1 file changed, 2 insertions(+) diff

Re: [OpenWrt-Devel] How to config GPIO and read the GPIO value in OpenWRT

2015-10-14 Thread Martin Blumenstingl
On Wed, Oct 14, 2015 at 12:19 PM, Afkar Rafique wrote: > Could anyone please explain how i can configure and read GPIO value. There's an article on the wiki which explains how to set a GPIO to a specific value: [0] If you want to read a GPIO value then you use direction "in" and then simply cat to

[OpenWrt-Devel] Broken SPI transfers on TD-W8970 (latest trunk)

2015-10-14 Thread Martin Blumenstingl
Hi John, I am getting SPI errors on latest trunk. It seems that those might be related to your SPI changes from last week. I found that someone else reported a similar issue a few years ago: [0]. That patch was never applied and I'm not sure if it's 100% correct. These are the errors I get witho

[OpenWrt-Devel] [PATCH 2/2] lantiq: Print the status register whenever an error occurs

2015-10-14 Thread Martin Blumenstingl
This should help finding potential problems with the SPI driver. Signed-off-by: Martin Blumenstingl --- .../lantiq/patches-3.18/0033-SPI-MIPS-lantiq-adds-spi-xway.patch | 4 +++- .../linux/lantiq/patches-4.1/0033-SPI-MIPS-lantiq-adds-spi-xway.patch | 4 +++- 2 files changed, 6 insertions

[OpenWrt-Devel] [PATCH 1/2] lantiq: Fixed reading the number of RX FIFOs in the SPI driver

2015-10-14 Thread Martin Blumenstingl
Until now the SPI driver used the TX bits for the RX FIFO. This seems uncritical for now since both are equals on my devices (VR9), but this could cause problems on other SoCs. Signed-off-by: Martin Blumenstingl --- .../linux/lantiq/patches-3.18/0033-SPI-MIPS-lantiq-adds-spi-xway.patch | 2

Re: [OpenWrt-Devel] Broken SPI transfers on TD-W8970 (latest trunk)

2015-10-15 Thread Martin Blumenstingl
Hi John, On Thu, Oct 15, 2015 at 7:59 AM, John Crispin wrote: > bummer. i had hoped that my patch fixed the issue. > > did you try the patch graham posted ? I split the patch into two and tried: 1) flushing in ltq_spi_wait_ready 2) reducing rxreq_max in ltq_spi_rxreq_set 3) both of the changes fr

[OpenWrt-Devel] [PATCH 1/2] libblkid-tiny: Update the code from util-linux's libblkid

2015-10-31 Thread Martin Blumenstingl
This updates the relevant source files to util-linux changeset 4419ffb9eff5801fdbd385a4a6199b3877f802ad. Signed-off-by: Martin Blumenstingl --- libblkid-tiny/bitops.h| 166 ++ libblkid-tiny/blkdev.h| 47 +- libblkid-tiny/blkid.h | 147

[OpenWrt-Devel] fstools: Update libblkid and add F2FS support

2015-10-31 Thread Martin Blumenstingl
Hello, this updates the libblkid code and additionally adds F2FS support. The libblkid-tiny binary is now slightly smaller: Before: 19268 libblkid-tiny.so After: 18256 libblkid-tiny.so mount output of a F2FS device: # mount | grep f2fs /dev/sda1 on /mnt type f2fs (rw,relatime

[OpenWrt-Devel] [PATCH 2/2] libblkid-tiny: Add F2FS support

2015-10-31 Thread Martin Blumenstingl
Signed-off-by: Martin Blumenstingl --- CMakeLists.txt| 1 + libblkid-tiny/f2fs.c | 101 ++ libblkid-tiny/libblkid-tiny.c | 1 + 3 files changed, 103 insertions(+) create mode 100644 libblkid-tiny/f2fs.c diff --git a

Re: [OpenWrt-Devel] fstools: block command doesn't recognize supported filesystem types because of libblkid-tiny

2015-10-31 Thread Martin Blumenstingl
On Thu, Oct 8, 2015 at 6:13 PM, Sandy McArthur Jr wrote: > While attempting to pivot overlay using the f2fs filesystem in a 4mib > internal flash storage device on usb flash storage with the final CC > 15.05 release I ran into the hurdle that the block command doesn't > understand the magic bytes

[OpenWrt-Devel] [PATCH] uboot-lantiq: Add SoC version 1.2 support for Arcadyan VGV7510KW22

2015-10-31 Thread Martin Blumenstingl
This fixes #20409 Signed-off-by: Martin Blumenstingl --- .../0043-MIPS-add-board-support-for-Arcadyan-VGV7510KW22.patch | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/package/boot/uboot-lantiq/patches/0043-MIPS-add-board-support-for-Arcadyan-VGV7510KW22.patch

[OpenWrt-Devel] [PATCH] px5g: Use SHA-256 when generating self-signed certificates

2015-10-31 Thread Martin Blumenstingl
Signed-off-by: Martin Blumenstingl --- Unfortunately I am not sure if and how px5g-standalone should be adjusted, so this should be done by someone else if required. package/utils/px5g/px5g.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/utils/px5g/px5g.c b/package

Re: [OpenWrt-Devel] [PATCH] uboot-lantiq: Add SoC version 1.2 support for Arcadyan VGV7510KW22

2015-11-01 Thread Martin Blumenstingl
On Sun, Nov 1, 2015 at 9:01 AM, John Crispin wrote: > I'll merge this as is, however i am starting to wonder if we should not > just autodetect the right fw to use and only pass 11G/22F as an option I am *guessing* that it's due to binary size reasons (including all GPHY firmwares in the u-boot bi

[OpenWrt-Devel] [PATCH] ltq-vdsl-fw: Update the DSL firmware version

2015-11-07 Thread Martin Blumenstingl
The old version (5.3.4.A.1.6-5.3.6.4.1.2) is not supported by the new DSL driver. The new version (5.6.8.4.1.7-5.6.7.2.1.2) also brings (theoretically) vectoring support. Signed-off-by: Martin Blumenstingl --- package/kernel/lantiq/ltq-vdsl-fw/src/vdsl_fw_install.sh | 8 package/kernel

Re: [OpenWrt-Devel] [PATCH] ltq-vdsl-fw: Update the DSL firmware version

2015-11-15 Thread Martin Blumenstingl
Hi Felix, On Sun, Nov 8, 2015 at 1:29 PM, Felix Fietkau wrote: > Did you test this on a real VDSL line? Last time I tried a firmware from > a newer Speedport build (some months ago), it did not work. I thought it works as I've seen it entering SHOWTIME. Unfortunately you are right, after a few se

[OpenWrt-Devel] [PATCH] polarssl: update to version 1.3.15

2015-11-28 Thread Martin Blumenstingl
This is a minor version update which fixes some small bugs. None of these bugs were exploitable according to the release notes. Signed-off-by: Martin Blumenstingl --- package/libs/polarssl/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/libs/polarssl

[OpenWrt-Devel] [PATCH 1/2] ath10k-firmware: Update QCA988X firmware to 10.2.4.70.13-2

2015-11-28 Thread Martin Blumenstingl
Signed-off-by: Martin Blumenstingl --- Working fine for me after a short test on a QCA9880-BR4A. package/firmware/ath10k-firmware/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/firmware/ath10k-firmware/Makefile b/package/firmware/ath10k-firmware

[OpenWrt-Devel] [PATCH 2/2] ar71xx: Update preinit script for new ath10k firmware

2015-11-28 Thread Martin Blumenstingl
Signed-off-by: Martin Blumenstingl --- I couldn't test this change since I don't have a device that uses this. target/linux/ar71xx/base-files/lib/preinit/82_patch_ath10k | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/linux/ar71xx/base-files/l

Re: [OpenWrt-Devel] [PATCH 2/2] lantiq: get rid of ltq-vdsl-fw

2015-11-29 Thread Martin Blumenstingl
On Sun, Nov 29, 2015 at 7:25 PM, Andre Heider wrote: > --- a/target/linux/lantiq/xrx200/target.mk > +++ b/target/linux/lantiq/xrx200/target.mk > @@ -7,7 +7,6 @@ CPU_SUBTYPE:=dsp > > DEFAULT_PACKAGES+=kmod-leds-gpio \ > kmod-gpio-button-hotplug \ > - ltq-vdsl-vr9-fw-installer \ >

Re: [OpenWrt-Devel] [PATCH 1/2] ath10k-firmware: Update QCA988X firmware to 10.2.4.70.13-2

2015-12-12 Thread Martin Blumenstingl
On Thu, Dec 3, 2015 at 3:00 PM, Felix Fietkau wrote: > Maybe it's worth testing the latest from here (seems to be newer): > https://www.codeaurora.org/cgit/quic/qsdk/oss/firmware/ath10k-firmware/tree/10.2.4 I have just updated one of my devices to 10.2.4.97. I'll let it run for a few days and send

Re: [OpenWrt-Devel] [PATCH 1/2] ath10k-firmware: Update QCA988X firmware to 10.2.4.70.13-2

2015-12-12 Thread Martin Blumenstingl
On Sat, Dec 12, 2015 at 3:19 PM, John Crispin wrote: > ok, let me know how it went, if you dont mind i'll close the 2 pending > patches for now. if we merge we will most likely want the newest FW. sure, feel free. ___ openwrt-devel mailing list openwrt-d

[OpenWrt-Devel] [PATCHv2 2/2] ar71xx: Update preinit script for new ath10k firmware

2015-12-19 Thread Martin Blumenstingl
Signed-off-by: Martin Blumenstingl --- v2: Updated because patch #1 out of this series now uses 10.2.4.97-1 target/linux/ar71xx/base-files/lib/preinit/82_patch_ath10k | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/linux/ar71xx/base-files/lib/preinit/82_patch_ath10k

[OpenWrt-Devel] [PATCHv2 1/2] ath10k-firmware: Update QCA988X firmware to 10.2.4.97-1

2015-12-19 Thread Martin Blumenstingl
Signed-off-by: Martin Blumenstingl --- package/firmware/ath10k-firmware/Makefile | 13 +++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/package/firmware/ath10k-firmware/Makefile b/package/firmware/ath10k-firmware/Makefile index 596cf1f..882294c 100644 --- a/package

Re: [OpenWrt-Devel] [PATCH 1/2] ath10k-firmware: Update QCA988X firmware to 10.2.4.70.13-2

2015-12-19 Thread Martin Blumenstingl
On Sat, Dec 12, 2015 at 3:19 PM, John Crispin wrote: > if we merge we will most likely want the newest FW. I have now tested 10.2.4.97 for a week and no crashes so far. Thus I just sent an updated patchset. ___ openwrt-devel mailing list openwrt-devel@li

[OpenWrt-Devel] [PATCH 1/4] lantiq: Add the xbar to vr9.dts

2015-12-30 Thread Martin Blumenstingl
linux 4.4 (since commit 08b3c894e56580b8ed3e601212a25bda974c3cc2 "MIPS: lantiq: Disable xbar fpi burst mode") requires that the xbar is defined in the .dts of vrx200 (VR9) SoCs. --- I am not sure if the xbar size is really 0x1000 or if it's smaller/larger. Unfortunately there doesn't seem to be pub

[OpenWrt-Devel] [PATCH 3/4] lantiq: ltq-vmmc: Fix compilation with linux 4.4

2015-12-30 Thread Martin Blumenstingl
gpio.h needs the linux/ prefix with linux 4.4. --- package/kernel/lantiq/ltq-vmmc/patches/100-target.patch | 8 package/kernel/lantiq/ltq-vmmc/patches/400-falcon.patch | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package/kernel/lantiq/ltq-vmmc/patches/100-target.

[OpenWrt-Devel] [PATCH 4/4] lantiq: lantiq-deu: Make the DEU driver compatible with 4.2 and newer

2015-12-30 Thread Martin Blumenstingl
Upstream linux 4.2 commit 84be456f883c4685680fba8e5154b5f72e92957e "remove " moves scatterlist.h to linux/ instead of asm/. Upstream linux 4.3 commit b0d955ba4688fcba8112884931aea1f1e6f50f03 "crypto: aead - Remove old AEAD interfaces" removed aead_request_set_assoc. aead_request_set_ad should be u

[OpenWrt-Devel] [PATCH] kernel: Update kernel 4.4 to 4.4.0

2016-01-11 Thread Martin Blumenstingl
This removes one patch which was applied upstream with commit 67b9bcd36906e12a15ffec19463afbbd6a41660e. All other patches were refreshed. Signed-off-by: Martin Blumenstingl --- include/kernel-version.mk | 4 +-- ...spi-nor-disable-protection-for-Winbond-fl.patch | 35

[OpenWrt-Devel] [PATCH] lantiq: Change the xbar register range to match the datasheet

2016-01-11 Thread Martin Blumenstingl
According to the datasheet says that the xbar register range is 0x1F40-0x1F400FFF. Thanks to John Crispin for looking it up. Signed-off-by: Martin Blumenstingl --- target/linux/lantiq/dts/vr9.dtsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/linux/lantiq/dts

Re: [OpenWrt-Devel] [PATCH] lantiq: Change the xbar register range to match the datasheet

2016-01-11 Thread Martin Blumenstingl
On Mon, Jan 11, 2016 at 2:59 PM, John Crispin wrote: > 0x1F40-0x1F400FFF means that its size is 0x1000. i think you having > a off-by-one thinko ... ...and I think you are right! Sorry for the noise, please drop this patch. ___ openwrt-devel mailing

[OpenWrt-Devel] lantiq: Initial linux 4.4 support (with SPI problems)

2016-01-11 Thread Martin Blumenstingl
Hello, this series adds linux 4.4 support to the lantiq target. It depends on the linux/generic 4.4.0 update because -rc8 contains a build-fix for MIPS devices. I have tested it on two (VRX200) devices: - VGV7510KW22 (seems to work fine) - TD-W8970 (the mtd_reads in mtd_split seem to only return

[OpenWrt-Devel] [PATCH 3/3] lantiq: ltq-deu: Remove the "DEU test manager"

2016-01-11 Thread Martin Blumenstingl
Remove the "DEU test manager" code which has not been used for more than two years (as the kernel module is not installed anymore since aa65888e08ec7279cfecc24c5bfe71cf9a016b91). This fixes compilation on kernel 4.3 (which removes aead_request_set_assoc) and newer. Signed-off-

[OpenWrt-Devel] [PATCH 2/3] lantiq: ltq-deu: Make the DEU driver compatible with linux 4.2 and newer

2016-01-11 Thread Martin Blumenstingl
Upstream linux 4.2 commit 84be456f883c4685680fba8e5154b5f72e92957e "remove " requires us to include linux/scatterlist.h instead. This also works with older kernels (at least 4.1, thanks to Hauke Mehrtens for testing). Signed-off-by: Martin Blumenstingl --- package/kernel/lantiq/l

Re: [OpenWrt-Devel] lantiq: Initial linux 4.4 support (with SPI problems)

2016-01-13 Thread Martin Blumenstingl
Hi John, On Mon, Jan 11, 2016 at 3:25 PM, Martin Blumenstingl wrote: > Here's the kernel log from the TD-W8970: https://paste.kde.org/pia7p73i9 > I have debugged it and split_tplink_kernel gets 0x2 as offset and > 0x7A as size (which looks correct). However, when mtd_read t

Re: [OpenWrt-Devel] ath10k mesh + ap + encryption?

2016-09-13 Thread Martin Blumenstingl
ch with ath10k. >> I recommend to only use firmware releases from ath10k-firmware.git as we >> use those internally with ath10k. In any case, don't make any >> assumptions about future from that firmware branch as it's so old. Thanks for clarifying this. > Thi

Re: [OpenWrt-Devel] Support for BTHomeHub5

2017-01-13 Thread Martin Blumenstingl
On Fri, Jan 13, 2017 at 6:30 PM, Mauro M. wrote: > Hello, > > Is OpenWRT going to backport support for BtHomeHub5 from LEDE? > This router is very well supported in LEDE, whilst support is only basic in > OpenWrt, > LEDE implemented some broken changes in the firewall that prevent basic > routing

Re: [OpenWrt-Devel] upstreaming (most) rt2x00 patches

2017-01-13 Thread Martin Blumenstingl
On Thu, Jan 12, 2017 at 3:35 PM, Daniel Golle wrote: > Hi! > > The amount of patches on top of rt2x00 has grown into a huge pile > during the past couple of years. To get things into a shape that allow > discussing and merging them upstream, I created a tree on github based > on wireless-drivers-n

Re: [OpenWrt-Devel] upstreaming (most) rt2x00 patches

2017-01-14 Thread Martin Blumenstingl
On Sat, Jan 14, 2017 at 3:44 AM, Daniel Golle wrote: > Hi Martin, > > On Sat, Jan 14, 2017 at 01:28:06AM +0100, Martin Blumenstingl wrote: >> On Thu, Jan 12, 2017 at 3:35 PM, Daniel Golle wrote: >> > Hi! >> > >> > The amount of patches on top of rt2x00

[OpenWrt-Devel] lantiq DSL drivers / firmware info

2015-04-06 Thread Martin Blumenstingl
Hello, I recently purchased a TP-Link TD-W8970 on which I have installed OpenWrt. My goal is to use it as my main "DSL router", so it has to connect to the internet. For the reference: at the moment I'm using a "AVM FritzBox" for this purpose, which is connected directly to the phone jack (the web

lantiq: upstream Linux efforts

2021-04-11 Thread Martin Blumenstingl 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 --- Hello everyone, you are included

Re: lantiq: upstream Linux efforts

2021-04-11 Thread Martin Blumenstingl 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 Hauke, On Mon, Apr 12, 2021 at

Re: lantiq: upstream Linux efforts

2021-04-12 Thread Martin Blumenstingl 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 Martin, On Mon, Apr 12, 2021 a

Re: [OpenWrt-Devel] Problem reading flash zones in ath79

2019-07-29 Thread Martin Blumenstingl 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 Enrico, On Mon, Jul 29, 2019 a

Re: [OpenWrt-Devel] [PATCH] ramips: use gpio_hog instead of gpio-export

2019-08-11 Thread Martin Blumenstingl 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 Sun, Aug 11, 2019 at 1:00 PM Bi

Re: [OpenWrt-Devel] ath9k: mtd-cal-data vs firmware bin file

2019-08-15 Thread Martin Blumenstingl 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 Michal, On Wed, Aug 14, 2019 a

Re: [OpenWrt-Devel] [lantiq] help in supporting FRITZ!BOX 3272 (Fritz_Box_HW198))

2019-08-24 Thread Martin Blumenstingl 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 Enrico, On Sat, Aug 24, 2019 a

Re: [OpenWrt-Devel] [PATCH] [RFC] ath79: ag71xx: apply interface mode to MII0/1_CNTL on ar71xx/ar913x

2018-08-17 Thread Martin Blumenstingl 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, On Fri, Aug 17, 2018 at 12:05

Re: [OpenWrt-Devel] [PATCH] [RFC] ath79: ag71xx: apply interface mode to MII0/1_CNTL on ar71xx/ar913x

2018-08-17 Thread Martin Blumenstingl 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 Thu, Aug 16, 2018 at 5:06 AM Ch

Re: [OpenWrt-Devel] [PATCH] ath79: ar7100: remove IRQ code from PCI driver

2018-08-22 Thread Martin Blumenstingl 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 Wed, Aug 22, 2018 at 6:58 PM Dm

Re: [OpenWrt-Devel] [PATCH] ramips: add mt76x0 node to RT-AC51U device tree

2018-10-30 Thread Martin Blumenstingl 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 Lorenzo, thank you for your wo

Re: [OpenWrt-Devel] ath79 (qca95xx): Status of SPI-Attached NAND Drivers?

2019-01-25 Thread Martin Blumenstingl 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, (disclaimer: my knowledge abo

Re: [OpenWrt-Devel] 18.06 Bug: Baby Jumbo Frames on mt7621

2018-05-24 Thread Martin Blumenstingl 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 --- Hello Jaap, On Thu, May 24, 2018

Re: [OpenWrt-Devel] [PATCH 2/3] mvebu: reduce speed to gen1 for armada 37xx devices pcie

2018-06-09 Thread Martin Blumenstingl 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 Sat, Jun 9, 2018 at 4:15 PM Tom

Re: [OpenWrt-Devel] [PATCH 2/3] mvebu: reduce speed to gen1 for armada 37xx devices pcie

2018-06-10 Thread Martin Blumenstingl via openwrt-devel
t 11:09 PM Tomasz Maciej Nowak wrote: > > W dniu 09.06.2018 o 19:02, Martin Blumenstingl pisze: > > On Sat, Jun 9, 2018 at 4:15 PM Tomasz Maciej Nowak wrote: > >> > >> Since the beginning there's been an issue with initializing the Atheros > >> based

Re: [OpenWrt-Devel] [PATCH 2/2] ramips: fix RBM11G name and partitioning

2018-07-20 Thread Martin Blumenstingl 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 Thu, Jul 19, 2018 at 7:12 PM Th

Re: [OpenWrt-Devel] [PATCH 0/2] ramips: fix RBMxxG name and partitionning

2018-07-20 Thread Martin Blumenstingl 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 Thu, Jul 19, 2018 at 7:13 PM Th

Re: [OpenWrt-Devel] AR10 GPHYs (WAS: Re: [lantiq] general help on AR10 platform)

2019-09-04 Thread Martin Blumenstingl 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 Enrico, On Wed, Sep 4, 2019 at

Re: [OpenWrt-Devel] Lantiq xrx200: Access to ethernet phy registers (MDIO) from userspace

2019-09-16 Thread Martin Blumenstingl 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 Martin, On Mon, Sep 16, 2019 a

Re: [OpenWrt-Devel] [RFC] commit message in YAML format for new devices

2020-01-12 Thread Martin Blumenstingl 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 Paul, On Sun, Jan 12, 2020 at

Re: [OpenWrt-Devel] [RFC] commit message in YAML format for new devices

2020-01-14 Thread Martin Blumenstingl via openwrt-devel
3, 2020 at 9:13 AM Paul Spooren wrote: > > Hi, > > On 1/12/20 1:05 PM, Martin Blumenstingl wrote: > > Hi Paul, > > > > On Sun, Jan 12, 2020 at 10:47 PM Paul Spooren wrote: > >> Hi all, > >> > >> some time ago I created a (now outdated) d

Re: lantiq: upstream Linux efforts

2021-04-18 Thread Martin Blumenstingl via openwrt-devel
un, Apr 11, 2021 at 7:51 PM Martin Blumenstingl wrote: [...] > To improve the situation I suggest using Rafał Miłecki's approach also > for the lantiq target: > He is submitting patches upstream, then backporting them to OpenWrt. > That way backports to the -stable tree are for free.

Re: [PATCH] tools: fix ninja build dependency

2021-06-12 Thread Martin Blumenstingl 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 Sat, Jun 12, 2021 at 2:15 PM Bj

Re: Re: [OpenWrt-Devel] mt76x8: Strange GPIO numbering on Onion Omega2+

2021-06-12 Thread Martin Blumenstingl 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 Lukas, On Sat, Jun 12, 2021 at

Re: [PATCH 1/3] base-files: failsafe: Fix IP configuration

2021-06-20 Thread Martin Blumenstingl via openwrt-devel
a8 ("base-files: use "ports" array in board.json network for > bridges") > Signed-off-by: Hauke Mehrtens Tested-by: Martin Blumenstingl # BT Home Hub 5A with DSA patches --- End Message --- ___ openwrt-devel mailing list op

Re: [PATCH 2/3] base-files: failsafe: Start also CPU interface for DSA

2021-06-20 Thread Martin Blumenstingl via openwrt-devel
; before bringing up the actual interface. > > This is needed to make network in failsafe on systems with DSA work. > > Signed-off-by: Hauke Mehrtens if you're keeping this patch instead of going with the backport you can add my: Tested-by: Martin Blumen

Re: [PATCH] ltq-deu: Mark lantiq DEU broken

2021-06-27 Thread Martin Blumenstingl via openwrt-devel
terface. > > Just mark the Lantiq DEU as broken for now. > > Fixes: FS#3901 > Fixes: 53b6783907f3 ("mac80211: remove patches stripping down crypto support") > Signed-off-by: Hauke Mehrtens I am testing wifi with Linux 5.10 only these days where ltq-deu is disabled any

Re: [PATCH] ltq-deu: Mark lantiq DEU broken

2021-06-27 Thread Martin Blumenstingl via openwrt-devel
n 27, 2021 at 8:57 PM Hauke Mehrtens wrote: > > On 6/27/21 9:38 AM, Martin Blumenstingl wrote: > > Hi Hauke, > > > > On Sun, Jun 27, 2021 at 12:55 AM Hauke Mehrtens wrote: > >> > >> When the ltq_deu_vr9 kernel module is loaded, hostapd does not start any

Re: OpenWrt 21.02: backport lantiq xrx200 DSA switch

2021-07-01 Thread Martin Blumenstingl 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 Martin, On Thu, Jul 1, 2021 at

[PATCH v1 procd] watchdog: Add an info message if the watchdog reset the system

2021-07-18 Thread Martin Blumenstingl via openwrt-devel
et the CPU". Add an info message if the watchdog supports the WDIOF_CARDRESET flag and if the boot status indicates that the watchdog has previously reset the system. Signed-off-by: Martin Blumenstingl --- watchdog.c | 31 +++ 1 file changed, 31 insertions(+)

Re: kernel: add a bridge feature for filtering BPDU packets on ports

2021-09-25 Thread Martin Blumenstingl 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 Andre, On Sat, Sep 25, 2021 at

Re: kernel: add a bridge feature for filtering BPDU packets on ports

2021-09-27 Thread Martin Blumenstingl via openwrt-devel
at 6:53 PM Martin Blumenstingl wrote: > > Hi Andre, > > On Sat, Sep 25, 2021 at 1:17 PM Andre Heider wrote: > [...] > > With these 3 reverted (on top of da5bb885 "toolchain/gcc: switch to > > version 11 by default") it works again: > > Revert "h

Re: [RFT PATCH] ath9k: OF: qca, disable-(2|5)ghz => ieee80211-freq-limit

2021-10-29 Thread Martin Blumenstingl via openwrt-devel
gic which would adds the affected band and typo: s/adds/add/ > channels. It now disables all channels which are not > within the specified frequency range. > > Signed-off-by: Christian Lamparter apart from above typo this is: Reviewed-by: Martin Blumenstingl

Re: [iwinfo PATCH 1/2] iwinfo: add support for indoor only chan restriction

2021-11-19 Thread Martin Blumenstingl 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 Ansuel, below are a few commen

Re: [PATCH 0/4] lantiq: fix VDSL2 vectoring

2022-03-21 Thread Martin Blumenstingl via openwrt-devel
sted these patches for a few days and they don't break my HH5A so this gets my: Tested-by: Martin Blumenstingl Best regards, Martin --- End Message --- ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/mailman/listinfo/openwrt-devel

Re: [PATCH] ltq-atm/ltq-ptm: avoid unnecessary build dependencies

2022-04-29 Thread Martin Blumenstingl via openwrt-devel
to the vectoring callback. > > Make these dependencies conditional on the specific package variants, > so they are only built when actually needed. > > Signed-off-by: Jan Hoffmann Tested-by: Martin Blumenstingl This fixes a build issue on my local system when building the xway subtar

Re: [PATCH] ltq-vdsl/ltq-adsl: fix elapsed time calculation

2022-04-29 Thread Martin Blumenstingl via openwrt-devel
device shows that the reported line uptime now matches > the actual elapsed wall time. The ADSL variant is only compile-tested, > but it should also work as the relevant code is identical. > > Signed-off-by: Jan Hoffmann Tested-by: Martin Blumenstingl statistics seem fine to me with th

Re: [PATCH] ltq-vdsl-app: disconnect when service is stopped

2022-04-29 Thread Martin Blumenstingl via openwrt-devel
ing the acos and acs commands via > dsl_cpe_pipe.sh in the init script. However, doing it in the daemon > itself has the advantage of also working if it is terminated in another > way (for example during sysupgrade). > > Signed-off-by: Jan Hoffmann sysupgrade with this patch in my tree d

Re: [PATCH] uboot-fritz4040: build FritzBox 7520 variant

2022-09-27 Thread Martin Blumenstingl via openwrt-devel
gt; Signed-off-by: Andre Heider Thanks for the patch! I got a cheap 7520 and flashed OpenWrt on it using this patch. Everything works fine as far as I can tell, so: Tested-by: Martin Blumenstingl Best regards, Martin --- End Message --- ___ openwrt-dev

Re: gpio-mt7621 offset fix for 5.10 kernel series

2022-10-18 Thread Martin Blumenstingl 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 --- Hello Peter, On Tue, Oct 18, 2022

Re: [OpenWrt-Devel] ath79 equivalent of disable_smarteee

2020-02-01 Thread Martin Blumenstingl 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 Adrian, On Sat, Feb 1, 2020 at

Re: [OpenWrt-Devel] ath79 equivalent of disable_smarteee

2020-02-02 Thread Martin Blumenstingl 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 Roger, On Sun, Feb 2, 2020 at

Re: [OpenWrt-Devel] gpio-export,output and GPIO_ACTIVE_*

2020-02-23 Thread Martin Blumenstingl 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 Adrian, On Sun, Feb 23, 2020 a

Re: [OpenWrt-Devel] [PATCH] om-watchdog: Add support for GL-X1200 (GL.iNet)

2020-04-10 Thread Martin Blumenstingl 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, On Fri, Apr 10, 2020 at 11:47

Re: [OpenWrt-Devel] [RFC][lantiq] Custom PHY and ethernet/switch driver

2020-04-10 Thread Martin Blumenstingl 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 Andreas, On Sat, Mar 28, 2020

Re: [OpenWrt-Devel] Port labels for DSA targets/devices

2020-04-20 Thread Martin Blumenstingl 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 Adrian, (sorry for being sligh

Re: [OpenWrt-Devel] [RFC PATCH] ramips: remove patches for USB-dwc2

2020-04-22 Thread Martin Blumenstingl 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, On Wed, Apr 22, 2020 at 1:21

Re: [OpenWrt-Devel] [PATCH] bcm63xx: a226m-fwb: fix linux partition offset

2020-06-15 Thread Martin Blumenstingl 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 Daniel, On Mon, Jun 15, 2020 a

Re: [OpenWrt-Devel] [PATCH] lantiq: fritz7312: set maximum speed to 100 mbit on 5.4

2020-06-18 Thread Martin Blumenstingl 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 Adrian, On Thu, Jun 18, 2020 a

[no subject]

2020-06-23 Thread Martin Blumenstingl 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 John, On Tue, Jun 23, 2020 at

[no subject]

2020-07-05 Thread Martin Blumenstingl 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 Luca, On Sun, Jul 5, 2020 at 1

[no subject]

2020-07-05 Thread Martin Blumenstingl via openwrt-devel
5, 2020 at 1:42 PM Luca Olivetti wrote: > > El 5/7/20 a les 13:29, Martin Blumenstingl ha escrit: > > Hi Luca, > > > > On Sun, Jul 5, 2020 at 1:07 PM Luca Olivetti wrote: > > [...] > >> I put a printk in every step of reg_fixed_regulator_probe > >> (

[no subject]

2020-07-05 Thread Martin Blumenstingl 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 Luca, On Sun, Jul 5, 2020 at 3

[no subject]

2020-09-30 Thread Martin Blumenstingl 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 Adrian, On Sat, Sep 26, 2020 a

[no subject]

2020-09-30 Thread Martin Blumenstingl via openwrt-devel
p 30, 2020 at 9:11 PM Adrian Schmutzler wrote: > > Hi Martin, > > > -Original Message- > > From: Martin Blumenstingl [mailto:martin.blumensti...@googlemail.com] > > Sent: Mittwoch, 30. September 2020 20:55 > > To: Adrian Schmutzler > > Cc: openwrt-de

<    1   2