Oct 9 2010, 03:22 PM
Post
#1
|
|
|
Enthusiast Group: Members Posts: 6,630 Joined: 10-July 03 From: Canberra Member No.: 38 Card: None |
Hi Guys,
We have a couple of reports from Linux users about having the Quad DVB-T tuner card working under Linux. So, if any one who has got the card and wants to try under Linux, please let us know how it goes. You will need to download this May also want to read this post http://www.dtvforum.info/index.php?showtop...p;#entry1623391 Cheers Renura -------------------- Renura Enterprises Pty Ltd - Owner of DigitalNow and MediaNow- Importers, Distributors and Retailers of Digital TV and other Digital Multimedia Solutions
|
|
|
|
![]() |
Sep 27 2011, 06:35 PM
Post
#2
|
|
|
Participant Group: New Members Posts: 25 Joined: 12-September 11 From: Sydney Member No.: 14,530 Card: None |
OK so I figured it out, and now have a working remote.
First thing... Edit the CODE sudo vim /usr/share/X11/xorg.conf.d/10-evdev.conf and add CODE Section "InputClass" Identifier "other keyboards" MatchIsKeyboard "On" Option "Ignore" "on" EndSection just below the first entry Then edit: CODE Section "InputClass" Identifier "evdev keyboard catchall" MatchIsKeyboard "on" MatchDevicePath "/dev/input/event*" Driver "evdev" Option "Ignore" "off" EndSection to look like CODE Section "InputClass" Identifier "evdev keyboard catchall" MatchProduct "AT Translated Set 2 keyboard" MatchIsKeyboard "on" MatchDevicePath "/dev/input/event*" Driver "evdev" Option "Ignore" "off" EndSection The whole thing: CODE # # Catch-all evdev loader for udev-based systems # We don't simply match on any device since that also adds accelerometers # and other devices that we don't really want to use. The list below # matches everything but joysticks. Section "InputClass" Identifier "evdev pointer catchall" MatchIsPointer "on" MatchDevicePath "/dev/input/event*" Driver "evdev" EndSection Section "InputClass" Identifier "other keyboards" MatchIsKeyboard "On" Option "Ignore" "on" EndSection Section "InputClass" Identifier "evdev keyboard catchall" MatchProduct "AT Translated Set 2 keyboard" MatchIsKeyboard "on" MatchDevicePath "/dev/input/event*" Driver "evdev" Option "Ignore" "off" EndSection Section "InputClass" Identifier "evdev touchpad catchall" MatchIsTouchpad "on" MatchDevicePath "/dev/input/event*" Driver "evdev" EndSection Section "InputClass" Identifier "evdev tablet catchall" MatchIsTablet "on" MatchDevicePath "/dev/input/event*" Driver "evdev" EndSection Section "InputClass" Identifier "evdev touchscreen catchall" MatchIsTouchscreen "on" MatchDevicePath "/dev/input/event*" Driver "evdev" EndSection Save and close: CODE :wq Reboot: CODE sudo reboot When your system comes back up, you can check (if you want) and make sure it's not being seen as a keyboard. CODE cat /var/log/Xorg.0.log | grep keyboards Should say: CODE [ 19.193] (**) Power Button: Ignoring device from InputClass "other keyboards" [ 19.195] (**) Power Button: Ignoring device from InputClass "other keyboards" [ 19.196] (**) IR-receiver inside an USB DVB receiver: Ignoring device from InputClass "other keyboards" [ 19.196] (**) IR-receiver inside an USB DVB receiver: Ignoring device from InputClass "other keyboards" [ 19.196] (**) IR-receiver inside an USB DVB receiver: Ignoring device from InputClass "other keyboards" [ 19.197] (**) IR-receiver inside an USB DVB receiver: Ignoring device from InputClass "other keyboards" [ 19.201] (**) AT Translated Set 2 keyboard: Applying InputClass "other keyboards" Next, you'll need a modified mythtv lircrc file. copy it over the one that was made by mythbuntu (it has multiple double and tripple entries) The origional one lives in: CODE ~/.lirc/mythtv CODE # LIRCRC Auto Generated by Mythbuntu Lirc Generator # Author(s): Mario Limonciello, Nick Fox, John Baab # Created for use with Mythbuntu edited by Scott Waller #KEY_POWER2 // TV POWER #KEY_POWER // PC POWER #KEY_REWIND // REWIND begin remote = devinput prog = mythtv button = KEY_REWIND config = < repeat = 0 delay = 0 end #KEY_PLAY // PLAY begin remote = devinput prog = mythtv button = KEY_PLAY config = P repeat = 0 delay = 0 end #KEY_FASTFORWARD // FAST FORWARD begin remote = devinput prog = mythtv button = KEY_FASTFORWARD config = > repeat = 0 delay = 0 end #KEY_STOP // STOP begin remote = devinput prog = mythtv button = KEY_STOP config = Escape repeat = 0 delay = 0 end #KEY_PREVIOUS // SKIP BACK begin remote = devinput prog = mythtv button = KEY_PREVIOUS config = < repeat = 0 delay = 0 end #KEY_PLAYPAUSE // PAUSE begin remote = devinput prog = mythtv button = KEY_PLAYPAUSE config = P repeat = 0 delay = 0 end #KEY_NEXT // SKIP FOWARD begin remote = devinput prog = mythtv button = KEY_NEXT config = > repeat = 0 delay = 0 end #KEY_RECORD // RECORD begin remote = devinput prog = mythtv button = KEY_RECORD config = R repeat = 0 delay = 0 end #KEY_BACK // BACK begin remote = devinput prog = mythtv button = KEY_BACK config = Escape repeat = 0 delay = 0 end #KEY_INFO // MORE begin remote = devinput prog = mythtv button = KEY_INFO config = I repeat = 0 delay = 0 end #KEY_UP // UP begin remote = devinput prog = mythtv button = KEY_UP config = Up repeat = 0 delay = 0 end #KEY_DOWN // DOWN begin remote = devinput prog = mythtv button = KEY_DOWN config = Down repeat = 0 delay = 0 end #KEY_LEFT // LEFT begin remote = devinput prog = mythtv button = KEY_LEFT config = Left repeat = 0 delay = 0 end #KEY_RIGHT // RIGHT begin remote = devinput prog = mythtv button = KEY_RIGHT config = Right repeat = 0 delay = 0 end #KEY_OK // OK begin remote = devinput prog = mythtv button = KEY_OK config = Space repeat = 0 delay = 0 end #KEY_ZOOM // ASPECT begin remote = devinput prog = mythtv button = KEY_ZOOM config = W repeat = 0 delay = 0 end #KEY_RED // RED #KEY_GREEN // GREEN #KEY_YELLOW // YELLOW #KEY_BLUE // BLUE begin remote = devinput prog = mythtv button = KEY_BLUE config = T repeat = 0 delay = 0 end #KEY_VOLUMEUP // VOL UP begin remote = devinput prog = mythtv button = KEY_VOLUMEUP config = ] repeat = 0 delay = 0 end #KEY_VOLUMEDOWN // VOL DOWN begin remote = devinput prog = mythtv button = KEY_VOLUMEDOWN config = [ repeat = 0 delay = 0 end #KEY_HOME // HOME begin remote = devinput prog = mythtv button = KEY_HOME config = M repeat = 0 delay = 0 end #KEY_MUTE // MUTE begin remote = devinput prog = mythtv button = KEY_MUTE config = | repeat = 0 delay = 0 end #KEY_CHANNELUP // CH UP #KEY_CHANNELDOWN // CH DOWN #KEY_0 // 0 begin remote = devinput prog = mythtv button = KEY_0 config = 0 repeat = 0 delay = 0 end #KEY_1 // 1 begin remote = devinput prog = mythtv button = KEY_1 config = 1 repeat = 0 delay = 0 end #KEY_2 // 2 begin remote = devinput prog = mythtv button = KEY_2 config = 2 repeat = 0 delay = 0 end #KEY_3 // 3 begin remote = devinput prog = mythtv button = KEY_3 config = 3 repeat = 0 delay = 0 end #KEY_4 // 4 begin remote = devinput prog = mythtv button = KEY_4 config = 4 repeat = 0 delay = 0 end #KEY_5 // 5 begin remote = devinput prog = mythtv button = KEY_5 config = 5 repeat = 0 delay = 0 end #KEY_6 // 6 begin remote = devinput prog = mythtv button = KEY_6 config = 6 repeat = 0 delay = 0 end #KEY_7 // 7 begin remote = devinput prog = mythtv button = KEY_7 config = 7 repeat = 0 delay = 0 end #KEY_8 // 8 begin remote = devinput prog = mythtv button = KEY_8 config = 8 repeat = 0 delay = 0 end #KEY_9 // 9 begin remote = devinput prog = mythtv button = KEY_9 config = 9 repeat = 0 delay = 0 end #KEY_NUMERIC_STAR // * begin remote = devinput prog = mythtv button = KEY_NUMERIC_STAR config = Alt+F7 repeat = 0 delay = 0 end #KEY_NUMERIC_POUND // # begin remote = devinput prog = mythtv button = KEY_NUMERIC_POUND config = # repeat = 0 delay = 0 end #KEY_EPG // GUIDE begin remote = devinput prog = mythtv button = KEY_EPG config = S repeat = 0 delay = 0 end #KEY_VIDEO // RTV #KEY_HELP // HELP #KEY_CYCLEWINDOWS // PIP(?) begin remote = devinput prog = mythtv button = KEY_CYCLEWINDOWS config = V repeat = 0 delay = 0 end #KEY_RADIO // RADIO #KEY_DVD // DVD #KEY_AUDIO // AUDIO #KEY_TITLE // TITLE Scott |
|
|
|
renura DigitalNow Quad DVB-T Tuner Card and Linux Oct 9 2010, 03:22 PM
DrP Watchout applying automatic updates to linux. Unt... Oct 10 2010, 08:33 AM
tailend I have just had a go compiling the driver on Ubunt... Oct 11 2010, 04:13 PM
DrP I too found that when built against 64 bit linux i... Oct 11 2010, 04:29 PM
tailend I looked for a more recent version of the driver w... Oct 13 2010, 05:23 PM
renura QUOTE (tailend @ Oct 13 2010, 06:23 PM) I... Oct 13 2010, 06:32 PM
tailend I switched my Ubuntu system to 32 bit and recompil... Oct 17 2010, 11:00 PM
renura QUOTE (tailend @ Oct 18 2010, 12:00 AM) I... Oct 18 2010, 07:13 AM
renura Those interested might like to know that there is ... Nov 16 2010, 06:23 PM
lyricnz QUOTE (renura @ Nov 16 2010, 07:23 PM) We... Nov 19 2010, 10:44 AM
gaspo100 QUOTE (renura @ Nov 16 2010, 04:23 PM) We... Dec 10 2010, 02:28 PM
renura QUOTE (gaspo100 @ Dec 10 2010, 03:28 PM) ... Dec 10 2010, 07:31 PM
renura Hi Guys,
One of our customers has modified the co... Dec 22 2010, 12:55 PM
lyricnz QUOTE (renura @ Dec 22 2010, 01:55 PM) On... Dec 23 2010, 10:35 AM
themagicpudding G'day Linux people,
In case it helps, here... Feb 24 2011, 09:55 AM
renura QUOTE (themagicpudding @ Feb 24 2011, 10... Feb 24 2011, 02:08 PM
DrP QUOTE (themagicpudding @ Feb 24 2011, 09... Feb 25 2011, 05:03 AM
themagicpudding All I have heard is a confirmation email from Renu... Feb 25 2011, 01:38 PM
tailend I am trying to compile for 2.6.38-8-generic kernel... Apr 30 2011, 03:53 PM
renura QUOTE (tailend @ Apr 30 2011, 03:53 PM) I... Apr 30 2011, 05:26 PM
tailend QUOTE (renura @ Apr 30 2011, 06:26 PM) Di... Apr 30 2011, 06:54 PM

dayswaste QUOTE (tailend @ Apr 30 2011, 06:24 PM) e... May 5 2011, 10:43 PM

dayswaste QUOTE (dayswaste @ May 5 2011, 10:13 PM) ... May 5 2011, 10:56 PM
themagicpudding QUOTE (renura @ Apr 30 2011, 06:26 PM) Di... May 12 2011, 02:38 PM
themagicpudding QUOTE (renura @ Apr 30 2011, 06:26 PM) Di... May 12 2011, 02:52 PM
flunky [quote name='themagicpudding' date='Ma... May 23 2011, 08:30 PM
renura Look also here
https://www.turnovfree.net/~stybla... May 24 2011, 09:05 AM
hughhalf Hiya,
Can confirm the card running on Ubuntu Serv... May 31 2011, 03:28 PM
renura QUOTE (hughhalf @ May 31 2011, 03:28 PM) ... Jun 1 2011, 08:36 AM
lyricnz I must add my name to the chorus of frustration wi... Jun 1 2011, 01:49 PM
renura QUOTE (lyricnz @ Jun 1 2011, 01:49 PM) I ... Jun 4 2011, 03:10 PM
flunky QUOTE (renura @ Jun 4 2011, 03:10 PM) Unf... Jun 16 2011, 11:32 PM
flunky See also http://www.linuxtv.org/wiki/index.php/Rea... Jun 17 2011, 05:19 PM
dayswaste So the consensus is if you are running a kernel ve... Jun 2 2011, 08:55 PM
hughhalf Hiya
Flunky had asked for some sample lspci outpu... Jun 19 2011, 03:36 PM
HTPC_Freak I can confirm I have this card working in Ubuntu 1... Jul 10 2011, 08:57 AM
dayswaste Thanks HTPC_Freak.
After seeing your post on Satu... Jul 12 2011, 11:03 PM
themagicpudding Thanks for inspiring me HTPC_Freak.
In case anyon... Aug 29 2011, 12:53 AM
therat Many thanks for providing that info.
cheers Jul 10 2011, 12:35 PM
Flakheart I am totally new to linux and use PC-LinuxOS 32 bi... Aug 25 2011, 02:47 PM
Flakheart I'll give and and stick to windows as my kerne... Aug 29 2011, 03:28 PM
themagicpudding Hi all,
I've done some work on the Realtek so... Sep 15 2011, 12:22 AM
themagicpudding I've sped up the build process and made it a b... Sep 15 2011, 06:36 PM
renura @themagicpudding
looks like you are on a roll here... Sep 15 2011, 06:57 PM
themagicpudding In case anyone used it and noticed the remote wasn... Sep 16 2011, 01:27 AM
Scott Waller Hi magicpudding,
Thanks so much for this. I have... Sep 16 2011, 10:54 AM
Scott Waller OK
Sorry magicpudding, I cracked it.
I updated t... Sep 16 2011, 12:34 PM
themagicpudding Good to hear - trying a newer kernel version was g... Sep 16 2011, 12:54 PM
Scott Waller Just ran it with kernel 3.0.4-030004-generic
All ... Sep 16 2011, 01:02 PM
Scott Waller I can report that themagicpudding's solution w... Sep 17 2011, 01:31 PM
themagicpudding Glad to hear you're having some level of succe... Sep 19 2011, 09:16 PM
Scott Waller OK I'll take those ideas on board. I have som... Sep 19 2011, 10:20 PM
themagicpudding I don't use the the Quad's remote for my m... Sep 19 2011, 11:06 PM
Scott Waller Thanks for that, but it didn't help. Even in ... Sep 21 2011, 11:29 AM
Scott Waller Hi themagicpudding,
I am wondering if you could p... Sep 21 2011, 10:32 PM
themagicpudding @Scot Waller
Do you get all the keys correctly re... Sep 23 2011, 02:35 PM
Scott Waller Well today I tested the quad card at work. We hav... Sep 23 2011, 02:35 PM
themagicpudding I'd give the Windows install a go for verifica... Sep 23 2011, 02:48 PM
therat The Quad can have those sort of problems with Giga... Sep 23 2011, 03:22 PM
themagicpudding Of course I meant "Gigabyte" motherboard... Sep 23 2011, 03:39 PM
Scott Waller That's exactly the board I have, even with AMD... Sep 23 2011, 03:54 PM
themagicpudding Even with the latest BIOS from Gigabyte my mythtv ... Sep 23 2011, 05:44 PM
Scott Waller QUOTE (themagicpudding @ Sep 23 2011, 05... Sep 24 2011, 10:44 AM
therat As I now understand it, Gigabyte have finally reso... Sep 23 2011, 05:45 PM
themagicpudding Thanks for that information therat.
What should w... Sep 23 2011, 08:09 PM
therat I'm not exactly sure what the technical detail... Sep 23 2011, 09:12 PM
themagicpudding Cool - thanks for the suggestion.
I've emaile... Sep 23 2011, 10:15 PM
Scott Waller Also "themagicpudding"
The new Ubuntu k... Sep 24 2011, 11:49 AM
themagicpudding Glad to hear the avoiding of adapter0 trick helped... Sep 26 2011, 12:12 PM
flunky QUOTE (Scott Waller @ Sep 24 2011, 11:49 ... Sep 27 2011, 08:15 PM
Scott Waller Hi everyone,
Have dedicated today to try and solv... Sep 27 2011, 03:26 PM
themagicpudding I'm not sure but it could well be __because__ ... Sep 27 2011, 06:23 PM
Scott Waller QUOTE (themagicpudding @ Sep 27 2011, 06... Sep 27 2011, 09:02 PM
Scott Waller Sure Flunky
sources.list
CODE# deb cdrom:[Mythbu... Sep 27 2011, 08:41 PM
JamesLaugesen Hi magic, thanks so much for putting this script a... Sep 28 2011, 10:47 AM
themagicpudding Hi James,
Try the updated version like this (in a... Sep 28 2011, 06:21 PM
JamesLaugesen QUOTE (themagicpudding @ Sep 28 2011, 06... Oct 9 2011, 07:49 PM

Scott Waller QUOTE (JamesLaugesen @ Oct 9 2011, 07:49 ... Oct 10 2011, 01:15 PM
slith QUOTE (themagicpudding @ Sep 28 2011, 07... Oct 21 2011, 02:16 AM
Scott Waller QUOTE (slith @ Oct 21 2011, 02:16 AM) Hi ... Oct 21 2011, 09:20 AM
slith QUOTE (Scott Waller @ Oct 21 2011, 10:20 ... Oct 22 2011, 02:49 PM
themagicpudding QUOTE (slith @ Oct 22 2011, 03:49 PM) You... Oct 27 2011, 12:39 PM
Scott Waller Hi All,
Got this response from Gigabyte re Firmwa... Sep 30 2011, 03:25 PM
renura QUOTE (Scott Waller @ Sep 30 2011, 03:25 ... Sep 30 2011, 05:14 PM
themagicpudding Hi all.
I might be getting further with Gigabyte.... Oct 2 2011, 10:21 PM
themagicpudding Or maybe not. All I'm hearing are reasons to ... Oct 3 2011, 08:53 PM
Scott Waller QUOTE (themagicpudding @ Oct 3 2011, 08:5... Oct 4 2011, 04:25 PM
Scott Waller Hi All,
I have grabbed a ASUS MB to finally put t... Oct 19 2011, 07:47 AM
Scott Waller Hi again folks,
I got it working by manually runn... Oct 19 2011, 09:57 AM
Scott Waller Hi guys,
Just reporting back on my experiences wi... Oct 20 2011, 01:51 PM
slith Hi magic,
I just upgraded another MythTV box usin... Oct 30 2011, 11:01 PM
old_codger Hi fellas... new user around here. Great board
A... Nov 11 2011, 12:00 AM
Scott Waller QUOTE (old_codger @ Nov 11 2011, 12:00 AM... Nov 11 2011, 07:17 AM
old_codger QUOTE (Scott Waller @ Nov 11 2011, 07:17 ... Nov 12 2011, 06:56 AM
Scott Waller QUOTE (old_codger @ Nov 12 2011, 06:56 AM... Nov 12 2011, 11:55 AM
old_codger QUOTE (Scott Waller @ Nov 12 2011, 11:55 ... Nov 13 2011, 12:07 AM
ccss QUOTE (old_codger @ Nov 13 2011, 01:07 AM... Nov 13 2011, 05:41 AM
old_codger OK! I removed the old modules, removed the ... Nov 13 2011, 08:38 AM
old_codger OK! I've done the various stages of runnin... Nov 14 2011, 02:30 AM![]() ![]() |
|
Lo-Fi Version | Time is now: 20th May 2013 - 04:00 PM |