Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 181659
b: refs/heads/master
c: e7e41d3
h: refs/heads/master
i:
  181657: d77a023
  181655: 773deb5
v: v3
  • Loading branch information
Oliver Endriss authored and Mauro Carvalho Chehab committed Feb 26, 2010
1 parent 73eb7dd commit 517b0fc
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: 6fd2d0f924e352e50a35ac9d9534ccc91b5c9bb9
refs/heads/master: e7e41d3b59877475e4c19ddd0d33cb3ef5298f87
20 changes: 19 additions & 1 deletion trunk/Documentation/dvb/get_dvb_firmware
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ use IO::Handle;
"dec3000s", "vp7041", "dibusb", "nxt2002", "nxt2004",
"or51211", "or51132_qam", "or51132_vsb", "bluebird",
"opera1", "cx231xx", "cx18", "cx23885", "pvrusb2", "mpc718",
"af9015");
"af9015", "ngene");

# Check args
syntax() if (scalar(@ARGV) != 1);
Expand Down Expand Up @@ -549,6 +549,24 @@ sub af9015 {
close INFILE;
}

sub ngene {
my $url = "http://www.digitaldevices.de/download/";
my $file1 = "ngene_15.fw";
my $hash1 = "d798d5a757121174f0dbc5f2833c0c85";
my $file2 = "ngene_17.fw";
my $hash2 = "26b687136e127b8ac24b81e0eeafc20b";

checkstandard();

wgetfile($file1, $url . $file1);
verify($file1, $hash1);

wgetfile($file2, $url . $file2);
verify($file2, $hash2);

"$file1, $file2";
}

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

Expand Down

0 comments on commit 517b0fc

Please sign in to comment.