diff options
author | Renzo Dani <arons7@gmail.com> | 2011-10-09 06:43:50 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2011-10-14 10:29:45 -0300 |
commit | 873c07da6abd5519a7850caa90f226d3b15e3fba (patch) | |
tree | 6f333b3ea087e587b8a3c2a50c6366b419b6d805 /Documentation/dvb | |
parent | 39342dbb27323f174b286c9e19b9687d492b2d1a (diff) | |
download | linux-873c07da6abd5519a7850caa90f226d3b15e3fba.tar.bz2 |
[media] update az6027 firmware URL
Signed-off-by: Renzo Dani <arons7@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'Documentation/dvb')
-rwxr-xr-x | Documentation/dvb/get_dvb_firmware | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/Documentation/dvb/get_dvb_firmware b/Documentation/dvb/get_dvb_firmware index 996f5786099f..e67be7afc78b 100755 --- a/Documentation/dvb/get_dvb_firmware +++ b/Documentation/dvb/get_dvb_firmware @@ -576,19 +576,10 @@ sub ngene { } sub az6027{ - my $file = "AZ6027_Linux_Driver.tar.gz"; - my $url = "http://linux.terratec.de/files/$file"; my $firmware = "dvb-usb-az6027-03.fw"; + my $url = "http://linux.terratec.de/files/TERRATEC_S7/$firmware"; - wgetfile($file, $url); - - #untar - if( system("tar xzvf $file $firmware")){ - die "failed to untar firmware"; - } - if( system("rm $file")){ - die ("unable to remove unnecessary files"); - } + wgetfile($firmware, $url); $firmware; } |