Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 320095
b: refs/heads/master
c: f244e6c
h: refs/heads/master
i:
  320093: 0e009a1
  320091: 8ae10a8
  320087: 93def9d
  320079: 5386a34
  320063: 0c9ad7c
v: v3
  • Loading branch information
Mauro Carvalho Chehab committed Jul 6, 2012
1 parent 95d6a02 commit 59d63bf
Show file tree
Hide file tree
Showing 2 changed files with 24 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: cc831f843c807ac9050707f7b2c403f9c400a197
refs/heads/master: f244e6c308be3acc445719f0fd72b5fb182c0895
24 changes: 23 additions & 1 deletion trunk/Documentation/dvb/get_dvb_firmware
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ use IO::Handle;
"af9015", "ngene", "az6027", "lme2510_lg", "lme2510c_s7395",
"lme2510c_s7395_old", "drxk", "drxk_terratec_h5",
"drxk_hauppauge_hvr930c", "tda10071", "it9135", "it9137",
"drxk_pctv", "drxk_terratec_htc_stick");
"drxk_pctv", "drxk_terratec_htc_stick", "sms1xxx_hcw");

# Check args
syntax() if (scalar(@ARGV) != 1);
Expand Down Expand Up @@ -766,6 +766,28 @@ sub drxk_pctv {
"$fwfile";
}

sub sms1xxx_hcw {
my $url = "http://steventoth.net/linux/sms1xxx/";
my %files = (
'sms1xxx-hcw-55xxx-dvbt-01.fw' => "afb6f9fb9a71d64392e8564ef9577e5a",
'sms1xxx-hcw-55xxx-dvbt-02.fw' => "b44807098ba26e52cbedeadc052ba58f",
'sms1xxx-hcw-55xxx-isdbt-02.fw' => "dae934eeea85225acbd63ce6cfe1c9e4",
);

checkstandard();

my $allfiles;
foreach my $fwfile (keys %files) {
wgetfile($fwfile, "$url/$fwfile");
verify($fwfile, $files{$fwfile});
$allfiles .= " $fwfile";
}

$allfiles =~ s/^\s//;

$allfiles;
}

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

Expand Down

0 comments on commit 59d63bf

Please sign in to comment.