diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-03-19 12:10:00 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-03-19 12:10:00 -0300 |
commit | 6c0cd349e6b4c7acb396fa33b8908bb28899baa9 (patch) | |
tree | 6fe620b855123e021e6544b4db56423eb5e0da14 /linux/Documentation/dvb | |
parent | 0cd1beb257bdf53499b6b32571f23b3aef2a252f (diff) | |
download | mediapointer-dvb-s2-6c0cd349e6b4c7acb396fa33b8908bb28899baa9.tar.gz mediapointer-dvb-s2-6c0cd349e6b4c7acb396fa33b8908bb28899baa9.tar.bz2 |
get_dvb_firmware: Add option to download firmware for cx231xx
From: Mauro Carvalho Chehab <mchehab@redhat.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'linux/Documentation/dvb')
-rw-r--r--[-rwxr-xr-x] | linux/Documentation/dvb/get_dvb_firmware | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/linux/Documentation/dvb/get_dvb_firmware b/linux/Documentation/dvb/get_dvb_firmware index f2e908d7f..72455b6d9 100755..100644 --- a/linux/Documentation/dvb/get_dvb_firmware +++ b/linux/Documentation/dvb/get_dvb_firmware @@ -25,7 +25,7 @@ use IO::Handle; "tda10046lifeview", "av7110", "dec2000t", "dec2540t", "dec3000s", "vp7041", "dibusb", "nxt2002", "nxt2004", "or51211", "or51132_qam", "or51132_vsb", "bluebird", - "opera1"); + "opera1", "cx231xx"); # Check args syntax() if (scalar(@ARGV) != 1); @@ -345,6 +345,19 @@ sub or51211 { $fwfile; } +sub cx231xx { + my $fwfile = "v4l-cx231xx-avcore-01.fw"; + my $url = "http://linuxtv.org/downloads/firmware/$fwfile"; + my $hash = "7d3bb956dc9df0eafded2b56ba57cc42"; + + checkstandard(); + + wgetfile($fwfile, $url); + verify($fwfile, $hash); + + $fwfile; +} + sub or51132_qam { my $fwfile = "dvb-fe-or51132-qam.fw"; my $url = "http://linuxtv.org/downloads/firmware/$fwfile"; |