Pre10der
Posts: 3
Joined: Fri Sep 21, 2012 10:31 am

Tutorial: Raspbmc PVR TinyUSB2 DVB-T & TVHeadend All-in-one

Sat Sep 22, 2012 12:28 pm

Hi All,

Thought I would post my first attempt to build an all-in one XBMC LiveTV and PVR running Raspbmc and TVHeadend. Credit is given to Quonith for his awesome tutorial upon which this is based: http://forum.stmlabs.com/showthread.php?tid=2648.

This particular tutorial is using the Digital Now TinyUSB2 DVB-T with TVHeadend as the TV server. I am looking to do away with my power hungry Windows 7 Media Centre PC and this is more od a proof of concept more than anything. At this point in time, I still prefer Windows MCE as it 'just works' and is very intuitive for the user (most important of all). None the less, this was good fun.

You can view a video of my setup here: https://www.youtube.com/watch?v=UdHmASKxPIk

Specs for this setup:
  • RPi Model B
  • Digital Now TinyUSB2 DVB-T (aka Beetle) - plugged straight into Pi (no USB hub)
  • iPad charger as PSU (2A @ 5V DC) with a micro USB cable.
  • Windows Media Centre Remote Control and Keyboard
  • 16GB Sandisk Class10 SDHC
  • Using HDMI output into TV
1. Install base Raspbmc onto SD Card: http://www.raspbmc.com/download/
2. Boot RPi with SD Card and allow install to take place (around 20-30min).
3. Install nightly PVR build: In XBMC, go to Programs → Raspbmc Settings → Nightly Build Configuration
4. Add Codec licenses (optional). I believe this was required in my case (for Australian free-to-air TV). You can buy them here for next to nothing: http://www.raspberrypi.com/
5. SSH to RPi and setup the locales etc (prompted at first SSH session).
6. Now, download and install the TinyUSB2 Firmware by typing:

Code: Select all

cd /lib/firmware
sudo wget http://www.linuxtv.org/downloads/firmware/dvb-usb-vp7045-01.fwcd /etc/init    
7. Upgrade the Kernel to 3.2 which has the drivers for the TinyUSB2 Tuner. These are Quonith's compilation of the Kernel so again credit to him for providing these.

Code: Select all

sudo -s
cd /
wget http://goo.gl/jFh9x -O rootfs.tar.gz
tar -xzf rootfs.tar.gz
cd /boot
wget http://goo.gl/Xj3IR -O vfat.tar.gz
tar -xzf vfat.tar.gz
reboot
8. Disable infrared on TinyUSB2 - this prevents confliting signals with the MCE IR receiver as the TinyUSB also has a receiver inbuilt.

Code: Select all

sudo gedit /etc/modprobe.d/dvbt.conf
Add the line:

Code: Select all

options dvb-usb disable_rc_polling=1
9. Get some more required packages by typing:

Code: Select all

sudo apt-get update
sudo apt-get install unzip libcurl4-openssl-dev pkg-config git build-essential dvb-apps
10. Install TVHeadend Server

Code: Select all

cd ~
git clone https://github.com/tvheadend/tvheadend
cd tvheadend
./configure
make
sudo make install
11. Setup TVHeadend to boot automatically

Code: Select all

cd /etc/init
nano tvheadend.conf
Insert this text:

Code: Select all

# TvHeadEnd Server
description "Tvheadend server"
start on xbmc-started
script
su - pi -c "/usr/local/bin/tvheadend -f"
exit 0
end script
Save file.
12. Reboot Pi

Code: Select all

sudo reboot
13. Undertake initial config of TVHeadend. To do so, start it by typing the following then open a browser and go here: [url]http://<RPi_IP_Address>:9981[/url]
* If you cannot get to TVHeadend, you can start it by running the following command on the Pi via SSH:

Code: Select all

tvheadend -f
14. Once in the TV Headend Control panel do this:
  • Go to configuration→ General
  • Enter en for the default language
  • Enter /usr/share/dvb into the ‘DVB Scan Files path.
  • Go to configuration -> TV Adapters and select a TV Adapter.
  • Set the "NIT-o Network ID". Apparently, you can find that in your provider's manual. I took a guess and for my TinyUSB2 I used ‘0’.
  • Ensure "Autodetect muxes" and "Idle scanning" are ticked.
  • Then select "Add DVB Network by location" – this will add Muxes from a known database
  • Click "save"
  • Tvheadend will now start to detect multiplexes and services. Wait for "Muxes awaiting initial scan" to become 0.
  • Now click "Map DVB Services to channels". TVheadend will now try to open each channel and will add each channel that can be opened.
  • Repeat this process for other adapters if you have them.
15. In XBMC, go to Settings → Live TV → General → Enable it
16. Choose ‘Tvheadend HTSP Client’ as the server and enable it. Allow the channels to be detected by XBMC and then try watching TV.

