From 9f3157aa2ad5481de947bbfbba3e2eb065486a26 Mon Sep 17 00:00:00 2001 From: Aleksander Jan Bajkowski Date: Mon, 29 Apr 2024 14:12:04 +0200 Subject: [PATCH] lantiq: xrx200: skip DSL configuration on AVM 5490/5491 Skip the DSL configuration since AVM 5490 and 5491 support fiber instead of DSL. The DSL configuration overwrites the WAN port configuration. Fixes: 48b2df5a4164 ("lantiq: add support for AVM Fritzbox 5490/5491") Signed-off-by: Aleksander Jan Bajkowski Link: https://github.com/openwrt/openwrt/pull/24652 Signed-off-by: Hauke Mehrtens --- target/linux/lantiq/xrx200/base-files/etc/board.d/02_network | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/target/linux/lantiq/xrx200/base-files/etc/board.d/02_network b/target/linux/lantiq/xrx200/base-files/etc/board.d/02_network index d6377140b35..5e3d129f246 100644 --- a/target/linux/lantiq/xrx200/base-files/etc/board.d/02_network +++ b/target/linux/lantiq/xrx200/base-files/etc/board.d/02_network @@ -74,6 +74,10 @@ lantiq_setup_dsl() avm,fritz7490-micron) annex="b" ;; + avm,fritz5490|\ + avm,fritz5490-micron) + return + ;; esac lantiq_setup_dsl_helper "$annex" -- 2.47.3