diff mbox

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

Message ID 1446908735-16847-1-git-send-email-martin.blumenstingl@googlemail.com
State Rejected
Headers show

Commit Message

Martin Blumenstingl Nov. 7, 2015, 3:05 p.m. UTC
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 <martin.blumenstingl@googlemail.com>
---
 package/kernel/lantiq/ltq-vdsl-fw/src/vdsl_fw_install.sh | 8 ++++----
 package/kernel/lantiq/ltq-vdsl-fw/src/w921v_fw_cutter.c  | 4 ++--
 2 files changed, 6 insertions(+), 6 deletions(-)

Comments

Felix Fietkau Nov. 8, 2015, 12:29 p.m. UTC | #1
On 2015-11-07 16:05, Martin Blumenstingl wrote:
> 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 <martin.blumenstingl@googlemail.com>
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.

- Felix
Martin Blumenstingl Nov. 15, 2015, 9:16 p.m. UTC | #2
Hi Felix,

On Sun, Nov 8, 2015 at 1:29 PM, Felix Fietkau <nbd@openwrt.org> 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 seconds it leaves SHOWTIME again.

So please discard this patch for now.
diff mbox

Patch

diff --git a/package/kernel/lantiq/ltq-vdsl-fw/src/vdsl_fw_install.sh b/package/kernel/lantiq/ltq-vdsl-fw/src/vdsl_fw_install.sh
index 4572abc..87b4caa 100755
--- a/package/kernel/lantiq/ltq-vdsl-fw/src/vdsl_fw_install.sh
+++ b/package/kernel/lantiq/ltq-vdsl-fw/src/vdsl_fw_install.sh
@@ -1,13 +1,13 @@ 
 #!/bin/sh
 . /lib/functions.sh
 
-FW="/tmp/Firmware_Speedport_W921V_1.21.000.bin"
-URL="http://hilfe.telekom.de/dlp/eki/downloads/Speedport/Speedport%20W%20921V/Firmware_Speedport_W921V_1.21.000.bin"
+FW="/tmp/Firmware_Speedport_W921V_1.39.000.bin"
+URL="http://hilfe.telekom.de/dlp/eki/downloads/Speedport/Speedport%20W%20921V/Firmware_Speedport_W921V_1.39.000.bin"
 FW_TAPI="vr9_tapi_fw.bin"
 FW_DSL="vr9_dsl_fw_annex_b.bin"
-MD5_FW="0a099d08dbf091c74d685b532cbb1390"
+MD5_FW="350a4881223bed466dfda4d307bfd2d0"
 MD5_TAPI="06b6ab3481b8d3eb7e8bf6131f7f6b7f"
-MD5_DSL="59dd9dc81195c6854433c691b163f757"
+MD5_DSL="96465516993771e5a192ab94813f404d"
 
 [ -f /lib/firmware/vdsl.bin ] && exit 0
 
diff --git a/package/kernel/lantiq/ltq-vdsl-fw/src/w921v_fw_cutter.c b/package/kernel/lantiq/ltq-vdsl-fw/src/w921v_fw_cutter.c
index fcd0106..ac92bc9 100644
--- a/package/kernel/lantiq/ltq-vdsl-fw/src/w921v_fw_cutter.c
+++ b/package/kernel/lantiq/ltq-vdsl-fw/src/w921v_fw_cutter.c
@@ -26,7 +26,7 @@ 
 
 #include "LzmaWrapper.h"
 
-#define FW_NAME		"/tmp/Firmware_Speedport_W921V_1.21.000.bin"
+#define FW_NAME		"/tmp/Firmware_Speedport_W921V_1.39.000.bin"
 
 #define MAGIC		0x50
 #define MAGIC_SZ	0x3FFC00
@@ -78,7 +78,7 @@  int main(int argc, char **argv)
 
 	if (stat(FW_NAME, &s) != 0) {
 		printf("Failed to find %s\n", FW_NAME);
-		printf("Ask Google or try http://hilfe.telekom.de/dlp/eki/downloads/Speedport/Speedport%20W%20921V/Firmware_Speedport_W921V_1.21.000.bin\n");
+		printf("Ask Google or try http://hilfe.telekom.de/dlp/eki/downloads/Speedport/Speedport%20W%20921V/Firmware_Speedport_W921V_1.39.000.bin\n");
 		return -1;
 	}