The DVB-T2 driver for Linux is ready, but we still keep separate drivers for DVB-T only and for DVB-T2 only, which allows
us to test them more efficiently and soon we will merge them in a single driver - you can find the necessary files in the link
http://www.tbsdtv.com/download/TBS6280/linux_dvbt2.rarwhich contains two files:
- tbs62x0fe_driver.o.x86
- tbs62x0fe_driver.o.x86_64
before i tell you how exactly to use them i want to tell you how to fast
switch between DVB-T and DVB-T2 driver without restart:
1) it's good that you already built and installed successfully the DVB-T
driver - so make a backup copy of it:
# find /lib -name tbs62x0fe.ko
depends on your kernel that command will return something like:
/lib/modules/2.6.31-14-generic/kernel/drivers/media/dvb/frontends/tbs62x0fe.ko
2) copy the DVB-T only kernel module:
# cp tbs62x0fe.ko /home/luke/tbs62x0fe.ko.dvbt
now you can proceed with building and installing the DVB-T2 driver:
3) all steps are the same as what you did for building and installing
the DVB-T only driver - even you need to use the same driver "110717"
driver package, but after 'untar' the package and before proceed with
the other steps as they are described in any of README files - copy the
two files from the attachment (effectively replace the old files) to
'linux-tbs-drivers/v4l' directory :
# cp tbs62x0fe_driver.o.x86 tbs62x0fe_driver.o.x86_64 linux-tbs-drivers/v4l
4) after you build and install the DVB-T2 driver, you can make backup
copy of the kernel module:
# cp tbs62x0fe.ko /home/luke/tbs62x0fe.ko.dvbt2
so now having backup copies of the kernel modules you can switch very
fast and without reboot between them:
* to load DVB-T2 driver:
# rmmod tbs62x0fe.ko
# rmmod saa716x_tbs_dvb
# cp /home/luke/tbs62x0fe.ko.dvbt2
/lib/modules/2.6.31-14-generic/kernel/drivers/media/dvb/frontends/tbs62x0fe.ko
# modprobe saa716x_tbs_dvb
* to load DVB-T driver:
# rmmod tbs62x0fe.ko
# rmmod saa716x_tbs_dvb
# cp /home/luke/tbs62x0fe.ko.dvbt
/lib/modules/2.6.31-14-generic/kernel/drivers/media/dvb/frontends/tbs62x0fe.ko
# modprobe saa716x_tbs_dvb
i guess you get the idea - just unload the driver, replace the kernel module with the one you want to use and then load the driver.
i hope you will enjoy DVB-T2 HD channels several minutes after you read this:)