From mboxrd@z Thu Jan 1 00:00:00 1970 Return-path: Received: from mail-lpp01m010-f46.google.com ([209.85.215.46]:57921 "EHLO mail-lpp01m010-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752550Ab1LOIEy (ORCPT ); Thu, 15 Dec 2011 03:04:54 -0500 Received: by lagp5 with SMTP id p5so805713lag.19 for ; Thu, 15 Dec 2011 00:04:53 -0800 (PST) Message-ID: <4EE9AA21.1060101@gmail.com> Date: Thu, 15 Dec 2011 09:04:50 +0100 From: Fredrik Lingvall MIME-Version: 1.0 To: Mihai Dobrescu CC: linux-media@vger.kernel.org Subject: Re: Hauppauge HVR-930C problems References: In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-media-owner@vger.kernel.org List-ID: On 12/14/11 17:33, Mihai Dobrescu wrote: > Hello, > > I need to make my tunner working too. > Did you make it work? > Where did you get the firmware (dvb-usb-hauppauge-hvr930c-drxk.fw)? > I have Sabayon 7 64 bit, which is sort of Gentoo, as I've seen you have. > > Thank you. Hi Mihai, There is a perl script get_dvb_firmware that downloads the firmware and extract it (from the Windows driver I think). You need a version of get_dvb_firmware where this has been added: +sub drxk_hauppauge_hvr930c { + my $url = "http://www.wintvcd.co.uk/drivers/"; + my $zipfile = "HVR-9x0_5_10_325_28153_SIGNED.zip"; + my $hash = "83ab82e7e9480ec8bf1ae0155ca63c88"; + my $tmpdir = tempdir(DIR => "/tmp", CLEANUP => 1); + my $drvfile = "HVR-900/emOEM.sys"; + my $fwfile = "dvb-usb-hauppauge-hvr930c-drxk.fw"; + + checkstandard(); + + wgetfile($zipfile, $url . $zipfile); + verify($zipfile, $hash); + unzip($zipfile, $tmpdir); + extract("$tmpdir/$drvfile", 0x117b0, 42692, "$fwfile"); + + "$fwfile" +} + Do a git checkout of the linux-media tree to get it (I think). Also, before I found the perl script I did it "manually" using: 1) wget http://www.wintvcd.co.uk/drivers/HVR-9x0_5_10_325_28153_SIGNED.zip 2) unzip it 3) extact it with dd [0x117b (hex) = 71600 (dec)]: dd if=HVR-900/emOEM.sys of=dvb-usb-hauppauge-hvr930c-drxk.fw bs=1 skip=71600 count=42692 4) copy it to the firmware dir cp dvb-usb-hauppauge-hvr930c-drxk.fw /lib/firmware/' HTH /Fredrik