Ubuntu Pastebin

Paste from cbrown at Sun, 4 Oct 2015 09:40:42 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
How to install SkyStar 2 revision 2.8 using the binary-driver for the CX24113?

0) Have linux-installation which allows to build external kernel modules.

Further help can be found here: http://linuxtv.org/wiki/index.php/How_to_install_DVB_device_drivers

1) Get the complete v4l-dvb driver tree from 2008-07-07 (*) and extract it

 # wget http://linuxtv.org/hg/v4l-dvb/archive/0276304b76b9.tar.bz2
 # tar xfj 0276304b76b9.tar.bz2
 # cd v4l-dvb-0276304b76b9

2) Apply the patch and copy the appropriate driver-binary

 # patch -p1 < <path-to-patch-file>/skystar2-rev2.8-v4l-dvb.patch
 # cp <path-to-binary-file>/cx24113_blob.o.x86-64 v4l/cx24113_blob.o_shipped # for 64-bit installations
or
 # cp <path-to-binary-file>/cx24113_blob.o.i386   v4l/cx24113_blob.o_shipped # for 32-bit installations

3) (optional) select the device/card-drivers to compile and install

 # make menuconfig

   follow the menus and enable at least

  <M>   Technisat/B2C2 FlexCopII(b) and FlexCopIII adapters
  <M>     Technisat/B2C2 Air/Sky/Cable2PC PCI
  <M>     Technisat/B2C2 Air/Sky/Cable2PC USB

4) compile all/selected modules and install them

 # make
 # make install

 the last command will replace the modules which were delivered by the install kernel by the ones you just 
Download as text