diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2006-04-23 00:55:38 -0400 |
---|---|---|
committer | Michael Krufky <mkrufky@linuxtv.org> | 2006-04-23 00:55:38 -0400 |
commit | 67b2932b4991e24b17b20ecff3e664db6358e685 (patch) | |
tree | c73d6057a261922d90655913dd3a1afa736befcf /linux/Documentation/dvb | |
parent | fd4323811c298ab794afc6e13719ba331bc0b740 (diff) | |
download | mediapointer-dvb-s2-67b2932b4991e24b17b20ecff3e664db6358e685.tar.gz mediapointer-dvb-s2-67b2932b4991e24b17b20ecff3e664db6358e685.tar.bz2 |
get_dvb_firmware: download nxt2002 firmware from new driver location
From: Michael Krufky <mkrufky@linuxtv.org>
BBTI has updated their driver, and removed the old one from their website.
This patch updates the get_dvb_firmware script to download the firmware
from the new driver location.
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Diffstat (limited to 'linux/Documentation/dvb')
-rw-r--r-- | linux/Documentation/dvb/get_dvb_firmware | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/linux/Documentation/dvb/get_dvb_firmware b/linux/Documentation/dvb/get_dvb_firmware index 15fc8fbef..4820366b6 100644 --- a/linux/Documentation/dvb/get_dvb_firmware +++ b/linux/Documentation/dvb/get_dvb_firmware @@ -259,9 +259,9 @@ sub dibusb { } sub nxt2002 { - my $sourcefile = "Broadband4PC_4_2_11.zip"; + my $sourcefile = "Technisat_DVB-PC_4_4_COMPACT.zip"; my $url = "http://www.bbti.us/download/windows/$sourcefile"; - my $hash = "c6d2ea47a8f456d887ada0cfb718ff2a"; + my $hash = "476befae8c7c1bb9648954060b1eec1f"; my $outfile = "dvb-fe-nxt2002.fw"; my $tmpdir = tempdir(DIR => "/tmp", CLEANUP => 1); @@ -269,8 +269,8 @@ sub nxt2002 { wgetfile($sourcefile, $url); unzip($sourcefile, $tmpdir); - verify("$tmpdir/SkyNETU.sys", $hash); - extract("$tmpdir/SkyNETU.sys", 375832, 5908, $outfile); + verify("$tmpdir/SkyNET.sys", $hash); + extract("$tmpdir/SkyNET.sys", 331624, 5908, $outfile); $outfile; } |