Can somebody tell me how to set up the August DVB T202 USB tuner. The chipset is Siano1140
August DVB T202 tuner
Re: August DVB T202 tuner #2
Posted 30 November 2013 - 18:45
opkg update opkg install enigma2-plugin-drivers-dvb-usb-sianoAlso it's good to know the usb id (lsusb command shows that)
Unamed: 13E Quattro - 9E Quattro on IKUSI MS-0916
Re: August DVB T202 tuner #3
Posted 1 December 2013 - 12:07
Hi Athik
Thanks for your feedback.
OPKG completed no problem
package enigma2-plugin-drivers-dvb-usb-siano (1.0-r6)installed in root and is up to date
lsusb command listed the following
Bus 002 device 002: ID 1a40:0101
Bus 001 device 001: ID 1d6b:0102
Bus 002 device 001: ID 1d6b:0102
Bus 003 device 001: ID 1d6b:0101
Bus 004 device 001: ID 1d6b:0101
Bus 002 device 003: ID 1307:0163
Bus 002 device 004: ID dead:beef
Re: August DVB T202 tuner #4
Posted 1 December 2013 - 12:38
When you run lsubs with or without usb stick the output differs?
Unamed: 13E Quattro - 9E Quattro on IKUSI MS-0916
Re: August DVB T202 tuner #5
Posted 1 December 2013 - 13:25
- I plugged the dvb tuner into a usb slot at the back and a keycard (ntfs formatted) into the front USB
- I now get the fllowing reply to the lsusb command
- Bus 001 device 002: ID 187f:0202
Bus 002 device 002: ID 1a40:0101
Bus 001 device 001: ID 1d6b:0102
Bus 002 device 001: ID 1d6b:0102
Bus 003 device 001: ID 1d6b:0101 - Bus 004 device 001: ID 1d6b:0101
Bus 002 device 005: ID 1307:0163
Bus 002 device 004: ID dead:beef
Re: August DVB T202 tuner #6
Posted 1 December 2013 - 14:52
Bus 001 device 002: ID 187f:0202
Is the DVB-T visible on enigma?
Unamed: 13E Quattro - 9E Quattro on IKUSI MS-0916
Re: August DVB T202 tuner #7
Posted 1 December 2013 - 20:23
Your usb stick is supported, but it is not loading automatically the driver!
https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/tree/drivers/media/dvb/siano/smsusb.c?id=refs/tags/v3.2#n526 ... { USB_DEVICE(0x187f, 0x0202), .driver_info = SMS1XXX_BOARD_SIANO_NICE }, ...But as you can see the program is not loading the driver for smsdvb.
https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/tree/drivers/media/dvb/siano/sms-cards.c?id=refs/tags/v3.2#n297 ... int sms_board_load_modules(int id) { switch (id) { case SMS1XXX_BOARD_HAUPPAUGE_CATAMOUNT: case SMS1XXX_BOARD_HAUPPAUGE_OKEMO_A: case SMS1XXX_BOARD_HAUPPAUGE_OKEMO_B: case SMS1XXX_BOARD_HAUPPAUGE_WINDHAM: case SMS1XXX_BOARD_HAUPPAUGE_TIGER_MINICARD: case SMS1XXX_BOARD_HAUPPAUGE_TIGER_MINICARD_R2: request_module("smsdvb"); break; default: /* do nothing */ break; } return 0; ...Actually there is a patch to automatically load smsdvb for even more siano sticks, but SMS1XXX_BOARD_SIANO_NICE is not on the list.
http://sourceforge.net/p/openpli/openpli-oe-core/ci/master/tree/meta-openpli/recipes-linux/linux/files/fix-dvb-siano-sms-order.patch --- linux-3.6.0.orig/drivers/media/dvb/siano/sms-cards.c +++ linux-3.6.0/drivers/media/dvb/siano/sms-cards.c @@ -294,6 +294,8 @@ EXPORT_SYMBOL_GPL(sms_board_lna_control) int sms_board_load_modules(int id) { switch (id) { + case SMS1XXX_BOARD_SIANO_NOVA_A: + case SMS1XXX_BOARD_SIANO_NOVA_B: case SMS1XXX_BOARD_HAUPPAUGE_CATAMOUNT: case SMS1XXX_BOARD_HAUPPAUGE_OKEMO_A: case SMS1XXX_BOARD_HAUPPAUGE_OKEMO_B:Actually the problem recently fixed on 3.10 kernel....
https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/drivers/media/common/siano/sms-cards.c?id=9e915e5bc8dfa3380c376a5e10f1abe8c17f324a Without smsdvb, the driver actually does nothing, as it lacks the userspace API. While I wrote it independently, in order to make a sms2270 board I have here to work, this patch is functionally identical to this patch from Doron Cohen: http://patchwork.linuxtv.org/patch/7894/ int sms_board_load_modules(int id) { request_module("smsdvb"); return 0; }Two patches must created, one for kernels < 3.7 and one for kernels >= 3.7 (because file changed location on kernel 3.7)
I think the patch is easy to created. Also this patch obsoletes patch fix-dvb-siano-sms-order.patch.
What STB (vu/dreambox/xtrend and what model) are you using? In order to create kernel module for your machine too.
Edited by athoik, 1 December 2013 - 20:23.
Unamed: 13E Quattro - 9E Quattro on IKUSI MS-0916
Re: August DVB T202 tuner #8
Posted 1 December 2013 - 20:41
Two patches must created, one for kernels < 3.7 and one for kernels >= 3.7 (because file changed location on kernel 3.7)
I think the patch is easy to created. Also this patch obsoletes patch fix-dvb-siano-sms-order.patch.
What STB (vu/dreambox/xtrend and what model) are you using? In order to create kernel module for your machine too.
He is using Xtrend seeing his lsusb output.
Mut@nt HD51 STB 4K
Re: August DVB T202 tuner #9
Re: August DVB T202 tuner #10
Re: August DVB T202 tuner #11
Posted 2 December 2013 - 18:05
kernel-module-smsusb_3.8.7-r0_et9x00.ipk 8.95KB 26 downloads
kernel-module-smsdvb_3.8.7-r0_et9x00.ipk 11.22KB 13 downloads
kernel-module-smsmdtv_3.8.7-r0_et9x00.ipk 17.9KB 12 downloads
You need to upload those files to /tmp (via ftp) and then install with opkg. Finally reboot.
opkg install /tmp/kernel-module-sms*.ipk rebootPlease report if this is working for you.
PS. It is important usb stick to be visible when you run lsusb (because first time in wasn't)
PPS. It this works, i post also the patches, ready for all supported machines
Edited by athoik, 2 December 2013 - 18:06.
Unamed: 13E Quattro - 9E Quattro on IKUSI MS-0916
Re: August DVB T202 tuner #12
Re: August DVB T202 tuner #13
Posted 2 December 2013 - 18:56
Are you using openpli 4? Those are for 4.I uploaded all three files to the tmp directory and ran the instruction -opkg install /tmp/kernel-module-sms*.ipk
I got 3 x messages - not downgrading package Kernal module from 3.8.7 - r8.8 to 3.8.7 - r0
Unamed: 13E Quattro - 9E Quattro on IKUSI MS-0916
Re: August DVB T202 tuner #14
Posted 2 December 2013 - 19:31
I had problems with 0penPli 4.0 My Xtrend box locked during the boot sequence. I had to leave it overnight and it would boot the next day. This was either a power supply problem or an issue with Openpli 4.0. The problem repeatred 3 times so installed the openvix system which I understand is Openpli 3.0. My system had been stable since. I do not know what caused this issue and I posted on thse Xtrend forum but I got no answers. I also posted on the Openvix forum and got no answers. I was delighted to get your almost immediate reply.
Re: August DVB T202 tuner #15
Re: August DVB T202 tuner #16
Posted 2 December 2013 - 20:05
opkg --force-depends install /tmp/kernel-module-sms*.ipk rebootPS. I compiled also the kernel module for dm800se and there was no problem, but stick was in the list that sdsdvb was automatically loaded.
Edited by athoik, 2 December 2013 - 20:06.
Unamed: 13E Quattro - 9E Quattro on IKUSI MS-0916
Re: August DVB T202 tuner #17
Posted 2 December 2013 - 20:27
Hi Athoik,
I successfully repoted the system (this is an unusual problem). The ipk files were no longer in the tmp directory s I uploaded them again. I then ran the opkg --force-depends install /tmp/kernel-module-sms*.ipk and again got - not downgrading package from r8.8 t r0
Re: August DVB T202 tuner #18
Re: August DVB T202 tuner #19
Posted 2 December 2013 - 20:30
opkg --force-downgrade install /tmp/kernel-module-sms*.ipk rebootPS. Every time you reboot machine /tmp will contain no old files, it's ok, normal.
Unamed: 13E Quattro - 9E Quattro on IKUSI MS-0916
Re: August DVB T202 tuner #20
1 user(s) are reading this topic
0 members, 1 guests, 0 anonymous users