For those asking how I installed the drivers on my Pi 3 - this is what I remember doing. I can't guarantee it's a complete how-to - but it's a good set of hints.
I first downloaded Jessie Lite Raspbian from here : https://www.raspberrypi.org/downloads/raspbian/
Flashed that to a Micro SD card, added an empty file called
ssh
(no extension) to the MicroSD card to enable SSH.
Booted up, let it do its thing then SSHed in (default login
pi
default password
raspberry@) and did :
@sudo apt-get update
Downloaded Raspbian kernel headers :
sudo apt-get install raspberrypi-kernel-headers
(Details here :
https://www.raspberrypi.org/documentation/linux/kernel/headers.md )
Installed dependencies for building media_build
sudo apt-get install libdigest-sha-perl make gcc git patch patchutils libproc-processtable-perl
following instructions here (Raspbian=Debian in this case)
https://www.linuxtv.org/wiki/index.php/How_to_Obtain,_Build_and_Install_V4L-DVB_Device_Drivers
Then followed the instructions in this thread
git clone git://linuxtv.org/media_build.git
git clone --depth=1 https://github.com/trsqr/media_tree.git -b xboxone ./media
cd media_build
make dir DIR=../media
make distclean
make
There may have been some errors at this point regarding additional dependencies to add - I think I just sudo apt-get installed the packages in question that were flagged.
I then installed with
sudo make install
and rebooted with
sudo reboot now
I then realised I needed firmware.
cd /lib/firmware
sudo wget http://linuxtv.org/downloads/firmware/dvb-usb-dib0700-1.20.fw
(I found the link by googling)
sudo wget http://palosaari.fi/linux/v4l-dvb/firmware/MN88472/02/088b891ac9273ff8c6818fca27b24d81/dvb-demod-mn88472-02.fw
(Again - slightly trickier - but found by googling)
sudo reboot now
to reboot
These two firmware files need to be present in /lib/firmware as - I think - they are loaded onto the USB tuner when it is initialised by the driver.
I may have missed a stage out - if I get a chance I'll repeat it from scratch and update this post.
EDITED to add firmware download
Please note - I don't claim this is a good way, the right way, the only way to do this - it just worked for me. I'm watching the Crystal Palace DVB-T/T2 muxes in London (with a rooftop aerial/antenna and a reasonable signal)