summaryrefslogtreecommitdiff
path: root/linux/Documentation/dvb
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@redhat.com>2009-03-23 11:46:19 -0300
committerMauro Carvalho Chehab <mchehab@redhat.com>2009-03-23 11:46:19 -0300
commitccbf32071ba578042cae1dad36f883ea45e7d987 (patch)
treed045dc81e98ec62b2bbfdb8114ca3448867d31d2 /linux/Documentation/dvb
parent7c1f2c9a5f8f1a50aaea61b73baf7da9d50c959c (diff)
downloadmediapointer-dvb-s2-ccbf32071ba578042cae1dad36f883ea45e7d987.tar.gz
mediapointer-dvb-s2-ccbf32071ba578042cae1dad36f883ea45e7d987.tar.bz2
get_dvb_firmware: add cx23885 firmwares
From: Mauro Carvalho Chehab <mchehab@redhat.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'linux/Documentation/dvb')
-rwxr-xr-xlinux/Documentation/dvb/get_dvb_firmware23
1 files changed, 23 insertions, 0 deletions
diff --git a/linux/Documentation/dvb/get_dvb_firmware b/linux/Documentation/dvb/get_dvb_firmware
index 2d32590a1..7e485eabd 100755
--- a/linux/Documentation/dvb/get_dvb_firmware
+++ b/linux/Documentation/dvb/get_dvb_firmware
@@ -381,6 +381,29 @@ sub cx18 {
$allfiles;
}
+sub cx23885 {
+ my $url = "http://linuxtv.org/downloads/firmware/";
+
+ my %files = (
+ 'v4l-cx23885-avcore-01.fw' => 'a9f8f5d901a7fb42f552e1ee6384f3bb',
+ 'v4l-cx23885-enc.fw' => 'a9f8f5d901a7fb42f552e1ee6384f3bb',
+ 'v4l-cx25840.fw' => 'dadb79e9904fc8af96e8111d9cb59320',
+ );
+
+ checkstandard();
+
+ my $allfiles;
+ foreach my $fwfile (keys %files) {
+ wgetfile($fwfile, "$url/$fwfile");
+ verify($fwfile, $files{$fwfile});
+ $allfiles .= " $fwfile";
+ }
+
+ $allfiles =~ s/^\s//;
+
+ $allfiles;
+}
+
sub or51132_qam {
my $fwfile = "dvb-fe-or51132-qam.fw";
my $url = "http://linuxtv.org/downloads/firmware/$fwfile";