Difference between revisions of "HowTo/InstallTwintechUT40"

From LunaSys
Jump to navigation Jump to search
(Created page with " apt-get install build-essential linux-source-3.2 cd /usr/src tar xjvf linux-source-3.2.tar.bz2 Check out a copy of the driver source code patched by ambrosa: git clone h...")
 
Line 1: Line 1:
 +
=== Installation ===
 +
 
  apt-get install build-essential linux-source-3.2
 
  apt-get install build-essential linux-source-3.2
 
  cd /usr/src
 
  cd /usr/src
 
  tar xjvf linux-source-3.2.tar.bz2
 
  tar xjvf linux-source-3.2.tar.bz2
  
Check out a copy of the driver source code patched by ambrosa:
+
Check out the driver source code patched by ambrosa:
  
 
  git clone https://github.com/ambrosa/DVB-Realtek-RTL2832U-2.2.2-10tuner-mod_kernel-3.0.0
 
  git clone https://github.com/ambrosa/DVB-Realtek-RTL2832U-2.2.2-10tuner-mod_kernel-3.0.0
Line 31: Line 33:
 
  make install
 
  make install
 
  modprobe dvb_usb_rtl2832u
 
  modprobe dvb_usb_rtl2832u
 +
 +
=== Sources ===
 +
 +
[http://linbay.blogspot.fr/2012/05/hassle-almost-free-rtl2832u-linux.html]
 +
[http://askubuntu.com/questions/70382/installing-dvb-t-afatech-af9035]

Revision as of 23:14, 1 April 2013

Installation

apt-get install build-essential linux-source-3.2
cd /usr/src
tar xjvf linux-source-3.2.tar.bz2

Check out the driver source code patched by ambrosa:

git clone https://github.com/ambrosa/DVB-Realtek-RTL2832U-2.2.2-10tuner-mod_kernel-3.0.0

Makefile configuration and driver compilation/installation:

cd DVB-Realtek-RTL2832U-2.2.2-10tuner-mod_kernel-3.0.0/RTL2832-2.2.2_kernel-3.0.0/

Enable 3.2.0 config:

vi Makefile
...
# kernel 3.0.0 / 3.1.0 => comment
#INCLUDE_EXTRA_DVB := include-300
# kernel 3.2.0 => uncomment
INCLUDE_EXTRA_DVB := include-320
...

Then add symlinks and build:

ln -s /usr/src/linux-source-3.2/drivers/media/dvb/frontends/*.h .
ln -s /usr/src/linux-source-3.2/drivers/media/dvb/dvb-core/*.h .
ln -s /usr/src/linux-source-3.2/drivers/media/dvb/dvb-usb/*.h .
make clean
make
make install
modprobe dvb_usb_rtl2832u

Sources

[1] [2]