diff options
-rwxr-xr-x | Documentation/dvb/get_dvb_firmware | 17 |
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 | ||
687 | sub 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 |