EzCap DVB T Stick: Difference between revisions
No edit summary |
No edit summary |
||
Line 36: | Line 36: | ||
<pre>sudo apt-get install build-essential linux-headers-2.6.35-25-generic linux-source-2.6.35 kernel-package</pre> |
<pre>sudo apt-get install build-essential linux-headers-2.6.35-25-generic linux-source-2.6.35 kernel-package</pre> |
||
Extract the source, |
|||
⚫ | |||
<pre> |
|||
cd /usr/src |
|||
⚫ | |||
</pre> |
|||
<pre> |
<pre> |
||
Line 47: | Line 52: | ||
ln -s /usr/src/linux-source-2.6.35/linux-source-2.6.35/drivers/media/dvb/dvb-usb/*.h . |
ln -s /usr/src/linux-source-2.6.35/linux-source-2.6.35/drivers/media/dvb/dvb-usb/*.h . |
||
cd .. |
cd .. |
||
</pre> |
|||
Now run the manufacturer's installer, |
|||
<pre> |
|||
sudo ./installer.sh |
sudo ./installer.sh |
||
</pre> |
</pre> |
||
If you run |
If you run, |
||
<pre>dmesg</pre> |
<pre>dmesg</pre> |
||
You should see, |
|||
<pre> |
<pre> |
||
DRIVER_RELEASE_VERSION : v9.08.14.1 |
DRIVER_RELEASE_VERSION : v9.08.14.1 |
Revision as of 20:22, 15 February 2011
Afatech USB 2.0 DVB-T Stick is a USB 2.0 DVB-T device.
did | vendor | device | standard | supported | pic | url | hostinterface | usbid | hw | tuner | demodulator | usbbridge | fw | comment | E |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
ezcap-afatech-9035 | EzCap | DVB-T USB2.0 stick | DVB-T | ✔ Yes, but see device page for details. | USB2.0 | 15a4:1001 | Afatech AF9035 | fc0011 | af9035 | af903x | Sold as Infinity PC-TV Nano DVB-T USB stick (at least in Croatia) and as Blaze HDTV Tuner in Australia. An EzCAP USB 2.0 DVB-T Stick exist with rtl2832u chipset. |
Based on:
- Afatech AF9035
- Fiti Power FC0011
Begin Michael Lamothe's Notes
I picked up this device in Australia from Dick Smith Electronics (DSE) labelled "Gadget Geek". Have tested this in Maverick using Me TV.
Also, on sale in Australia inside a box which says Blaze HDTV Tuner, inside which is another package which says MinTV DVB-T Stick.
Install instructions for using alternate manufacturer driver
I've pre-hacked the manufacturer's driver:
- The source extracted from the manufactuter's driver
- The missing crystal frequencies commented out from line 178-187
- Commented out #include <autoconf.h> from api/usb2impl.c
First up, you'll need a working build environment, the kernel-headers and the kernel-source. If you don't know which kernel you're running, you can find out with
uname -r
sudo apt-get install build-essential linux-headers-2.6.35-25-generic linux-source-2.6.35 kernel-package
Extract the source,
cd /usr/src sudo tar jxvf /usr/src/linux-source-2.6.35.tar.bz2
wget http://me-tv.googlecode.com/files/AF903x.tar.gz tar zxvf AF903x.tar.gz cd installer cd AF903x_SRC ln -s /usr/src/linux-source-2.6.35/linux-source-2.6.35/drivers/media/dvb/frontends/*.h . ln -s /usr/src/linux-source-2.6.35/linux-source-2.6.35/drivers/media/dvb/dvb-core/*.h . ln -s /usr/src/linux-source-2.6.35/linux-source-2.6.35/drivers/media/dvb/dvb-usb/*.h . cd ..
Now run the manufacturer's installer,
sudo ./installer.sh
If you run,
dmesg
You should see,
DRIVER_RELEASE_VERSION : v9.08.14.1 FW_RELEASE_VERSION : v8_8_63_0 API_RELEASE_VERSION : 200.20090402.0 usbcore: registered new interface driver hiddev dvb-usb: found a 'ITEtech USB2.0 DVB-T Recevier' in warm state. dvb-usb: will pass the complete MPEG2 transport stream to the software demuxer. DVB: registering new adapter (ITEtech USB2.0 DVB-T Recevier) DVB: registering adapter 0 frontend 0 (AF903X USB DVB-T)..
End Michael Lamothe's notes
Beware if you have more than one DVB adapter, though. It seem like the dvb_af903x driver can't tune if it isn't adapter 0, at least not in my system. In my case, I also have a Hauppauge PCI DVB-T card that always got installed as adapter 0, with the Afatech as adapter 1. With the Hauppauge card installed, the Afatech would always fail at tuning. With it removed, it worked. I got around this by blacklisting the cx88_dvb, cx88xx, cx8800 and cx8802 modules and loading them manually after the dvb_af903x had loaded. Now, with the Afatech as adapter 0 and the Hauppauge as adapter 1, both work great.
Might simply be some specific incompatibility between the Hauppauge driver and the Afatech, but I thought a heads up might be in place.
General important note! (1) USB DVB is wrongly identified as a HID device
Most Linuxes improperly identify this USB stick as USB HID, which it is not! This leads to driver conflicts. When looking into:
dmesg
There is mention of a HID device, by default, after plugging in the stick.
This has to be done, in order to remedy this:
- 1. /etc/modprobe.d/usbhid.conf needs to have the line (for module version):
options usbhid quirks=0x15a4:0x1001:0x0004
This line ignores this ID from HID devices! If there is a real physical USB device present, which is HID, i.e. keyboard, mouse (funny, this should never have happened, according to the specification, that two or more devices share the same USB ID!), it must not be 15a4:1001, or it will be ignored!
- 2. if HID driver is incorporated into kernel, these boot parameters must be appended:
usbhid.quirks=0x15a4:0x1001:0x0004
this goes in, i.e. /boot/grub/menu.lst (grub.conf) , or other means of linux bootconfig.
- 3. Reboot, just in case. :) Or, unload and reload the usbhid module, in order for the changes to take effect!
General important note! (2) in order to compile, install or even load modules, root privileges might be required
Albeit making may look successfull, even if performed from non-root privileges, the resulting module might cause the error of being invalid module, when loaded!
So, just to be sure, substitute:
make sudo make install depmod -a
with:
sudo make sudo make install sudo depmod -a
also:
sudo modprobe dvb_af903x
(Note for Infinity Nano (as of september 2010 deprecated) :or
sudo modprobe dvb_usb_af903x
respectivelly.End note for Infinity Nano )
Happy TV-viewing.