As I mentioned earlier, this was more of a PoC exercise for me. I thought it might be useful to others however as I know the TinyUSB2 is a common tuner and chances are others will have one lying around.

Ian
Last edited by Pre10der on Tue Jan 17, 2017 12:12 pm, edited 1 time in total.

walleee
Posts: 80
Joined: Tue May 29, 2012 6:16 pm

Re: Tutorial: Raspbmc PVR TinyUSB2 DVB-T & TVHeadend All-in-

Sat Sep 22, 2012 1:07 pm

excellent post, could you post it on raspbmc forums?

Pre10der
Posts: 3
Joined: Fri Sep 21, 2012 10:31 am

Re: Tutorial: Raspbmc PVR TinyUSB2 DVB-T & TVHeadend All-in-

Sat Sep 22, 2012 1:28 pm

walleee wrote:excellent post, could you post it on raspbmc forums?
Done. This post is now on the Raspbmc forum: http://forum.stmlabs.com/showthread.php?tid=2912

Ian

janck
Posts: 12
Joined: Sat Sep 22, 2012 1:44 pm

Re: Tutorial: Raspbmc PVR TinyUSB2 DVB-T & TVHeadend All-in-

Sat Sep 22, 2012 1:52 pm

Thanks for this tutorial, but I have a little problem. I don't have Raspbmc because I'm using OpenELEC and I would like to set Live TV. When I open Live TV in Settings and enable it, choose PVR tvheadend. After that I want to connect on rpiipaddress:9981, but it's not alive - on the GUI of OpenELEC I got error Connection Lost. This is the main problem, so I can't access to web administration for tvheadend. I've also tried to git and install tvheadend as in tutorial, but OpenELEC don't allow to perform apt-get for installing of git.

What can I do and where to check logs for tvheadend?

Thanks a lot! :)


jcomas
Posts: 2
Joined: Tue Oct 02, 2012 2:09 pm

Re: Tutorial: Raspbmc PVR TinyUSB2 DVB-T & TVHeadend All-in-

Tue Oct 02, 2012 2:24 pm

For Hauppauge WinTV MiniStick (DVB-T tunner) isn’t necessary update the kernel, using last RASPBMC distribution it’s ok.

Replace 6 to 12 steps by (remember login as pi user):

Install Tvheadend from stable release 3.0

Code: Select all

sudo apt-get update
sudo apt-get install make gcc pkg-config libavahi-client-dev libssl-dev
get https://github.com/tvheadend/tvheadend/tarball/3.0 -O hts-tvheadend_3.0.tar.gz
tar -zxvf hts-tvheadend_3.0.tar.gz
cd tvheadend-tvheadend-1175cea
./configure
make
sudo make install
sudo nano /etc/init/tvheadend.conf
And insert:

Code: Select all

# TvHeadEnd Server
description "Tvheadend server"
start on xbmc-started
script
su - pi -c "/usr/local/bin/tvheadend -f"
exit 0
end script
Get firmware for WinTV MiniStick:

Code: Select all

wget http://www.wintvcd.co.uk/drivers/WinTV-MiniStick_4_2_26_28027_WHQL.zip
sudo apt-get install unzip
unzip WinTV-MiniStick_4_2_26_28027_WHQL.zip driver17/hcw17dvb.1b0
sudo mv driver17/hcw17dvb.1b0 /lib/firmware/sms1xxx-hcw-55xxx-dvbt-02.fw
sudo reboot
Configure first time the user and password to login to web interface of Tvheadend:

Code: Select all

pkill tvheadend
/usr/local/bin/tvheadend -C
Open browser to http://raspberrypi_local_ip:9981 and go to Configuration -> Access control and modify username and password of default user *

If you add users or modify default user you can’t play streaming from web interface, then you need open with VLC using http://raspberrypi_local_ip:9982/playlist/channelid/number_channel
(replace raspberrypi_local_ip and number_channel according your values)

If you get “segmentation fault” starting Tvheadend then remove epgdb file:

Code: Select all

rm /home/pi/.hts/tvheadend/epgdb
Add these lines to /boot/config.txt file for better experience using multimedia (overclocking):

Code: Select all

arm_freq=900
gpu_freq=350
sdram_freq=500
Other player:
http://elinux.org/Omxplayer

jcomas
Posts: 2
Joined: Tue Oct 02, 2012 2:09 pm

Re: Tutorial: Raspbmc PVR TinyUSB2 DVB-T & TVHeadend All-in-

Tue Oct 02, 2012 6:53 pm

For Prof Revolution DVB-S2 7500 USB (DVB-S2 satellite tunner) you can download dvb-usb-p7500.fw file from http://www.forum.free-x.de/wbb/index.ph ... readID=798
Rename dvb-usb-p7500.fw.txt to dvb-usb-p7500.fw and put into /lib/firmware directory.

