Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

V4L/DVB (3832): Get_dvb_firmware: download nxt2002 firmware from new driver location

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>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>

authored by

Michael Krufky and committed by
Mauro Carvalho Chehab
ba5f0a4e dd31d5ac

+4 -4
+4 -4
Documentation/dvb/get_dvb_firmware
··· 259 259 } 260 260 261 261 sub nxt2002 { 262 - my $sourcefile = "Broadband4PC_4_2_11.zip"; 262 + my $sourcefile = "Technisat_DVB-PC_4_4_COMPACT.zip"; 263 263 my $url = "http://www.bbti.us/download/windows/$sourcefile"; 264 - my $hash = "c6d2ea47a8f456d887ada0cfb718ff2a"; 264 + my $hash = "476befae8c7c1bb9648954060b1eec1f"; 265 265 my $outfile = "dvb-fe-nxt2002.fw"; 266 266 my $tmpdir = tempdir(DIR => "/tmp", CLEANUP => 1); 267 267 ··· 269 269 270 270 wgetfile($sourcefile, $url); 271 271 unzip($sourcefile, $tmpdir); 272 - verify("$tmpdir/SkyNETU.sys", $hash); 273 - extract("$tmpdir/SkyNETU.sys", 375832, 5908, $outfile); 272 + verify("$tmpdir/SkyNET.sys", $hash); 273 + extract("$tmpdir/SkyNET.sys", 331624, 5908, $outfile); 274 274 275 275 $outfile; 276 276 }