Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 261478
b: refs/heads/master
c: f9004df
h: refs/heads/master
v: v3
  • Loading branch information
Oliver Endriss authored and Mauro Carvalho Chehab committed Jul 27, 2011
1 parent 6f8803d commit f2ccad4
Show file tree
Hide file tree
Showing 2 changed files with 20 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: f678c3b69a416bb320c8a251583ccaec64574b56
refs/heads/master: f9004df79ffd361312d4b5d237d56c2f64caa1a3
20 changes: 19 additions & 1 deletion trunk/Documentation/dvb/get_dvb_firmware
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ 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");
"lme2510c_s7395_old", "drxk");

# Check args
syntax() if (scalar(@ARGV) != 1);
Expand Down Expand Up @@ -634,6 +634,24 @@ sub lme2510c_s7395_old {
$outfile;
}

sub drxk {
my $url = "http://l4m-daten.de/files/";
my $zipfile = "DDTuner.zip";
my $hash = "f5a37b9a20a3534997997c0b1382a3e5";
my $tmpdir = tempdir(DIR => "/tmp", CLEANUP => 1);
my $drvfile = "DDTuner.sys";
my $fwfile = "drxk_a3.mc";

checkstandard();

wgetfile($zipfile, $url . $zipfile);
verify($zipfile, $hash);
unzip($zipfile, $tmpdir);
extract("$tmpdir/$drvfile", 0x14dd8, 15634, "$fwfile");

"$fwfile"
}

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

Expand Down

0 comments on commit f2ccad4

Please sign in to comment.