From patchwork Sun Jun 7 17:31:10 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jan Ceuleers X-Patchwork-Id: 28524 X-Patchwork-Delegate: dougsland@redhat.com Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n57HVoc2014282 for ; Sun, 7 Jun 2009 17:31:50 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753190AbZFGRbp (ORCPT ); Sun, 7 Jun 2009 13:31:45 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753459AbZFGRbp (ORCPT ); Sun, 7 Jun 2009 13:31:45 -0400 Received: from mailrelay009.isp.belgacom.be ([195.238.6.176]:5725 "EHLO mailrelay009.isp.belgacom.be" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753190AbZFGRbp (ORCPT ); Sun, 7 Jun 2009 13:31:45 -0400 X-Belgacom-Dynamic: yes X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AuQEAG+WK0pbtYJT/2dsb2JhbACBT8g9hAoF Received: from 83.130-181-91.adsl-dyn.isp.belgacom.be (HELO via.xperim.be) ([91.181.130.83]) by relay.skynet.be with ESMTP; 07 Jun 2009 19:31:45 +0200 Received: from [192.168.1.4] (athloroad.xperim.be [192.168.1.4]) (authenticated bits=0) by via.xperim.be (8.14.2/8.14.2/Debian-2build1) with ESMTP id n57HVD1v006709 for ; Sun, 7 Jun 2009 19:31:14 +0200 Received: from 127.0.0.1 (AVG SMTP 8.5.339 [270.12.54/2159]); Sun, 07 Jun 2009 19:31:11 +0200 Message-ID: <4A2BF95E.8040009@computer.org> Date: Sun, 07 Jun 2009 19:31:10 +0200 From: Jan Ceuleers User-Agent: Thunderbird 2.0.0.21 (Windows/20090302) MIME-Version: 1.0 To: linux-media@vger.kernel.org Subject: Broken link in get_dvb_firmware for nxt2004 (A180) Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org Hi! I read the following on the mythtv-users mailing list, and I'd just like to make sure that you guys are aware of it as well. The script get_dvb_firmware no longer works for obtaining the nxt2004 firmware because AVer have reorganised their websites. The wanted file is now available from the following URL: http://www.avermedia-usa.com/support/Drivers/AVerTVHD_MCE_A180_Drv_v1.2.2.16.zip The patch is therefore as follows (this is against 2.6.29; inlined and attached). Note that I don't subscribe to the mailing list. Cheers, Jan --- linux-2.6.29/Documentation/dvb/get_dvb_firmware.orig 2009-06-07 14:38:20.000000000 +0200 +++ linux-2.6.29/Documentation/dvb/get_dvb_firmware 2009-06-07 14:38:55.000000000 +0200 @@ -317,7 +317,7 @@ sub nxt2004 { my $sourcefile = "AVerTVHD_MCE_A180_Drv_v1.2.2.16.zip"; - my $url = "http://www.aver.com/support/Drivers/$sourcefile"; + my $url = "http://www.avermedia-usa.com/support/Drivers/$sourcefile"; my $hash = "111cb885b1e009188346d72acfed024c"; my $outfile = "dvb-fe-nxt2004.fw"; my $tmpdir = tempdir(DIR => "/tmp", CLEANUP => 1); --- linux-2.6.29/Documentation/dvb/get_dvb_firmware.orig 2009-06-07 14:38:20.000000000 +0200 +++ linux-2.6.29/Documentation/dvb/get_dvb_firmware 2009-06-07 14:38:55.000000000 +0200 @@ -317,7 +317,7 @@ sub nxt2004 { my $sourcefile = "AVerTVHD_MCE_A180_Drv_v1.2.2.16.zip"; - my $url = "http://www.aver.com/support/Drivers/$sourcefile"; + my $url = "http://www.avermedia-usa.com/support/Drivers/$sourcefile"; my $hash = "111cb885b1e009188346d72acfed024c"; my $outfile = "dvb-fe-nxt2004.fw"; my $tmpdir = tempdir(DIR => "/tmp", CLEANUP => 1);