Magellan Linux

Annotation of /trunk/kernel26-magellan/patches-2.6.16-r10/0108-2.6.16.12-nxt2002-firmware.patch

Parent Directory Parent Directory | Revision Log Revision Log


Revision 70 - (hide annotations) (download)
Thu May 11 19:09:22 2006 UTC (18 years ago) by niro
File size: 1519 byte(s)
import

1 niro 70 From: Michael Krufky <mkrufky@linuxtv.org>
2     Date: Sun, 23 Apr 2006 06:16:42 +0000 (-0400)
3     Subject: [PATCH] get_dvb_firmware: download nxt2002 firmware from new driver location
4     X-Git-Url: http://www.kernel.org/git/?p=linux/kernel/git/stable/linux-2.6.16.y.git;a=commitdiff;h=6c3b9da475a0a62cb5eb9ed458004b8d6d1d330e
5    
6     [PATCH] get_dvb_firmware: download nxt2002 firmware from new driver location
7    
8     BBTI has updated their driver, and removed the old one from their website.
9     This patch updates the get_dvb_firmware script to download the firmware
10     from the new driver location.
11    
12     Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
13     Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
14     ---
15    
16     --- a/Documentation/dvb/get_dvb_firmware
17     +++ b/Documentation/dvb/get_dvb_firmware
18     @@ -240,9 +240,9 @@ sub dibusb {
19     }
20    
21     sub nxt2002 {
22     - my $sourcefile = "Broadband4PC_4_2_11.zip";
23     + my $sourcefile = "Technisat_DVB-PC_4_4_COMPACT.zip";
24     my $url = "http://www.bbti.us/download/windows/$sourcefile";
25     - my $hash = "c6d2ea47a8f456d887ada0cfb718ff2a";
26     + my $hash = "476befae8c7c1bb9648954060b1eec1f";
27     my $outfile = "dvb-fe-nxt2002.fw";
28     my $tmpdir = tempdir(DIR => "/tmp", CLEANUP => 1);
29    
30     @@ -250,8 +250,8 @@ sub nxt2002 {
31    
32     wgetfile($sourcefile, $url);
33     unzip($sourcefile, $tmpdir);
34     - verify("$tmpdir/SkyNETU.sys", $hash);
35     - extract("$tmpdir/SkyNETU.sys", 375832, 5908, $outfile);
36     + verify("$tmpdir/SkyNET.sys", $hash);
37     + extract("$tmpdir/SkyNET.sys", 331624, 5908, $outfile);
38    
39     $outfile;
40     }