Blame view

scripts/get_dvb_firmware 25.2 KB
cb77f0d62   Kamil Rytarowski   scripts: Switch t...
1
  #!/usr/bin/env perl
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  #     DVB firmware extractor
  #
  #     (c) 2004 Andrew de Quincey
  #
  #     This program is free software; you can redistribute it and/or modify
  #       it under the terms of the GNU General Public License as published by
  #       the Free Software Foundation; either version 2 of the License, or
  #       (at your option) any later version.
  #
  #     This program is distributed in the hope that it will be useful,
  #       but WITHOUT ANY WARRANTY; without even the implied warranty of
  #       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  #
  #     GNU General Public License for more details.
  #
  #     You should have received a copy of the GNU General Public License
  #       along with this program; if not, write to the Free Software
  #       Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  
  use File::Temp qw/ tempdir /;
  use IO::Handle;
3d8466ece   Giampiero Giancipoli   V4L/DVB (3302): A...
23
24
  @components = ( "sp8870", "sp887x", "tda10045", "tda10046",
  		"tda10046lifeview", "av7110", "dec2000t", "dec2540t",
f6b70ec50   Antonio Ospite   [media] get_dvb_f...
25
  		"dec3000s", "vp7041", "vp7049", "dibusb", "nxt2002", "nxt2004",
59800555f   Marco Gittler   V4L/DVB (5829): F...
26
  		"or51211", "or51132_qam", "or51132_vsb", "bluebird",
9254078c6   Antti Palosaari   V4L/DVB (12752): ...
27
  		"opera1", "cx231xx", "cx18", "cx23885", "pvrusb2", "mpc718",
d2f918bba   Malcolm Priestley   V4L/DVB: Support ...
28
  		"af9015", "ngene", "az6027", "lme2510_lg", "lme2510c_s7395",
6fd7dba02   Eddi De Pieri   [media] get_dvb_f...
29
  		"lme2510c_s7395_old", "drxk", "drxk_terratec_h5",
7a016b088   Malcolm Priestley   [media] get_dvb_f...
30
  		"drxk_hauppauge_hvr930c", "tda10071", "it9135", "drxk_pctv",
9ca72fa1f   Matthias Schwarzott   [media] get_dvb_f...
31
  		"drxk_terratec_htc_stick", "sms1xxx_hcw", "si2165");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
32
33
34
35
36
37
38
39
40
41
  
  # Check args
  syntax() if (scalar(@ARGV) != 1);
  $cid = $ARGV[0];
  
  # Do it!
  for ($i=0; $i < scalar(@components); $i++) {
      if ($cid eq $components[$i]) {
  	$outfile = eval($cid);
  	die $@ if $@;
12e66f657   Ville Skytt\ä   V4L/DVB (3242): m...
42
  	print STDERR <<EOF;
b888c5dad   Mauro Carvalho Chehab   V4L/DVB (11136): ...
43
  Firmware(s) $outfile extracted successfully.
87147ff03   Oliver Endriss   V4L/DVB: get_dvb_...
44
  Now copy it(them) to either /usr/lib/hotplug/firmware or /lib/firmware
12e66f657   Ville Skytt\ä   V4L/DVB (3242): m...
45
46
  (depending on configuration of firmware hotplug).
  EOF
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
  	exit(0);
      }
  }
  
  # If we get here, it wasn't found
  print STDERR "Unknown component \"$cid\"
  ";
  syntax();
  
  
  
  
  # ---------------------------------------------------------------
  # Firmware-specific extraction subroutines
  
  sub sp8870 {
      my $sourcefile = "tt_Premium_217g.zip";
302170a4b   Michael Krufky   V4L/DVB (5771): G...
64
      my $url = "http://www.softwarepatch.pl/9999ccd06a4813cb827dbb0005071c71/$sourcefile";
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
      my $hash = "53970ec17a538945a6d8cb608a7b3899";
      my $outfile = "dvb-fe-sp8870.fw";
      my $tmpdir = tempdir(DIR => "/tmp", CLEANUP => 1);
  
      checkstandard();
  
      wgetfile($sourcefile, $url);
      unzip($sourcefile, $tmpdir);
      verify("$tmpdir/software/OEM/HE/App/boot/SC_MAIN.MC", $hash);
      copy("$tmpdir/software/OEM/HE/App/boot/SC_MAIN.MC", $outfile);
  
      $outfile;
  }
  
  sub sp887x {
      my $sourcefile = "Dvbt1.3.57.6.zip";
      my $url = "http://www.avermedia.com/software/$sourcefile";
      my $cabfile = "DVBT Net  Ver1.3.57.6/disk1/data1.cab";
      my $hash = "237938d53a7f834c05c42b894ca68ac3";
      my $outfile = "dvb-fe-sp887x.fw";
      my $tmpdir = tempdir(DIR => "/tmp", CLEANUP => 1);
  
      checkstandard();
      checkunshield();
  
      wgetfile($sourcefile, $url);
      unzip($sourcefile, $tmpdir);
      unshield("$tmpdir/$cabfile", $tmpdir);
      verify("$tmpdir/ZEnglish/sc_main.mc", $hash);
      copy("$tmpdir/ZEnglish/sc_main.mc", $outfile);
  
      $outfile;
  }
  
  sub tda10045 {
      my $sourcefile = "tt_budget_217g.zip";
      my $url = "http://www.technotrend.de/new/217g/$sourcefile";
      my $hash = "2105fd5bf37842fbcdfa4bfd58f3594a";
      my $outfile = "dvb-fe-tda10045.fw";
      my $tmpdir = tempdir(DIR => "/tmp", CLEANUP => 1);
  
      checkstandard();
  
      wgetfile($sourcefile, $url);
      unzip($sourcefile, $tmpdir);
      extract("$tmpdir/software/OEM/PCI/App/ttlcdacc.dll", 0x37ef9, 30555, "$tmpdir/fwtmp");
      verify("$tmpdir/fwtmp", $hash);
      copy("$tmpdir/fwtmp", $outfile);
  
      $outfile;
  }
  
  sub tda10046 {
c545d6adb   Andreas Arens   V4L/DVB (6016): g...
118
  	my $sourcefile = "TT_PCI_2.19h_28_11_2006.zip";
25ec43d3e   Mauro Carvalho Chehab   get_dvb_firmware:...
119
  	my $url = "http://technotrend.com.ua/download/software/219/$sourcefile";
c545d6adb   Andreas Arens   V4L/DVB (6016): g...
120
121
122
  	my $hash = "6a7e1e2f2644b162ff0502367553c72d";
  	my $outfile = "dvb-fe-tda10046.fw";
  	my $tmpdir = tempdir(DIR => "/tmp", CLEANUP => 1);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
123

c545d6adb   Andreas Arens   V4L/DVB (6016): g...
124
  	checkstandard();
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
125

c545d6adb   Andreas Arens   V4L/DVB (6016): g...
126
127
128
129
130
  	wgetfile($sourcefile, $url);
  	unzip($sourcefile, $tmpdir);
  	extract("$tmpdir/TT_PCI_2.19h_28_11_2006/software/OEM/PCI/App/ttlcdacc.dll", 0x65389, 24478, "$tmpdir/fwtmp");
  	verify("$tmpdir/fwtmp", $hash);
  	copy("$tmpdir/fwtmp", $outfile);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
131

c545d6adb   Andreas Arens   V4L/DVB (6016): g...
132
  	$outfile;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
133
  }