Before text I have a mistake, replace http://raspberrypi_local_ip:9982/playlist/channelid/number_channel by http://raspberrypi_local_ip:9981/playlist/channelid/number_channel to play into VLC player.

sebaa
Posts: 1
Joined: Sat Nov 10, 2012 9:26 am

Re: Tutorial: Raspbmc PVR TinyUSB2 DVB-T & TVHeadend All-in-

Sat Nov 10, 2012 9:30 am

jcomas wrote:For Prof Revolution DVB-S2 7500 USB (DVB-S2 satellite tunner) you can download dvb-usb-p7500.fw file from http://www.forum.free-x.de/wbb/index.ph ... readID=798
Rename dvb-usb-p7500.fw.txt to dvb-usb-p7500.fw and put into /lib/firmware directory.
Hello @jcomas

Will Prof 7500 works on Xbian 1.0 installation?

precious_pony
Posts: 34
Joined: Tue May 22, 2012 11:09 pm

Re: Tutorial: Raspbmc PVR TinyUSB2 DVB-T & TVHeadend All-in-

Fri Nov 30, 2012 10:38 pm

Does anyone have any experience with the ClimaxDigital DTV395 card?

I tried and failed to set up the card for Linux (working on my power hungry Windows PC).

erosoft
Posts: 21
Joined: Mon Dec 03, 2012 1:51 pm

Re: Tutorial: Raspbmc PVR TinyUSB2 DVB-T & TVHeadend All-in-

Mon Jan 07, 2013 4:20 pm

I need HELP.... i'm trying and trying to configure the first access to tvheadend by WEB.

