mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 04:18:39 +08:00
[media] get_dvb_firmware: Get DRX-K firmware for Digital Devices DVB-CT cards
Get DRX-K firmware for Digital Devices DVB-CT cards Signed-off-by: Oliver Endriss <o.endriss@gmx.de> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
f678c3b69a
commit
f9004df79f
@ -27,7 +27,7 @@ use IO::Handle;
|
|||||||
"or51211", "or51132_qam", "or51132_vsb", "bluebird",
|
"or51211", "or51132_qam", "or51132_vsb", "bluebird",
|
||||||
"opera1", "cx231xx", "cx18", "cx23885", "pvrusb2", "mpc718",
|
"opera1", "cx231xx", "cx18", "cx23885", "pvrusb2", "mpc718",
|
||||||
"af9015", "ngene", "az6027", "lme2510_lg", "lme2510c_s7395",
|
"af9015", "ngene", "az6027", "lme2510_lg", "lme2510c_s7395",
|
||||||
"lme2510c_s7395_old");
|
"lme2510c_s7395_old", "drxk");
|
||||||
|
|
||||||
# Check args
|
# Check args
|
||||||
syntax() if (scalar(@ARGV) != 1);
|
syntax() if (scalar(@ARGV) != 1);
|
||||||
@ -634,6 +634,24 @@ sub lme2510c_s7395_old {
|
|||||||
$outfile;
|
$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
|
# Utilities
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user