Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 271669
b: refs/heads/master
c: 3188d54
h: refs/heads/master
i:
  271667: 5ec700b
v: v3
  • Loading branch information
Benjamin Larsson authored and Mauro Carvalho Chehab committed Aug 27, 2011
1 parent 723a204 commit 24b5eb2
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f6d8735493eb02248bc7d7b05d5967f9a68b5c44
refs/heads/master: 3188d5485e8a0650fd877a54ada70581c29cd505
23 changes: 22 additions & 1 deletion trunk/Documentation/dvb/get_dvb_firmware
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ use IO::Handle;
"or51211", "or51132_qam", "or51132_vsb", "bluebird",
"opera1", "cx231xx", "cx18", "cx23885", "pvrusb2", "mpc718",
"af9015", "ngene", "az6027", "lme2510_lg", "lme2510c_s7395",
"lme2510c_s7395_old", "drxk", "drxk_terratec_h5");
"lme2510c_s7395_old", "drxk", "drxk_terratec_h5",
"it9135" );

# Check args
syntax() if (scalar(@ARGV) != 1);
Expand Down Expand Up @@ -665,6 +666,26 @@ sub drxk_terratec_h5 {
"$fwfile"
}

sub it9135 {
my $url = "http://kworld.server261.com/kworld/CD/ITE_TiVme/V1.00/";
my $zipfile = "Driver_V10.323.1.0412.100412.zip";
my $hash = "79b597dc648698ed6820845c0c9d0d37";
my $tmpdir = tempdir(DIR => "/tmp", CLEANUP => 0);
my $drvfile = "Driver_V10.323.1.0412.100412/Data/x86/IT9135BDA.sys";
my $fwfile = "dvb-usb-it9137-01.fw";

checkstandard();

wgetfile($zipfile, $url . $zipfile);
verify($zipfile, $hash);
unzip($zipfile, $tmpdir);
extract("$tmpdir/$drvfile", 69632, 5731, "$fwfile");

"$fwfile"
}



# ---------------------------------------------------------------
# Utilities

Expand Down

0 comments on commit 24b5eb2

Please sign in to comment.