Giter Club home page Giter Club logo

Comments (4)

kissmorning avatar kissmorning commented on August 15, 2024

Can anyone extract the files? I couldn't. Can you share the xdsl file?

from lantiq-xdsl-firmware-info.

andyboeh avatar andyboeh commented on August 15, 2024

The procedure worked fine for me with a 4.4.2 v2765 firmware. Sharing is probably not allowed, but we can try to help you getting the files extracted. Where are you stuck at?

from lantiq-xdsl-firmware-info.

nicefile avatar nicefile commented on August 15, 2024

thx that's worked for
v130_385_modem_BT.all
786ccd97d2ecc0e94fc9fbb0e1388930 xcpe_5.6.5.6.0.7_5.6.7.0.0.2.bin
e5c69f0dfc79d63bdd2265e050c766dd xcpe_5.7.3.3.0.7_5.7.1.C.0.2.bin
834df2c4bd6b1f726cbd644222bd9272 xcpe_5.7.6.D.1.7_5.7.2.8.0.1.bin
e4e8b72446eb78126be401cd19991c5c xcpe_5.7.8.6.1.7_5.7.2.8.0.1.bin

xcpe_5.6.5.6.0.7_5.6.7.0.0.2.bin: VDSL over ISDN incl. vectoring support for VRX200, version: 6.5.6 | ADSL Annex B for VRX200, version: 6.7.0
xcpe_5.7.3.3.0.7_5.7.1.C.0.2.bin: VDSL over ISDN incl. vectoring support for VRX200, version: 7.3.3 | ADSL Annex B for VRX200, version: 7.1.C
xcpe_5.7.6.D.1.7_5.7.2.8.0.1.bin: VDSL over ISDN incl. vectoring support for VRX200, version: 7.6.D | ADSL Annex A for VRX200, version: 7.2.8
xcpe_5.7.8.6.1.7_5.7.2.8.0.1.bin: VDSL over ISDN incl. vectoring support for VRX200, version: 7.8.6 | ADSL Annex A for VRX200, version: 7.2.8

from lantiq-xdsl-firmware-info.

xdarklight avatar xdarklight commented on August 15, 2024

Thanks, with a small shell script I was able to batch-extract all data for Vigor130 and Vigor2765.
I omitted Vigor165 because it's EOL and is replaced by Vigor2765
I also omitted Vigor2762 because I am not sure if anyone managed to get this working on OpenWrt yet.

#!/usr/bin/env bash

BASEDIR="/tmp/draytek"

rm -rf "${BASEDIR}"
mkdir "${BASEDIR}"
cd "${BASEDIR}"

# for DEVICE in Vigor130 Vigor2762 Vigor165 Vigor2765
for DEVICE in Vigor130 Vigor2765
do
	VERSION=$(curl -s "https://fw.draytek.com.tw/${DEVICE}/Firmware/latest.txt")

	mkdir "${BASEDIR}/${DEVICE}"
	cd "${BASEDIR}/${DEVICE}"

	curl -O "https://fw.draytek.com.tw/${DEVICE}/Firmware/v${VERSION}/FIRMWARE.DIGESTS"

	for FILE in $(grep -Eo "[A-Za-z0-9_.]+.zip" FIRMWARE.DIGESTS)
	do
		curl -O "https://fw.draytek.com.tw/${DEVICE}/Firmware/v${VERSION}/${FILE}"

		unzip $FILE
	done

	for FILE in $(ls -1v *.all)
	do
		rm -f firmware_file.fw
		mkdir "_${FILE}"
		python /tmp/xdsl-modem-fw-tools/extract_dtv_fw.py "${FILE}"
		mv "${FILE}.fw" "_${FILE}/fw"
		cd "_${FILE}/"
		python /tmp/xdsl-modem-fw-tools/extract_ltq_xdsl_files.py "fw"
		cd ..
	done
done

from lantiq-xdsl-firmware-info.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.