3d8466ece   Giampiero Giancipoli   V4L/DVB (3302): A...
134
  sub tda10046lifeview {
d852d53dc   Joseba Goitia Gandiaga   V4L/DVB (11488): ...
135
136
      my $sourcefile = "7%5Cdrv_2.11.02.zip";
      my $url = "http://www.lifeview.hk/dbimages/document/$sourcefile";
3d8466ece   Giampiero Giancipoli   V4L/DVB (3302): A...
137
138
139
140
141
142
143
144
145
146
147
148
149
150
      my $hash = "1ea24dee4eea8fe971686981f34fd2e0";
      my $outfile = "dvb-fe-tda10046.fw";
      my $tmpdir = tempdir(DIR => "/tmp", CLEANUP => 1);
  
      checkstandard();
  
      wgetfile($sourcefile, $url);
      unzip($sourcefile, $tmpdir);
      extract("$tmpdir/LVHybrid.sys", 0x8b088, 24602, "$tmpdir/fwtmp");
      verify("$tmpdir/fwtmp", $hash);
      copy("$tmpdir/fwtmp", $outfile);
  
      $outfile;
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
151
152
  sub av7110 {
      my $sourcefile = "dvb-ttpci-01.fw-261d";
991ce92f8   Mauro Carvalho Chehab   [media] use https...
153
      my $url = "https://linuxtv.org/downloads/firmware/$sourcefile";
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
      my $hash = "603431b6259715a8e88f376a53b64e2f";
      my $outfile = "dvb-ttpci-01.fw";
  
      checkstandard();
  
      wgetfile($sourcefile, $url);
      verify($sourcefile, $hash);
      copy($sourcefile, $outfile);
  
      $outfile;
  }
  
  sub dec2000t {
      my $sourcefile = "dec217g.exe";
      my $url = "http://hauppauge.lightpath.net/de/$sourcefile";
      my $hash = "bd86f458cee4a8f0a8ce2d20c66215a9";
      my $outfile = "dvb-ttusb-dec-2000t.fw";
      my $tmpdir = tempdir(DIR => "/tmp", CLEANUP => 1);
  
      checkstandard();
  
      wgetfile($sourcefile, $url);
      unzip($sourcefile, $tmpdir);
      verify("$tmpdir/software/OEM/STB/App/Boot/STB_PC_T.bin", $hash);
      copy("$tmpdir/software/OEM/STB/App/Boot/STB_PC_T.bin", $outfile);
  
      $outfile;
  }
  
  sub dec2540t {
      my $sourcefile = "dec217g.exe";
      my $url = "http://hauppauge.lightpath.net/de/$sourcefile";
      my $hash = "53e58f4f5b5c2930beee74a7681fed92";
      my $outfile = "dvb-ttusb-dec-2540t.fw";
      my $tmpdir = tempdir(DIR => "/tmp", CLEANUP => 1);
  
      checkstandard();
  
      wgetfile($sourcefile, $url);
      unzip($sourcefile, $tmpdir);
      verify("$tmpdir/software/OEM/STB/App/Boot/STB_PC_X.bin", $hash);
      copy("$tmpdir/software/OEM/STB/App/Boot/STB_PC_X.bin", $outfile);
  
      $outfile;
  }
  
  sub dec3000s {
      my $sourcefile = "dec217g.exe";
      my $url = "http://hauppauge.lightpath.net/de/$sourcefile";
      my $hash = "b013ececea83f4d6d8d2a29ac7c1b448";
      my $outfile = "dvb-ttusb-dec-3000s.fw";
      my $tmpdir = tempdir(DIR => "/tmp", CLEANUP => 1);
  
      checkstandard();
  
      wgetfile($sourcefile, $url);
      unzip($sourcefile, $tmpdir);
      verify("$tmpdir/software/OEM/STB/App/Boot/STB_PC_S.bin", $hash);
      copy("$tmpdir/software/OEM/STB/App/Boot/STB_PC_S.bin", $outfile);
  
      $outfile;
  }
59800555f   Marco Gittler   V4L/DVB (5829): F...
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
  sub opera1{
  	my $tmpdir = tempdir(DIR => "/tmp", CLEANUP => 0);
  
  	checkstandard();
  	my $fwfile1="dvb-usb-opera1-fpga-01.fw";
  	my $fwfile2="dvb-usb-opera-01.fw";
  	extract("2830SCap2.sys", 0x62e8, 55024, "$tmpdir/opera1-fpga.fw");
  	extract("2830SLoad2.sys",0x3178,0x3685-0x3178,"$tmpdir/fw1part1");
  	extract("2830SLoad2.sys",0x0980,0x3150-0x0980,"$tmpdir/fw1part2");
  	delzero("$tmpdir/fw1part1","$tmpdir/fw1part1-1");
  	delzero("$tmpdir/fw1part2","$tmpdir/fw1part2-1");
  	verify("$tmpdir/fw1part1-1","5e0909858fdf0b5b09ad48b9fe622e70");
  	verify("$tmpdir/fw1part2-1","d6e146f321427e931df2c6fcadac37a1");
  	verify("$tmpdir/opera1-fpga.fw","0f8133f5e9051f5f3c1928f7e5a1b07d");
  
  	my $RES1="\x01\x92\x7f\x00\x01\x00";
  	my $RES0="\x01\x92\x7f\x00\x00\x00";
  	my $DAT1="\x01\x00\xe6\x00\x01\x00";
  	my $DAT0="\x01\x00\xe6\x00\x00\x00";
  	open FW,">$tmpdir/opera.fw";
  	print FW "$RES1";
  	print FW "$DAT1";
  	print FW "$RES1";
  	print FW "$DAT1";
  	appendfile(FW,"$tmpdir/fw1part1-1");
  	print FW "$RES0";
  	print FW "$DAT0";
  	print FW "$RES1";
  	print FW "$DAT1";
  	appendfile(FW,"$tmpdir/fw1part2-1");
  	print FW "$RES1";
  	print FW "$DAT1";
  	print FW "$RES0";
  	print FW "$DAT0";
  	copy ("$tmpdir/opera1-fpga.fw",$fwfile1);
  	copy ("$tmpdir/opera.fw",$fwfile2);
  
  	$fwfile1.",".$fwfile2;
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
  
  sub vp7041 {
      my $sourcefile = "2.422.zip";
      my $url = "http://www.twinhan.com/files/driver/USB-Ter/$sourcefile";
      my $hash = "e88c9372d1f66609a3e7b072c53fbcfe";
      my $outfile = "dvb-vp7041-2.422.fw";
      my $tmpdir = tempdir(DIR => "/tmp", CLEANUP => 1);
  
      checkstandard();
  
      wgetfile($sourcefile, $url);
      unzip($sourcefile, $tmpdir);
      extract("$tmpdir/VisionDTV/Drivers/Win2K&XP/UDTTload.sys", 12503, 3036, "$tmpdir/fwtmp1");
      extract("$tmpdir/VisionDTV/Drivers/Win2K&XP/UDTTload.sys", 2207, 10274, "$tmpdir/fwtmp2");
  
      my $CMD = "\000\001\000\222\177\000";
      my $PAD = "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000";
      my ($FW);
      open $FW, ">$tmpdir/fwtmp3";
      print $FW "$CMD\001$PAD";
      print $FW "$CMD\001$PAD";
      appendfile($FW, "$tmpdir/fwtmp1");
      print $FW "$CMD\000$PAD";
      print $FW "$CMD\001$PAD";
      appendfile($FW, "$tmpdir/fwtmp2");
      print $FW "$CMD\001$PAD";
      print $FW "$CMD\000$PAD";
      close($FW);
  
      verify("$tmpdir/fwtmp3", $hash);
      copy("$tmpdir/fwtmp3", $outfile);
  
      $outfile;
  }
f6b70ec50   Antonio Ospite   [media] get_dvb_f...
289
290
291
292
293
294
295
296
297
298
299
300
  sub vp7049 {
      my $fwfile = "dvb-usb-vp7049-0.95.fw";
      my $url = "http://ao2.it/sites/default/files/blog/2012/11/06/linux-support-digicom-digitune-s-vp7049-udtt7049/$fwfile";
      my $hash = "5609fd295168aea88b25ff43a6f79c36";
  
      checkstandard();
  
      wgetfile($fwfile, $url);
      verify($fwfile, $hash);
  
      $fwfile;
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
301
  sub dibusb {
991ce92f8   Mauro Carvalho Chehab   [media] use https...
302
  	my $url = "https://linuxtv.org/downloads/firmware/dvb-usb-dibusb-5.0.0.11.fw";
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
303
304
305
306
307
308
309
310
311
312
313
314
  	my $outfile = "dvb-dibusb-5.0.0.11.fw";
  	my $hash = "fa490295a527360ca16dcdf3224ca243";
  
  	checkstandard();
  
  	wgetfile($outfile, $url);
  	verify($outfile,$hash);
  
  	$outfile;
  }
  
  sub nxt2002 {
ba5f0a4e1   Michael Krufky   V4L/DVB (3832): G...
315
      my $sourcefile = "Technisat_DVB-PC_4_4_COMPACT.zip";
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
316
      my $url = "http://www.bbti.us/download/windows/$sourcefile";
ba5f0a4e1   Michael Krufky   V4L/DVB (3832): G...
317
      my $hash = "476befae8c7c1bb9648954060b1eec1f";
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
318
319
320
321
      my $outfile = "dvb-fe-nxt2002.fw";
      my $tmpdir = tempdir(DIR => "/tmp", CLEANUP => 1);
  
      checkstandard();
50c25fff5   Michael Krufky   V4L/DVB (3218): W...
322

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
323
324
      wgetfile($sourcefile, $url);
      unzip($sourcefile, $tmpdir);
ba5f0a4e1   Michael Krufky   V4L/DVB (3832): G...
325
326
      verify("$tmpdir/SkyNET.sys", $hash);
      extract("$tmpdir/SkyNET.sys", 331624, 5908, $outfile);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
327
328
329
  
      $outfile;
  }
04a45929e   Kirk Lapray   [PATCH] dvb: add ...
330
331
  sub nxt2004 {
      my $sourcefile = "AVerTVHD_MCE_A180_Drv_v1.2.2.16.zip";
f6a061bb0   Jan Ceuleers   V4L/DVB (11962): ...
332
      my $url = "http://www.avermedia-usa.com/support/Drivers/$sourcefile";
04a45929e   Kirk Lapray   [PATCH] dvb: add ...
333
334
335
336
337
338
339
340
341
342
343
344
345
      my $hash = "111cb885b1e009188346d72acfed024c";
      my $outfile = "dvb-fe-nxt2004.fw";
      my $tmpdir = tempdir(DIR => "/tmp", CLEANUP => 1);
  
      checkstandard();
  
      wgetfile($sourcefile, $url);
      unzip($sourcefile, $tmpdir);
      verify("$tmpdir/3xHybrid.sys", $hash);
      extract("$tmpdir/3xHybrid.sys", 465304, 9584, $outfile);
  
      $outfile;
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
346
347
  sub or51211 {
      my $fwfile = "dvb-fe-or51211.fw";
991ce92f8   Mauro Carvalho Chehab   [media] use https...
348
      my $url = "https://linuxtv.org/downloads/firmware/$fwfile";
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
349
350
351
352
353
354
355
356
357
      my $hash = "d830949c771a289505bf9eafc225d491";
  
      checkstandard();
  
      wgetfile($fwfile, $url);
      verify($fwfile, $hash);
  
      $fwfile;
  }
06e9509ff   Mauro Carvalho Chehab   V4L/DVB (11108): ...
358
359
  sub cx231xx {
      my $fwfile = "v4l-cx231xx-avcore-01.fw";
991ce92f8   Mauro Carvalho Chehab   [media] use https...
360
      my $url = "https://linuxtv.org/downloads/firmware/$fwfile";
06e9509ff   Mauro Carvalho Chehab   V4L/DVB (11108): ...
361
362
363
364
365
366
367
368
369
      my $hash = "7d3bb956dc9df0eafded2b56ba57cc42";
  
      checkstandard();
  
      wgetfile($fwfile, $url);
      verify($fwfile, $hash);
  
      $fwfile;
  }
b888c5dad   Mauro Carvalho Chehab   V4L/DVB (11136): ...
370
  sub cx18 {
991ce92f8   Mauro Carvalho Chehab   [media] use https...
371
      my $url = "https://linuxtv.org/downloads/firmware/";
b888c5dad   Mauro Carvalho Chehab   V4L/DVB (11136): ...
372
373
374
375
376
377
378
379
  
      my %files = (
  	'v4l-cx23418-apu.fw' => '588f081b562f5c653a3db1ad8f65939a',
  	'v4l-cx23418-cpu.fw' => 'b6c7ed64bc44b1a6e0840adaeac39d79',
  	'v4l-cx23418-dig.fw' => '95bc688d3e7599fd5800161e9971cc55',
      );
  
      checkstandard();
5297e6f7e   Mauro Carvalho Chehab   V4L/DVB (11137): ...
380
381
382
383
384
385
386
387
388
389
390
391
  
      my $allfiles;
      foreach my $fwfile (keys %files) {
  	wgetfile($fwfile, "$url/$fwfile");
  	verify($fwfile, $files{$fwfile});
  	$allfiles .= " $fwfile";
      }
  
      $allfiles =~ s/^\s//;
  
      $allfiles;
  }
9f38a920b   Andy Walls   V4L/DVB (12181): ...
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
  sub mpc718 {
      my $archive = 'Yuan MPC718 TV Tuner Card 2.13.10.1016.zip';
      my $url = "ftp://ftp.work.acer-euro.com/desktop/aspire_idea510/vista/Drivers/$archive";
      my $fwfile = "dvb-cx18-mpc718-mt352.fw";
      my $tmpdir = tempdir(DIR => "/tmp", CLEANUP => 1);
  
      checkstandard();
      wgetfile($archive, $url);
      unzip($archive, $tmpdir);
  
      my $sourcefile = "$tmpdir/Yuan MPC718 TV Tuner Card 2.13.10.1016/mpc718_32bit/yuanrap.sys";
      my $found = 0;
  
      open IN, '<', $sourcefile or die "Couldn't open $sourcefile to extract $fwfile data
  ";
      binmode IN;
      open OUT, '>', $fwfile;
      binmode OUT;
      {
  	# Block scope because we change the line terminator variable $/
  	my $prevlen = 0;
  	my $currlen;
  
  	# Buried in the data segment are 3 runs of almost identical
  	# register-value pairs that end in 0x5d 0x01 which is a "TUNER GO"
  	# command for the MT352.
  	# Pull out the middle run (because it's easy) of register-value
  	# pairs to make the "firmware" file.
  
  	local $/ = "\x5d\x01"; # MT352 "TUNER GO"
  
  	while (<IN>) {
  	    $currlen = length($_);
0a6843483   Andy Walls   V4L/DVB (12206): ...
425
  	    if ($prevlen == $currlen && $currlen <= 64) {
9f38a920b   Andy Walls   V4L/DVB (12181): ...
426
427
428
429
430
431
  		chop; chop; # Get rid of "TUNER GO"
  		s/^\0\0//;  # get rid of leading 00 00 if it's there
  		printf OUT "$_";
  		$found = 1;
  		last;
  	    }
0a6843483   Andy Walls   V4L/DVB (12206): ...
432
  	    $prevlen = $currlen;
9f38a920b   Andy Walls   V4L/DVB (12181): ...
433
434
435
436
437
438
439
440
441
442
443
  	}
      }
      close OUT;
      close IN;
      if (!$found) {
  	unlink $fwfile;
  	die "Couldn't find valid register-value sequence in $sourcefile for $fwfile
  ";
      }
      $fwfile;
  }
5297e6f7e   Mauro Carvalho Chehab   V4L/DVB (11137): ...
444
  sub cx23885 {
991ce92f8   Mauro Carvalho Chehab   [media] use https...
445
      my $url = "https://linuxtv.org/downloads/firmware/";
5297e6f7e   Mauro Carvalho Chehab   V4L/DVB (11137): ...
446
447
448
449
  
      my %files = (
  	'v4l-cx23885-avcore-01.fw' => 'a9f8f5d901a7fb42f552e1ee6384f3bb',
  	'v4l-cx23885-enc.fw'       => 'a9f8f5d901a7fb42f552e1ee6384f3bb',
f65a95bbf   Mauro Carvalho Chehab   V4L/DVB (11138): ...
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
      );
  
      checkstandard();
  
      my $allfiles;
      foreach my $fwfile (keys %files) {
  	wgetfile($fwfile, "$url/$fwfile");
  	verify($fwfile, $files{$fwfile});
  	$allfiles .= " $fwfile";
      }
  
      $allfiles =~ s/^\s//;
  
      $allfiles;
  }
  
  sub pvrusb2 {
991ce92f8   Mauro Carvalho Chehab   [media] use https...
467
      my $url = "https://linuxtv.org/downloads/firmware/";
f65a95bbf   Mauro Carvalho Chehab   V4L/DVB (11138): ...
468
469
  
      my %files = (
5297e6f7e   Mauro Carvalho Chehab   V4L/DVB (11137): ...
470
471
472
473
  	'v4l-cx25840.fw'           => 'dadb79e9904fc8af96e8111d9cb59320',
      );
  
      checkstandard();
b888c5dad   Mauro Carvalho Chehab   V4L/DVB (11136): ...
474
475
476
477
478
479
480
481
482
483
484
485
  
      my $allfiles;
      foreach my $fwfile (keys %files) {
  	wgetfile($fwfile, "$url/$fwfile");
  	verify($fwfile, $files{$fwfile});
  	$allfiles .= " $fwfile";
      }
  
      $allfiles =~ s/^\s//;
  
      $allfiles;
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
486
487
  sub or51132_qam {
      my $fwfile = "dvb-fe-or51132-qam.fw";
991ce92f8   Mauro Carvalho Chehab   [media] use https...
488
      my $url = "https://linuxtv.org/downloads/firmware/$fwfile";
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
489
490
491
492
493
494
495
496
497
498
499
500
      my $hash = "7702e8938612de46ccadfe9b413cb3b5";
  
      checkstandard();
  
      wgetfile($fwfile, $url);
      verify($fwfile, $hash);
  
      $fwfile;
  }
  
  sub or51132_vsb {
      my $fwfile = "dvb-fe-or51132-vsb.fw";
991ce92f8   Mauro Carvalho Chehab   [media] use https...
501
      my $url = "https://linuxtv.org/downloads/firmware/$fwfile";
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
502
503
504
505
506
507
508
509
510
      my $hash = "c16208e02f36fc439a557ad4c613364a";
  
      checkstandard();
  
      wgetfile($fwfile, $url);
      verify($fwfile, $hash);
  
      $fwfile;
  }
d8e6acf2e   Michael Krufky   V4L/DVB (3287): A...
511
  sub bluebird {
991ce92f8   Mauro Carvalho Chehab   [media] use https...
512
  	my $url = "https://linuxtv.org/download/dvb/firmware/dvb-usb-bluebird-01.fw";
d8e6acf2e   Michael Krufky   V4L/DVB (3287): A...
513
514
515
516
517
518
519
520
521
522
  	my $outfile = "dvb-usb-bluebird-01.fw";
  	my $hash = "658397cb9eba9101af9031302671f49d";
  
  	checkstandard();
  
  	wgetfile($outfile, $url);
  	verify($outfile,$hash);
  
  	$outfile;
  }
9254078c6   Antti Palosaari   V4L/DVB (12752): ...
523
524
525
  sub af9015 {
  	my $sourcefile = "download.ashx?file=57";
  	my $url = "http://www.ite.com.tw/EN/Services/$sourcefile";
4e9f56777   Antti Palosaari   V4L/DVB: get_dvb_...
526
  	my $hash = "e3f08935158038d385ad382442f4bb2d";
9254078c6   Antti Palosaari   V4L/DVB (12752): ...
527
528
  	my $outfile = "dvb-usb-af9015.fw";
  	my $tmpdir = tempdir(DIR => "/tmp", CLEANUP => 1);
4e9f56777   Antti Palosaari   V4L/DVB: get_dvb_...
529
530
  	my $fwoffset = 0x25690;
  	my $fwlength = 18725;
9254078c6   Antti Palosaari   V4L/DVB (12752): ...
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
  	my ($chunklength, $buf, $rcount);
  
  	checkstandard();
  
  	wgetfile($sourcefile, $url);
  	unzip($sourcefile, $tmpdir);
  	verify("$tmpdir/Driver/Files/AF15BDA.sys", $hash);
  
  	open INFILE, '<', "$tmpdir/Driver/Files/AF15BDA.sys";
  	open OUTFILE, '>', $outfile;
  
  	sysseek(INFILE, $fwoffset, SEEK_SET);
  	while($fwlength > 0) {
  		$chunklength = 55;
  		$chunklength = $fwlength if ($chunklength > $fwlength);
  		$rcount = sysread(INFILE, $buf, $chunklength);
  		die "Ran out of data
  " if ($rcount != $chunklength);
  		syswrite(OUTFILE, $buf);
  		sysread(INFILE, $buf, 8);
  		$fwlength -= $rcount + 8;
  	}
  
  	close OUTFILE;
  	close INFILE;
  }
e7e41d3b5   Oliver Endriss   V4L/DVB: get_dvb_...
557
558
559
560
561
562
  sub ngene {
      my $url = "http://www.digitaldevices.de/download/";
      my $file1 = "ngene_15.fw";
      my $hash1 = "d798d5a757121174f0dbc5f2833c0c85";
      my $file2 = "ngene_17.fw";
      my $hash2 = "26b687136e127b8ac24b81e0eeafc20b";
f33de4aa2   Oliver Endriss   [media] get_dvb_f...
563
564
565
      my $url2 = "http://l4m-daten.de/downloads/firmware/dvb-s2/linux/all/";
      my $file3 = "ngene_18.fw";
      my $hash3 = "ebce3ea769a53e3e0b0197c3b3f127e3";
e7e41d3b5   Oliver Endriss   V4L/DVB: get_dvb_...
566
567
568
569
570
571
572
573
  
      checkstandard();
  
      wgetfile($file1, $url . $file1);
      verify($file1, $hash1);
  
      wgetfile($file2, $url . $file2);
      verify($file2, $hash2);
f33de4aa2   Oliver Endriss   [media] get_dvb_f...
574
575
576
577
      wgetfile($file3, $url2 . $file3);
      verify($file3, $hash3);
  
      "$file1, $file2, $file3";
e7e41d3b5   Oliver Endriss   V4L/DVB: get_dvb_...
578
  }
89d328d57   Renzo Dani   V4L/DVB: Retrieve...
579
  sub az6027{
89d328d57   Renzo Dani   V4L/DVB: Retrieve...
580
      my $firmware = "dvb-usb-az6027-03.fw";
873c07da6   Renzo Dani   [media] update az...
581
      my $url = "http://linux.terratec.de/files/TERRATEC_S7/$firmware";
89d328d57   Renzo Dani   V4L/DVB: Retrieve...
582

873c07da6   Renzo Dani   [media] update az...
583
      wgetfile($firmware, $url);
89d328d57   Renzo Dani   V4L/DVB: Retrieve...
584
585
586
  
      $firmware;
  }
d2f918bba   Malcolm Priestley   V4L/DVB: Support ...
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
  
  sub lme2510_lg {
      my $sourcefile = "LMEBDA_DVBS.sys";
      my $hash = "fc6017ad01e79890a97ec53bea157ed2";
      my $outfile = "dvb-usb-lme2510-lg.fw";
      my $hasho = "caa065d5fdbd2c09ad57b399bbf55cad";
  
      checkstandard();
  
      verify($sourcefile, $hash);
      extract($sourcefile, 4168, 3841, $outfile);
      verify($outfile, $hasho);
      $outfile;
  }
  
  sub lme2510c_s7395 {
      my $sourcefile = "US2A0D.sys";
      my $hash = "b0155a8083fb822a3bd47bc360e74601";
      my $outfile = "dvb-usb-lme2510c-s7395.fw";
      my $hasho = "3a3cf1aeebd17b6ddc04cebe131e94cf";
  
      checkstandard();
  
      verify($sourcefile, $hash);
      extract($sourcefile, 37248, 3720, $outfile);
      verify($outfile, $hasho);
      $outfile;
  }
  
  sub lme2510c_s7395_old {
      my $sourcefile = "LMEBDA_DVBS7395C.sys";
      my $hash = "7572ae0eb9cdf91baabd7c0ba9e09b31";
      my $outfile = "dvb-usb-lme2510c-s7395.fw";
      my $hasho = "90430c5b435eb5c6f88fd44a9d950674";
  
      checkstandard();
  
      verify($sourcefile, $hash);
      extract($sourcefile, 4208, 3881, $outfile);
      verify($outfile, $hasho);
      $outfile;
  }
f9004df79   Oliver Endriss   [media] get_dvb_f...
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
  sub drxk {
      my $url = "http://l4m-daten.de/files/";
      my $zipfile = "DDTuner.zip";
      my $hash = "f5a37b9a20a3534997997c0b1382a3e5";
      my $tmpdir = tempdir(DIR => "/tmp", CLEANUP => 1);
      my $drvfile = "DDTuner.sys";
      my $fwfile = "drxk_a3.mc";
  
      checkstandard();
  
      wgetfile($zipfile, $url . $zipfile);
      verify($zipfile, $hash);
      unzip($zipfile, $tmpdir);
      extract("$tmpdir/$drvfile", 0x14dd8, 15634, "$fwfile");
  
      "$fwfile"
  }
6fd7dba02   Eddi De Pieri   [media] get_dvb_f...
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
  sub drxk_hauppauge_hvr930c {
      my $url = "http://www.wintvcd.co.uk/drivers/";
      my $zipfile = "HVR-9x0_5_10_325_28153_SIGNED.zip";
      my $hash = "83ab82e7e9480ec8bf1ae0155ca63c88";
      my $tmpdir = tempdir(DIR => "/tmp", CLEANUP => 1);
      my $drvfile = "HVR-900/emOEM.sys";
      my $fwfile = "dvb-usb-hauppauge-hvr930c-drxk.fw";
  
      checkstandard();
  
      wgetfile($zipfile, $url . $zipfile);
      verify($zipfile, $hash);
      unzip($zipfile, $tmpdir);
      extract("$tmpdir/$drvfile", 0x117b0, 42692, "$fwfile");
  
      "$fwfile"
  }
8b9456ae0   Mauro Carvalho Chehab   [media] em28xx: C...
663
  sub drxk_terratec_h5 {
991ce92f8   Mauro Carvalho Chehab   [media] use https...
664
      my $url = "https://linuxtv.org/downloads/firmware/";
8b9456ae0   Mauro Carvalho Chehab   [media] em28xx: C...
665
666
667
668
669
670
671
672
673
674
      my $hash = "19000dada8e2741162ccc50cc91fa7f1";
      my $fwfile = "dvb-usb-terratec-h5-drxk.fw";
  
      checkstandard();
  
      wgetfile($fwfile, $url . $fwfile);
      verify($fwfile, $hash);
  
      "$fwfile"
  }
7bdc0fb14   Martin Blumenstingl   [media] Add suppo...
675
  sub drxk_terratec_htc_stick {
8cd7085ff   Martin Blumenstingl   [media] get_dvb_f...
676
      my $url = "http://ftp.terratec.de/Receiver/Cinergy_HTC_Stick/Updates/History/";
7bdc0fb14   Martin Blumenstingl   [media] Add suppo...
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
      my $zipfile = "Cinergy_HTC_Stick_Drv_5.09.1202.00_XP_Vista_7.exe";
      my $hash = "6722a2442a05423b781721fbc069ed5e";
      my $tmpdir = tempdir(DIR => "/tmp", CLEANUP => 0);
      my $drvfile = "Cinergy HTC Stick/BDA Driver 5.09.1202.00/Windows 32 Bit/emOEM.sys";
      my $fwfile = "dvb-usb-terratec-htc-stick-drxk.fw";
  
      checkstandard();
  
      wgetfile($zipfile, $url . $zipfile);
      verify($zipfile, $hash);
      unzip($zipfile, $tmpdir);
      extract("$tmpdir/$drvfile", 0x4e5c0, 42692, "$fwfile");
  
      "$fwfile"
  }
3188d5485   Benjamin Larsson   [media] get_dvb_f...
692
  sub it9135 {
7c5e3e5f0   Bimow Chen   [media] get_dvb_f...
693
694
  	my $url = "http://www.ite.com.tw/uploads/firmware/v3.25.0.0/";
  	my $file1 = "dvb-usb-it9135-01.zip";
7330f7c15   Malcolm Priestley   [media] dvb_get_f...
695
  	my $fwfile1 = "dvb-usb-it9135-01.fw";
7c5e3e5f0   Bimow Chen   [media] get_dvb_f...
696
697
  	my $hash1 = "02fcf11174eda84745dae7e61c5ff9ba";
  	my $file2 = "dvb-usb-it9135-02.zip";
7330f7c15   Malcolm Priestley   [media] dvb_get_f...
698
  	my $fwfile2 = "dvb-usb-it9135-02.fw";
7c5e3e5f0   Bimow Chen   [media] get_dvb_f...
699
  	my $hash2 = "d5e1437dc24358578e07999475d4cac9";
7330f7c15   Malcolm Priestley   [media] dvb_get_f...
700
701
  
  	checkstandard();
7c5e3e5f0   Bimow Chen   [media] get_dvb_f...
702
703
704
705
706
707
708
  	wgetfile($file1, $url . $file1);
  	unzip($file1, "");
  	verify("$fwfile1", $hash1);
  
  	wgetfile($file2, $url . $file2);
  	unzip($file2, "");
  	verify("$fwfile2", $hash2);
7330f7c15   Malcolm Priestley   [media] dvb_get_f...
709

7c5e3e5f0   Bimow Chen   [media] get_dvb_f...
710
  	"$file1 $file2"
7330f7c15   Malcolm Priestley   [media] dvb_get_f...
711
  }
465301b10   Antti Palosaari   [media] get_dvb_f...
712
  sub tda10071 {
ead20951f   Antti Palosaari   [media] get_dvb_f...
713
      my $sourcefile = "PCTV_460e_reference.zip";
465301b10   Antti Palosaari   [media] get_dvb_f...
714
715
716
717
718
719
      my $url = "ftp://ftp.pctvsystems.com/TV/driver/PCTV%2070e%2080e%20100e%20320e%20330e%20800e/";
      my $hash = "4403de903bf2593464c8d74bbc200a57";
      my $fwfile = "dvb-fe-tda10071.fw";
      my $tmpdir = tempdir(DIR => "/tmp", CLEANUP => 1);
  
      checkstandard();
3188d5485   Benjamin Larsson   [media] get_dvb_f...
720

465301b10   Antti Palosaari   [media] get_dvb_f...
721
722
723
724
725
726
727
      wgetfile($sourcefile, $url . $sourcefile);
      verify($sourcefile, $hash);
      unzip($sourcefile, $tmpdir);
      extract("$tmpdir/PCTV\ 70e\ 80e\ 100e\ 320e\ 330e\ 800e/32\ bit/emOEM.sys", 0x67d38, 40504, $fwfile);
  
      "$fwfile";
  }
3188d5485   Benjamin Larsson   [media] get_dvb_f...
728

662f9602b   Antti Palosaari   [media] get_dvb_f...
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
  sub drxk_pctv {
      my $sourcefile = "PCTV_460e_reference.zip";
      my $url = "ftp://ftp.pctvsystems.com/TV/driver/PCTV%2070e%2080e%20100e%20320e%20330e%20800e/";
      my $hash = "4403de903bf2593464c8d74bbc200a57";
      my $fwfile = "dvb-demod-drxk-pctv.fw";
      my $tmpdir = tempdir(DIR => "/tmp", CLEANUP => 1);
  
      checkstandard();
  
      wgetfile($sourcefile, $url . $sourcefile);
      verify($sourcefile, $hash);
      unzip($sourcefile, $tmpdir);
      extract("$tmpdir/PCTV\ 70e\ 80e\ 100e\ 320e\ 330e\ 800e/32\ bit/emOEM.sys", 0x72b80, 42692, $fwfile);
  
      "$fwfile";
  }
f244e6c30   Mauro Carvalho Chehab   [media] get_dvb_f...
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
  sub sms1xxx_hcw {
      my $url = "http://steventoth.net/linux/sms1xxx/";
      my %files = (
  	'sms1xxx-hcw-55xxx-dvbt-01.fw'  => "afb6f9fb9a71d64392e8564ef9577e5a",
  	'sms1xxx-hcw-55xxx-dvbt-02.fw'  => "b44807098ba26e52cbedeadc052ba58f",
  	'sms1xxx-hcw-55xxx-isdbt-02.fw' => "dae934eeea85225acbd63ce6cfe1c9e4",
      );
  
      checkstandard();
  
      my $allfiles;
      foreach my $fwfile (keys %files) {
  	wgetfile($fwfile, "$url/$fwfile");
  	verify($fwfile, $files{$fwfile});
  	$allfiles .= " $fwfile";
      }
  
      $allfiles =~ s/^\s//;
  
      $allfiles;
  }
9ca72fa1f   Matthias Schwarzott   [media] get_dvb_f...
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
  sub si2165 {
      my $sourcefile = "model_111xxx_122xxx_driver_6_0_119_31191_WHQL.zip";
      my $url = "http://www.hauppauge.de/files/drivers/";
      my $hash = "76633e7c76b0edee47c3ba18ded99336";
      my $fwfile = "dvb-demod-si2165.fw";
      my $tmpdir = tempdir(DIR => "/tmp", CLEANUP => 1);
  
      checkstandard();
  
      wgetfile($sourcefile, $url . $sourcefile);
      verify($sourcefile, $hash);
      unzip($sourcefile, $tmpdir);
      extract("$tmpdir/Driver10/Hcw10bda.sys", 0x80788, 0x81E08-0x80788, "$tmpdir/fw1");
  
      delzero("$tmpdir/fw1","$tmpdir/fw1-1");
      #verify("$tmpdir/fw1","5e0909858fdf0b5b09ad48b9fe622e70");
  
      my $CRC="\x0A\xCC";
      my $BLOCKS_MAIN="\x27";
      open FW,">$fwfile";
      print FW "\x01\x00"; # just a version id for the driver itself
      print FW "\x9A"; # fw version
      print FW "\x00"; # padding
      print FW "$BLOCKS_MAIN"; # number of blocks of main part
      print FW "\x00"; # padding
      print FW "$CRC"; # 16bit crc value of main part
      appendfile(FW,"$tmpdir/fw1");
  
      "$fwfile";
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
  # ---------------------------------------------------------------
  # Utilities
  
  sub checkstandard {
      if (system("which unzip > /dev/null 2>&1")) {
  	die "This firmware requires the unzip command - see ftp://ftp.info-zip.org/pub/infozip/UnZip.html
  ";
      }
      if (system("which md5sum > /dev/null 2>&1")) {
  	die "This firmware requires the md5sum command - see http://www.gnu.org/software/coreutils/
  ";
      }
      if (system("which wget > /dev/null 2>&1")) {
  	die "This firmware requires the wget command - see http://wget.sunsite.dk/
  ";
      }
  }
  
  sub checkunshield {
      if (system("which unshield > /dev/null 2>&1")) {
  	die "This firmware requires the unshield command - see http://sourceforge.net/projects/synce/
  ";
      }
  }
  
  sub wgetfile {
      my ($sourcefile, $url) = @_;
  
      if (! -f $sourcefile) {
  	system("wget -O \"$sourcefile\" \"$url\"") and die "wget failed - unable to download firmware";
      }
  }
  
  sub unzip {
      my ($sourcefile, $todir) = @_;
  
      $status = system("unzip -q -o -d \"$todir\" \"$sourcefile\" 2>/dev/null" );
      if ((($status >> 8) > 2) || (($status & 0xff) != 0)) {
  	die ("unzip failed - unable to extract firmware");
      }
  }
  
  sub unshield {
      my ($sourcefile, $todir) = @_;
  
      system("unshield x -d \"$todir\" \"$sourcefile\" > /dev/null" ) and die ("unshield failed - unable to extract firmware");
  }
  
  sub verify {
      my ($filename, $hash) = @_;
      my ($testhash);
  
      open(CMD, "md5sum \"$filename\"|");
      $testhash = <CMD>;
      $testhash =~ /([a-zA-Z0-9]*)/;
      $testhash = $1;
      close CMD;
      die "Hash of extracted file does not match!
  " if ($testhash ne $hash);
  }
  
  sub copy {
      my ($from, $to) = @_;
  
      system("cp -f \"$from\" \"$to\"") and die ("cp failed");
  }
  
  sub extract {
      my ($infile, $offset, $length, $outfile) = @_;
      my ($chunklength, $buf, $rcount);
  
      open INFILE, "<$infile";
      open OUTFILE, ">$outfile";
      sysseek(INFILE, $offset, SEEK_SET);
      while($length > 0) {
  	# Calc chunk size
  	$chunklength = 2048;
  	$chunklength = $length if ($chunklength > $length);
  
  	$rcount = sysread(INFILE, $buf, $chunklength);
  	die "Ran out of data
  " if ($rcount != $chunklength);
  	syswrite(OUTFILE, $buf);
  	$length -= $rcount;
      }
      close INFILE;
      close OUTFILE;
  }
  
  sub appendfile {
      my ($FH, $infile) = @_;
      my ($buf);
  
      open INFILE, "<$infile";
      while(1) {
  	$rcount = sysread(INFILE, $buf, 2048);
  	last if ($rcount == 0);
  	print $FH $buf;
      }
      close(INFILE);
  }
59800555f   Marco Gittler   V4L/DVB (5829): F...
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
  sub delzero{
  	my ($infile,$outfile) =@_;
  
  	open INFILE,"<$infile";
  	open OUTFILE,">$outfile";
  	while (1){
  		$rcount=sysread(INFILE,$buf,22);
  		$len=ord(substr($buf,0,1));
  		print OUTFILE substr($buf,0,1);
  		print OUTFILE substr($buf,2,$len+3);
  	last if ($rcount<1);
  	printf OUTFILE "%c",0;
  #print $len." ".length($buf)."
  ";
  
  	}
  	close(INFILE);
  	close(OUTFILE);
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
916
917
918
919
920
  sub syntax() {
      print STDERR "syntax: get_dvb_firmware <component>
  ";
      print STDERR "Supported components:
  ";
87147ff03   Oliver Endriss   V4L/DVB: get_dvb_...
921
      @components = sort @components;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
922
923
924
925
926
927
      for($i=0; $i < scalar(@components); $i++) {
  	print STDERR "\t" . $components[$i] . "
  ";
      }
      exit(1);
  }