From f6254a215e25f624163a567201b72b2ef167b55d Mon Sep 17 00:00:00 2001 From: Martin Schiller Date: Thu, 3 Aug 2017 09:50:03 +0200 Subject: [PATCH] ltq-vdsl-app: mask out ADSL bits when VDSL is requested If the line_mode is fixed configured to vdsl, than only G.993 VDSL should be used. Signed-off-by: Martin Schiller --- package/network/config/ltq-vdsl-app/files/dsl_control | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/package/network/config/ltq-vdsl-app/files/dsl_control b/package/network/config/ltq-vdsl-app/files/dsl_control index 1d4129fc7d..bd5f0b8fa5 100644 --- a/package/network/config/ltq-vdsl-app/files/dsl_control +++ b/package/network/config/ltq-vdsl-app/files/dsl_control @@ -211,11 +211,14 @@ start_service() { adsl) mode=1 - # mask out VDSL bits when ATM is requested + # mask out VDSL bits when ADSL is requested xtse="${xtse%_*}_00" ;; *) mode=2 + + # mask out ADSL bits when VDSL is requested + xtse="00_00_00_00_00_00_00_${xtse##*_}" ;; esac -- 2.30.2