aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/dvb
diff options
context:
space:
mode:
authorAntti Palosaari <crope@iki.fi>2011-08-01 22:34:58 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2011-09-21 09:08:19 -0400
commit465301b10f592bf902650b8d70df8fe10f9d3769 (patch)
tree69ff840957674ba7e441ed103cde6e2555b679e5 /Documentation/dvb
parentee03a6795e6a303e498e1c87e1e5d3702258e329 (diff)
[media] get_dvb_firmware: add dvb-fe-tda10071.fw
TDA10071 firmware version 1.21.31.2 Signed-off-by: Antti Palosaari <crope@iki.fi> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'Documentation/dvb')
-rwxr-xr-xDocumentation/dvb/get_dvb_firmware17
1 files changed, 16 insertions, 1 deletions
diff --git a/Documentation/dvb/get_dvb_firmware b/Documentation/dvb/get_dvb_firmware
index 65ebe20b4b86..f1b27e26c30f 100755
--- a/Documentation/dvb/get_dvb_firmware
+++ b/Documentation/dvb/get_dvb_firmware
@@ -27,7 +27,7 @@ use IO::Handle;
27 "or51211", "or51132_qam", "or51132_vsb", "bluebird", 27 "or51211", "or51132_qam", "or51132_vsb", "bluebird",
28 "opera1", "cx231xx", "cx18", "cx23885", "pvrusb2", "mpc718", 28 "opera1", "cx231xx", "cx18", "cx23885", "pvrusb2", "mpc718",
29 "af9015", "ngene", "az6027", "lme2510_lg", "lme2510c_s7395", 29 "af9015", "ngene", "az6027", "lme2510_lg", "lme2510c_s7395",
30 "lme2510c_s7395_old", "drxk", "drxk_terratec_h5", 30 "lme2510c_s7395_old", "drxk", "drxk_terratec_h5", "tda10071",
31 "it9135" ); 31 "it9135" );
32 32
33# Check args 33# Check args
@@ -684,7 +684,22 @@ sub it9135 {
684 "$fwfile" 684 "$fwfile"
685} 685}
686 686
687sub tda10071 {
688 my $sourcefile = "PCTV%2070e%2080e%20100e%20320e%20330e%20800e%20880e.zip";
689 my $url = "ftp://ftp.pctvsystems.com/TV/driver/PCTV%2070e%2080e%20100e%20320e%20330e%20800e/";
690 my $hash = "4403de903bf2593464c8d74bbc200a57";
691 my $fwfile = "dvb-fe-tda10071.fw";
692 my $tmpdir = tempdir(DIR => "/tmp", CLEANUP => 1);
693
694 checkstandard();
687 695
696 wgetfile($sourcefile, $url . $sourcefile);
697 verify($sourcefile, $hash);
698 unzip($sourcefile, $tmpdir);
699 extract("$tmpdir/PCTV\ 70e\ 80e\ 100e\ 320e\ 330e\ 800e/32\ bit/emOEM.sys", 0x67d38, 40504, $fwfile);
700
701 "$fwfile";
702}
688 703
689# --------------------------------------------------------------- 704# ---------------------------------------------------------------
690# Utilities 705# Utilities