OpenELEC / OpenELEC.tv

OpenELEC - The living room PC for everyone
http://openelec.tv
1.61k stars 883 forks source link

Skystar USB HD Support #1140

Closed bennykill closed 11 years ago

bennykill commented 12 years ago

Hi! Don't know if this is the right place. It would be cool if OpenELEC could support the Skystar USB HD from Technisat !(http://www.technisat.com/de_DE/SkyStar-USB-HD/352-1294131238891-1246563456759/) It is the cheapest USB DVB-S tuner i found! I use it under ubuntu! ;)

Here is my dmesg output created with OpenELEC 2.0 Beta 7:

http://pastebin.com/ZVJY9wFR

lsusb output:

Bus 001 Device 002: ID 14f7:0500 TechniSat Digital GmbH DVB-PC TV Star HD

Janpopan commented 12 years ago

The device should work, do you use a PVR build? Which build do you use?

Cheers Jan

bennykill commented 12 years ago

I used the PVR version of OpenELEC 2.0 Beta 7!

Janpopan commented 12 years ago

Yes - I am sure but which one?

Fusion/ION/Intel/..... 32/64 Bit with or without PVR?

Cheers Jan

bennykill commented 12 years ago

Intel 32bit pvr

----- Reply message ----- Von: "Janpopan" notifications@github.com An: "OpenELEC/OpenELEC.tv" OpenELEC.tv@noreply.github.com Cc: "bennykill" info@bennykill.de Betreff: [OpenELEC.tv] Skystar USB HD Support (#1140) Datum: Mo., Sep. 3, 2012 18:41 Yes - I am sure but which one?

Fusion/ION/Intel/.....

32/64 Bit

with or without PVR?

Cheers

Jan

Reply to this email directly or view it on GitHub.

Janpopan commented 12 years ago

Thanks, the module is build - but it will not load automaticly:

http://openelec.tv/forum/83-dvb-ss2-support/30943-technisat-skystar-usb2-dvb-s2-suspend

I think you can configure to unload/load the drive before/after suspend, there is a setting in the addon.

I will take a look in the linux-media mailing list, maybe there is a fix for autoload.

bennykill commented 12 years ago

Im not talking about the skystar usb 2 with ci...im talking about the first skystar usb without ci support! They need different drivers!

Gesendet mit meinem HTC

----- Reply message ----- Von: "Janpopan" notifications@github.com An: "OpenELEC/OpenELEC.tv" OpenELEC.tv@noreply.github.com Cc: "bennykill" info@bennykill.de Betreff: [OpenELEC.tv] Skystar USB HD Support (#1140) Datum: Mo., Sep. 3, 2012 19:35 Thanks, the module is build - but it will not load automaticly:

http://openelec.tv/forum/83-dvb-ss2-support/30943-technisat-skystar-usb2-dvb-s2-suspend

I think you can configure to unload/load the drive before/after suspend, there is a setting in the addon.

I will take a look in the linux-media mailing list, maybe there is a fix for autoload.

Reply to this email directly or view it on GitHub.

Janpopan commented 12 years ago

Yes, you need the "dvb-usb-technisat-usb2" modul for the USB ID 14f7:0500 (without CI) And for some reasons you have to load it by hand or modify /etc/modules http://www.linuxtv.org/wiki/index.php/Technisat_SkyStar_USB_HD

bennykill commented 12 years ago

Ok i could load the Skystar USB module with modprobe, but howto modify /etc/modules? it's read-only! :(

Janpopan commented 11 years ago

Today there was a simple patch for autoload the module at the linux-media mailing list, I am away from my buildsystem, so I can't build and test it. Maybe anybody else can make a testbuild:

This patch adds a module-device-table-entry to the
technisat-usb2-driver which will help udev to on-demand load the
driver. This was obviously forgotten during initial commit.

Signed-off-by: Patrick Boettcher <pboettcher@kernellabs.com>
---
 drivers/media/usb/dvb-usb/technisat-usb2.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/media/usb/dvb-usb/technisat-usb2.c b/drivers/media/usb/dvb-usb/technisat-usb2.c
index acefaa8..7a8c8c1 100644
--- a/drivers/media/usb/dvb-usb/technisat-usb2.c
+++ b/drivers/media/usb/dvb-usb/technisat-usb2.c
@@ -677,6 +677,7 @@ static struct usb_device_id technisat_usb2_id_table[] = {
    { USB_DEVICE(USB_VID_TECHNISAT, USB_PID_TECHNISAT_USB2_DVB_S2) },
    { 0 }       /* Terminating entry */
 };
+MODULE_DEVICE_TABLE(usb, technisat_usb2_id_table);

 /* device description */
 static struct dvb_usb_device_properties technisat_usb2_devices = {
-- 1.7.9.5 -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Cheers Jan

Janpopan commented 11 years ago

Can you test this build: http://jan-hill.com/OpenELEC-Intel.i386-devel-20121003202615-r12041.tar.bz2 and give me a feedback?

Jan