aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/dvb
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@redhat.com>2009-03-23 10:46:19 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2009-03-30 11:43:31 -0400
commit5297e6f7e9818a43228f6b4131c4630f08075093 (patch)
tree1575126c13066eaf309b115d5c882632badfa4ec /Documentation/dvb
parentb888c5dadb4ae409964bd7b9bedfac507ab10972 (diff)
V4L/DVB (11137): get_dvb_firmware: add cx23885 firmwares
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'Documentation/dvb')
-rw-r--r--Documentation/dvb/get_dvb_firmware23
1 files changed, 23 insertions, 0 deletions
diff --git a/Documentation/dvb/get_dvb_firmware b/Documentation/dvb/get_dvb_firmware
index 2d32590a1f68..7e485eabda7d 100644
--- a/Documentation/dvb/get_dvb_firmware
+++ b/Documentation/dvb/get_dvb_firmware
@@ -381,6 +381,29 @@ sub cx18 {
381 $allfiles; 381 $allfiles;
382} 382}
383 383
384sub cx23885 {
385 my $url = "http://linuxtv.org/downloads/firmware/";
386
387 my %files = (
388 'v4l-cx23885-avcore-01.fw' => 'a9f8f5d901a7fb42f552e1ee6384f3bb',
389 'v4l-cx23885-enc.fw' => 'a9f8f5d901a7fb42f552e1ee6384f3bb',
390 'v4l-cx25840.fw' => 'dadb79e9904fc8af96e8111d9cb59320',
391 );
392
393 checkstandard();
394
395 my $allfiles;
396 foreach my $fwfile (keys %files) {
397 wgetfile($fwfile, "$url/$fwfile");
398 verify($fwfile, $files{$fwfile});
399 $allfiles .= " $fwfile";
400 }
401
402 $allfiles =~ s/^\s//;
403
404 $allfiles;
405}
406
384sub or51132_qam { 407sub or51132_qam {
385 my $fwfile = "dvb-fe-or51132-qam.fw"; 408 my $fwfile = "dvb-fe-or51132-qam.fw";
386 my $url = "http://linuxtv.org/downloads/firmware/$fwfile"; 409 my $url = "http://linuxtv.org/downloads/firmware/$fwfile";