But i already installed and reinstalled it 4 times.... :-(

The first time i start tvheadend (-f) it ask user and pass but i don't have it yet..

So i read further and if i understand correctly i have to start it first with option "-C" so i changed
the user with my own id and password.

In this way im able to access web control starting with option "-C" but as soon as i start it with "-f" it ask again for the pass and mine do not works....

Can someone explain whats wrong ? Please...
I passed almost my holidays to figure it out...

Thanks alot and apologise my poor english.

dpoz
Posts: 6
Joined: Thu Jan 24, 2013 7:09 am

Re: Tutorial: Raspbmc PVR TinyUSB2 DVB-T & TVHeadend All-in-

Thu Jan 24, 2013 7:20 am

I have the same issue trying to access tvheadend from a browser.
It worked first time and I changed the password but it won't let me back in.
Tried starting it with the "f" and "C" switches but nothing works.
Tried flushing the browser cache..nope.
Any pointers to clearing / resetting the headend login and password would be appreciated!

FVS
Posts: 1
Joined: Thu Feb 07, 2013 2:53 pm

Re: Tutorial: Raspbmc PVR TinyUSB2 DVB-T & TVHeadend All-in-

Thu Feb 07, 2013 3:08 pm

Hi,
I've a r-pi with raspbmc, i've tried to install "hauppanage win-tv...." following the tutorial, but i'm going nowhere.
my problem is that i can't see any adapter in the list.
i think that is due to the fact i don't have a configuration->general tab, and i can't set the path for dvb.
Else, how can i uninstall tv headend and reinstall fresh new one?
thanks!

FVS

eufc
Posts: 37
Joined: Sun Sep 16, 2012 6:48 pm

Re: Tutorial: Raspbmc PVR TinyUSB2 DVB-T & TVHeadend All-in-

Sat May 18, 2013 9:34 pm

i cant access the configuration settings and its asking me for a username and password.

txt3rob
Posts: 368
Joined: Sat Aug 11, 2012 3:45 pm
Location: Liverpool

Re: Tutorial: Raspbmc PVR TinyUSB2 DVB-T & TVHeadend All-in-

Wed Jun 05, 2013 3:24 pm

I got this working with a freecomm DVB-T tuner.

you need the following file:

http://www.chandlerfamily.org.uk/files/ ... 0353-01.fw
https://www.github.com/random-robbie - Infosec tools

modemfreaker
Posts: 1
Joined: Wed Nov 06, 2013 1:26 pm

Re: Tutorial: Raspbmc PVR TinyUSB2 DVB-T & TVHeadend All-in-

Wed Nov 06, 2013 1:35 pm

i have quit some problems getting tvheaded installed every time i get these errors:

sudo make install
CC src/iptv_input.o
In file included from /usr/include/linux/kernel.h:4:0,
from /usr/include/linux/netlink.h:4,
from /usr/include/linux/if_link.h:5,
from /usr/include/linux/netdevice.h:31,
from src/iptv_input.c:45:
/usr/include/linux/sysinfo.h:8:2: error: unknown type name '__kernel_long_t'
/usr/include/linux/sysinfo.h:9:2: error: unknown type name '__kernel_ulong_t'
/usr/include/linux/sysinfo.h:10:2: error: unknown type name '__kernel_ulong_t'
/usr/include/linux/sysinfo.h:11:2: error: unknown type name '__kernel_ulong_t'
/usr/include/linux/sysinfo.h:12:2: error: unknown type name '__kernel_ulong_t'
/usr/include/linux/sysinfo.h:13:2: error: unknown type name '__kernel_ulong_t'
/usr/include/linux/sysinfo.h:14:2: error: unknown type name '__kernel_ulong_t'
/usr/include/linux/sysinfo.h:15:2: error: unknown type name '__kernel_ulong_t'
/usr/include/linux/sysinfo.h:18:2: error: unknown type name '__kernel_ulong_t'
/usr/include/linux/sysinfo.h:19:2: error: unknown type name '__kernel_ulong_t'
/usr/include/linux/sysinfo.h:21:22: error: '__kernel_ulong_t' undeclared here (not in a function)

i used to the stepps above to install. i already tried to install over apt, same error.

anyone have a solution?

thx a lot!

PS: i'm using the latest raspbmc

cicciopizza
Posts: 4
Joined: Sat Mar 22, 2014 11:37 am

Re: Tutorial: Raspbmc PVR TinyUSB2 DVB-T & TVHeadend All-in-

Sat Mar 22, 2014 11:42 am

hi,
add in file : /usr/include/linux/sysinfo.h this lines:

Code: Select all

#ifndef __kernel_long_t
typedef long     __kernel_long_t;
typedef unsigned long   __kernel_ulong_t;
#endif
before of

Code: Select all

#define SI_LOAD_SHIFT   16
struct sysinfo {
......
this work for me..

by

Issa
Posts: 16
Joined: Sat Oct 27, 2012 8:02 am

Re: Tutorial: Raspbmc PVR TinyUSB2 DVB-T & TVHeadend All-in-

Fri Jul 04, 2014 3:14 pm

Hello,

well i want install tvheadend on my raspberry to shwo tnt tv on my raspberry

but i don't understand how install it !

First i install driver of my USB TNT :
Installation USB TNT Volar HD Green (A835B)

Code: Select all

>wget http://www.ite.com.tw/uploads/firmware/v3.6.0.0/dvb-usb-it9135.zip
>unzip dvb-usb-it9135.zip
>rm dvb-usb-it9135.zip
>dd if=dvb-usb-it9135.fw ibs=1 skip=64 count=8128 of=dvb-usb-it9135-01.fw
>dd if=dvb-usb-it9135.fw ibs=1 skip=12866 count=5817 of=dvb-usb-it9135-02.fw
>rm dvb-usb-it9135.fw
>sudo mv dvb-usb-it9135* /lib/firmware/ 
now i install tvheadend :

Prerequis :

Code: Select all

sudo apt-get update
sudo apt-get install unzip libcurl4-openssl-dev pkg-config git build-essential dvb-ap

Code: Select all

cd ~
git clone https://github.com/tvheadend/tvheadend
cd tvheadend
./configure
make
sudo make install
like here evrything work with no error

Code: Select all

cd /etc/init
nano tvheadend.conf
i add this :
# TvHeadEnd Server
description "Tvheadend server"
start on xbmc-started
script
su - pi -c "/usr/local/bin/tvheadend -f"
exit 0
end script
i reboot my raspberry

Code: Select all

sudo reboot
and i have this for the web :
La connexion a échoué
Firefox ne peut établir de connexion avec le serveur à l'adresse 192.168.1.39:9981.
Image

on raspbmc i have this info :
Image
like u can see, u can't record video menu not working.

can we help me please to make it works

thanks to u

Issa
Posts: 16
Joined: Sat Oct 27, 2012 8:02 am

Re: Tutorial: Raspbmc PVR TinyUSB2 DVB-T & TVHeadend All-in-

Fri Jul 04, 2014 4:03 pm

well i lunch diretcly tvheadend and that works partialy :

Code: Select all

pi@raspbmc:~$ tvheadend   
2014-07-04 18:02:23.192 [   INFO] charset: 138 entries loaded
2014-07-04 18:02:23.239 [   INFO] linuxdvb: adapter added /dev/dvb/adapter0
2014-07-04 18:02:23.269 [   INFO] CSA: Using 32bit parallel descrambling
2014-07-04 18:02:23.271 [   INFO] epggrab: module eit created
2014-07-04 18:02:23.273 [   INFO] epggrab: module uk_freesat created
2014-07-04 18:02:23.274 [   INFO] epggrab: module uk_freeview created
2014-07-04 18:02:23.276 [   INFO] epggrab: module viasat_baltic created
2014-07-04 18:02:23.354 [   INFO] epggrab: module opentv-ausat created
2014-07-04 18:02:23.356 [   INFO] epggrab: module opentv-skyit created
2014-07-04 18:02:23.358 [   INFO] epggrab: module opentv-skyuk created
2014-07-04 18:02:23.371 [   INFO] epggrab: module pyepg created
2014-07-04 18:02:23.373 [   INFO] epggrab: module xmltv created
2014-07-04 18:02:23.388 [   INFO] epgdb: loaded v2
2014-07-04 18:02:23.390 [   INFO] epgdb:   channels   0
2014-07-04 18:02:23.391 [   INFO] epgdb:   brands     0
2014-07-04 18:02:23.394 [   INFO] epgdb:   seasons    0
2014-07-04 18:02:23.396 [   INFO] epgdb:   episodes   0
2014-07-04 18:02:23.396 [   INFO] epgdb:   broadcasts 0
2014-07-04 18:02:23.396 [   INFO] dvr: Creating new configuration ''
2014-07-04 18:02:23.397 [WARNING] dvr: Output directory for video recording is not yet configured for DVR configuration "". Defaulting to to "/home/pi". This can be changed from the web user interface.
2014-07-04 18:02:23.407 [ NOTICE] START: HTS Tvheadend version 3.9.988~gfa10998 started, running as PID:1949 UID:1000 GID:1000, CWD:/home/pi CNF:/home/pi/.hts/tvheadend
2014-07-04 18:02:23.410 [   INFO] mpegts: 0 - tuning on Avermedia A835B(3835)_1 : DVB-T #0
2014-07-04 18:02:23.411 [  ERROR] linuxdvb: Avermedia A835B(3835)_1 : DVB-T #0 - failed to tune [e=Invalid argument]
2014-07-04 18:02:23.414 [WARNING] mpegts: 0 - failed to start on Avermedia A835B(3835)_1 : DVB-T #0, try another


the result of dmesg

Code: Select all

pi@raspbmc:~$ dmesg 
Booting Linux on physical CPU 0x0
Initializing cgroup subsys cpu
Linux version 3.12.20 (root@samnazarko-compiler) (gcc version 4.7.1 20120402 (prerelease) (crosstool-NG 1.15.2) ) #2 PREEMPT Fri May 23 03:00:38 UTC 2014
CPU: ARMv6-compatible processor [410fb767] revision 7 (ARMv7), cr=00c5387d
CPU: PIPT / VIPT nonaliasing data cache, VIPT nonaliasing instruction cache
Machine: BCM2708
Memory policy: ECC disabled, Data cache writeback
On node 0 totalpages: 98304
free_area_init_node: node 0, pgdat c09f10ac, node_mem_map c0a45000
  Normal zone: 768 pages used for memmap
  Normal zone: 0 pages reserved
  Normal zone: 98304 pages, LIFO batch:31
pcpu-alloc: s0 r0 d32768 u32768 alloc=1*32768
pcpu-alloc: [0] 0 
Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 97536
Kernel command line: dma.dmachans=0x7f35 bcm2708_fb.fbwidth=1920 bcm2708_fb.fbheight=1080 bcm2708.boardrev=0xf bcm2708.serial=0x6e2ab9a smsc95xx.macaddr=B8:27:EB:E2:AB:9A sdhci-bcm2708.emmc_clock_freq=250000000 vc_mem.mem_base=0x1ec00000 vc_mem.mem_size=0x20000000  dwc_otg.lpm_enable=0 root=/dev/mmcblk0p2 rootfstype=f2fs noatime quiet rootwait loglevel=1 sdhci-bcm2708.enable_llm=1 dwc_otg.microframe_schedule=1 dwc_otg.fiq_fix_enable=0 dwc_otg.fiq_split_enable=0
PID hash table entries: 2048 (order: 1, 8192 bytes)
Dentry cache hash table entries: 65536 (order: 6, 262144 bytes)
Inode-cache hash table entries: 32768 (order: 5, 131072 bytes)
Memory: 379172K/393216K available (4939K kernel code, 221K rwdata, 604K rodata, 4379K init, 333K bss, 14044K reserved)
Virtual kernel memory layout:
    vector  : 0xffff0000 - 0xffff1000   (   4 kB)
    fixmap  : 0xfff00000 - 0xfffe0000   ( 896 kB)
    vmalloc : 0xd8800000 - 0xff000000   ( 616 MB)
    lowmem  : 0xc0000000 - 0xd8000000   ( 384 MB)
    modules : 0xbf000000 - 0xc0000000   (  16 MB)
      .text : 0xc0008000 - 0xc0571ffc   (5544 kB)
      .init : 0xc0572000 - 0xc09b8d3c   (4380 kB)
      .data : 0xc09ba000 - 0xc09f17c0   ( 222 kB)
       .bss : 0xc09f17cc - 0xc0a44e69   ( 334 kB)
Preemptible hierarchical RCU implementation.
NR_IRQS:460
sched_clock: 32 bits at 1000kHz, resolution 1000ns, wraps every 4294967ms
Switching to timer-based delay loop
Console: colour dummy device 80x30
console [tty0] enabled
Calibrating delay loop (skipped), value calculated using timer frequency.. 2.00 BogoMIPS (lpj=10000)
pid_max: default: 32768 minimum: 301
Mount-cache hash table entries: 512
Initializing cgroup subsys bfqio
CPU: Testing write buffer coherency: ok
Setting up static identity map for 0xc04d8a58 - 0xc04d8ab4
devtmpfs: initialized
VFP support v0.3: implementor 41 architecture 1 part 20 variant b rev 5
NET: Registered protocol family 16
DMA: preallocated 4096 KiB pool for atomic coherent allocations
cpuidle: using governor ladder
cpuidle: using governor menu
bcm2708.uart_clock = 0
mailbox: Broadcom VideoCore Mailbox driver
bcm2708_vcio: mailbox at f200b880
bcm_power: Broadcom power driver
bcm_power_open() -> 0
bcm_power_request(0, 8)
bcm_mailbox_read -> 00000080, 0
bcm_power_request -> 0
Serial: AMBA PL011 UART driver
dev:f1: ttyAMA0 at MMIO 0x20201000 (irq = 83, base_baud = 0) is a PL011 rev3
bio: create slab <bio-0> at 0
SCSI subsystem initialized
usbcore: registered new interface driver usbfs
usbcore: registered new interface driver hub
usbcore: registered new device driver usb
Switched to clocksource stc
FS-Cache: Loaded
CacheFiles: Loaded
NET: Registered protocol family 2
TCP established hash table entries: 4096 (order: 3, 32768 bytes)
TCP bind hash table entries: 4096 (order: 2, 16384 bytes)
TCP: Hash tables configured (established 4096 bind 4096)
TCP: reno registered
UDP hash table entries: 256 (order: 0, 4096 bytes)
UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)
NET: Registered protocol family 1
RPC: Registered named UNIX socket transport module.
RPC: Registered udp transport module.
RPC: Registered tcp transport module.
RPC: Registered tcp NFSv4.1 backchannel transport module.
bcm2708_dma: DMA manager at f2007000
bcm2708_gpio: bcm2708_gpio_probe c09c61f0
vc-mem: phys_addr:0x00000000 mem_base=0x1ec00000 mem_size:0x20000000(512 MiB)
VFS: Disk quotas dquot_6.5.2
Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
FS-Cache: Netfs 'nfs' registered for caching
NFS: Registering the id_resolver key type
Key type id_resolver registered
Key type id_legacy registered
msgmni has been set to 740
Key type asymmetric registered
Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
io scheduler noop registered
io scheduler deadline registered
io scheduler cfq registered
io scheduler bfq registered (default)
BFQ I/O-scheduler version: v7r4
BCM2708FB: allocated DMA memory 56ed0000
BCM2708FB: allocated DMA channel 0 @ f2007000
Console: switching to colour frame buffer device 240x67
uart-pl011 dev:f1: no DMA platform data
brd: module loaded
loop: module loaded
vchiq: vchiq_init_state: slot_zero = 0xd8804000, is_master = 0
bcm2708_spi bcm2708_spi.0: master is unqueued, this is deprecated
bcm2708_spi bcm2708_spi.0: SPI Controller at 0x20204000 (irq 80)
usbcore: registered new interface driver ax88179_178a
usbcore: registered new interface driver smsc95xx
usbcore: registered new interface driver cdc_ncm
dwc_otg: version 3.00a 10-AUG-2012 (platform bus)
Core Release: 2.80a
Setting default values for core params
Finished setting default values for core params
Using Buffer DMA mode
Periodic Transfer Interrupt Enhancement - disabled
Multiprocessor Interrupt Enhancement - disabled
OTG VER PARAM: 0, OTG VER FLAG: 0
Dedicated Tx FIFOs mode
WARN::dwc_otg_hcd_init:1042: FIQ DMA bounce buffers: virt = 0xd8c27000 dma = 0x56f20000 len=9024
FIQ FSM acceleration enabled for :
Non-periodic Split Transactions
Periodic Split Transactions
High-Speed Isochronous Endpoints
dwc_otg: Microframe scheduler enabled
WARN::hcd_init:473: FIQ at 0xc037ce6c
WARN::hcd_init:474: FIQ ASM at 0xc037d120 length 36
WARN::hcd_init:500: MPHI regs_base at 0xd8c1c000
dwc_otg bcm2708_usb: DWC OTG Controller
dwc_otg bcm2708_usb: new USB bus registered, assigned bus number 1
dwc_otg bcm2708_usb: irq 32, io mem 0x00000000
Init: Port Power? op_state=1
Init: Power Port (0)
usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
usb usb1: Product: DWC OTG Controller
usb usb1: Manufacturer: Linux 3.12.20 dwc_otg_hcd
usb usb1: SerialNumber: bcm2708_usb
hub 1-0:1.0: USB hub found
hub 1-0:1.0: 1 port detected
dwc_otg: FIQ enabled
dwc_otg: NAK holdoff enabled
dwc_otg: FIQ split-transaction FSM enabled
Module dwc_common_port init
usbcore: registered new interface driver usb-storage
mousedev: PS/2 mouse device common for all mice
i2c /dev entries driver
device-mapper: uevent: version 1.0.3
device-mapper: ioctl: 4.26.0-ioctl (2013-08-15) initialised: [email protected]
bcm2835-cpufreq: min=850000 max=850000 cur=850000
bcm2835-cpufreq: switching to governor ondemand
bcm2835-cpufreq: switching to governor ondemand
sdhci: Secure Digital Host Controller Interface driver
sdhci: Copyright(c) Pierre Ossman
sdhci: Enable low-latency mode
mmc0: SDHCI controller on BCM2708_Arasan [platform] using platform's DMA
mmc0: BCM2708 SDHC host at 0x20300000 DMA 2 IRQ 77
sdhci-pltfm: SDHCI platform and OF driver helper
usbcore: registered new interface driver usbhid
usbhid: USB HID core driver
zram: Created 1 device(s) ...
TCP: westwood registered
Initializing XFRM netlink socket
NET: Registered protocol family 17
Key type dns_resolver registered
drivers/rtc/hctosys.c: unable to open rtc device (rtc0)
Freeing unused kernel memory: 4376K (c0572000 - c09b8000)
mmc0: read SD Status register (SSR) after 3 attempts
mmc0: new high speed SDHC card at address 0002
mmcblk0: mmc0:0002 00000 3.70 GiB 
 mmcblk0: p1 p2
Indeed it is in host mode hprt0 = 00021501
usb 1-1: new high-speed USB device number 2 using dwc_otg
Indeed it is in host mode hprt0 = 00001101
usb 1-1: New USB device found, idVendor=0424, idProduct=9512
usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
hub 1-1:1.0: USB hub found
hub 1-1:1.0: 3 ports detected
usb 1-1.1: new high-speed USB device number 3 using dwc_otg
usb 1-1.1: New USB device found, idVendor=0424, idProduct=ec00
usb 1-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
smsc95xx v1.0.4
smsc95xx 1-1.1:1.0 eth0: register 'smsc95xx' at usb-bcm2708_usb-1.1, smsc95xx USB 2.0 Ethernet, b8:27:eb:e2:ab:9a
usb 1-1.3: new high-speed USB device number 4 using dwc_otg
usb 1-1.3: New USB device found, idVendor=05e3, idProduct=0608
usb 1-1.3: New USB device strings: Mfr=0, Product=1, SerialNumber=0
usb 1-1.3: Product: USB2.0 Hub
hub 1-1.3:1.0: USB hub found
hub 1-1.3:1.0: 4 ports detected
usb 1-1.3.1: new low-speed USB device number 5 using dwc_otg
usb 1-1.3.1: New USB device found, idVendor=017c, idProduct=145f
usb 1-1.3.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
usb 1-1.3.1: Product: Trust Deskset
usb 1-1.3.1: Manufacturer: MLK
input: MLK Trust Deskset as /devices/platform/bcm2708_usb/usb1/1-1/1-1.3/1-1.3.1/1-1.3.1:1.0/input/input0
hid-generic 0003:017C:145F.0001: input: USB HID v1.00 Keyboard [MLK Trust Deskset] on usb-bcm2708_usb-1.3.1/input0
input: MLK Trust Deskset as /devices/platform/bcm2708_usb/usb1/1-1/1-1.3/1-1.3.1/1-1.3.1:1.1/input/input1
hid-generic 0003:017C:145F.0002: input,hiddev0: USB HID v1.00 Mouse [MLK Trust Deskset] on usb-bcm2708_usb-1.3.1/input1
usb 1-1.3.2: new high-speed USB device number 6 using dwc_otg
usb 1-1.3.2: New USB device found, idVendor=05e3, idProduct=0608
usb 1-1.3.2: New USB device strings: Mfr=0, Product=1, SerialNumber=0
usb 1-1.3.2: Product: USB2.0 Hub
hub 1-1.3.2:1.0: USB hub found
hub 1-1.3.2:1.0: 4 ports detected
usb 1-1.3.2.3: new high-speed USB device number 7 using dwc_otg
usb 1-1.3.2.3: New USB device found, idVendor=07ca, idProduct=3835
usb 1-1.3.2.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
usb 1-1.3.2.3: Product: A835B
usb 1-1.3.2.3: Manufacturer: AVerMedia TECHNOLOGIES, Inc.
usb 1-1.3.2.3: SerialNumber: 306006700787
udevd[134]: starting version 175
bcm2708_i2c_init_pinmode(0,0)
bcm2708_i2c_init_pinmode(0,1)
bcm2708_i2c bcm2708_i2c.0: BSC0 Controller at 0x20205000 (irq 79) (baudrate 100000)
bcm2708_i2c_init_pinmode(1,2)
bcm2708_i2c_init_pinmode(1,3)
bcm2708_i2c bcm2708_i2c.1: BSC1 Controller at 0x20804000 (irq 79) (baudrate 100000)
bcm2708-i2s bcm2708-i2s.0: Failed to create debugfs directory
it913x: Chip Version=02 Chip Type=9135
it913x: Firmware Version 52887808it913x: Remote propriety (raw) mode
it913x: Dual mode=0 Tuner Type=38it913x: Unknown tuner ID applying default 0x60
usb 1-1.3.2.3: dvb_usb_v2: found a 'Avermedia A835B(3835)' in warm state
usb 1-1.3.2.3: dvb_usb_v2: will pass the complete MPEG2 transport stream to the software demuxer
DVB: registering new adapter (Avermedia A835B(3835))
it913x-fe: ADF table value	:00
it913x-fe: Crystal Frequency :12000000 Adc Frequency :20250000 ADC X2: 01
it913x-fe: Tuner LNA type :60
usb 1-1.3.2.3: DVB: registering adapter 0 frontend 0 (Avermedia A835B(3835)_1)...
pcm512x 1-004c: Failed to reset device: -5
pcm512x: probe of 1-004c failed with error -5
Registered IR keymap rc-it913x-v2
input: Avermedia A835B(3835) as /devices/platform/bcm2708_usb/usb1/1-1/1-1.3/1-1.3.2/1-1.3.2.3/rc/rc0/input2
rc0: Avermedia A835B(3835) as /devices/platform/bcm2708_usb/usb1/1-1/1-1.3/1-1.3.2/1-1.3.2.3/rc/rc0
usb 1-1.3.2.3: dvb_usb_v2: schedule remote query interval to 250 msecs
usb 1-1.3.2.3: dvb_usb_v2: 'Avermedia A835B(3835)' successfully initialized and connected
usbcore: registered new interface driver dvb_usb_it913x
FAT-fs (mmcblk0p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
bcm2835-cpufreq: switching to governor performance
bcm2835-cpufreq: switching to governor performance
ip_tables: (C) 2000-2006 Netfilter Core Team
nf_conntrack version 0.5.0 (5992 buckets, 23968 max)
Console: switching to colour dummy device 80x30
NET: Registered protocol family 10
smsc95xx 1-1.1:1.0 eth0: hardware isn't capable of remote wakeup
IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
smsc95xx 1-1.1:1.0 eth0: link up, 100Mbps, full-duplex, lpa 0x45E1
IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
dvb_hdhomerun: module is from the staging directory, the quality is unknown, you have been warned.
HDHomeRun: Begin init, version 0.0.11
HDHomeRun: Waiting for userspace to connect
HDHomeRun: End init
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
bcm2708 watchdog, heartbeat=10 sec (nowayout=0)
bcm2835-cpufreq: switching to governor ondemand
bcm2835-cpufreq: switching to governor ondemand
usb 1-1.3.2.3: DVB: adapter 0 frontend 0 frequency 0 out of range (51000000..1680000000)
usb 1-1.3.2.3: DVB: adapter 0 frontend 0 frequency 0 out of range (51000000..1680000000)
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
Loading kernel module for a network device with CAP_SYS_MODULE (deprecated).  Use CAP_NET_ADMIN and alias netdev- instead.
so what do u think please ?

young_col
Posts: 1
Joined: Mon Nov 24, 2014 9:17 pm

Re: Tutorial: Raspbmc PVR TinyUSB2 DVB-T & TVHeadend All-in-

Mon Nov 24, 2014 9:29 pm

Great tutorial!! :D

I used this for August DVB-T205 on RaspbMC Gotham and worked fine. I'm in the UK so had to buy the MPEG-2 codec. I also skipped the steps 6-8 as the device is already supported.

Colin

rubenbalea
Posts: 1
Joined: Mon Oct 07, 2019 5:03 pm

Re: Tutorial: Raspbmc PVR TinyUSB2 DVB-T & TVHeadend All-in-one

Mon Oct 07, 2019 7:05 pm

Hauppauge firmware files and some instructions are available at their German site:
http://www.hauppauge.de/site/support/su ... =FAQ.Linux

I've a WinTV-MiniStick model 55009 LF Rev A1F7 and it worked.

Return to “Media centres”