Discussion:
Hauppage Nova: doesn't know how to handle a DVBv3 call to delivery system 0
RazzaList
2012-01-14 23:41:31 UTC
Permalink
I have followed the build instructions for the Hauppauge MyTV.t device here
- http://linuxtv.org/wiki/index.php/Hauppauge_myTV.t and built the drivers
as detailed here -
http://linuxtv.org/wiki/index.php/How_to_Obtain,_Build_and_Install_V4L-DVB_D
evice_Drivers on a CentOS 6.2 i386 build.

When I use dvbscan, nothing happens. dmesg shows "
dvb_frontend_ioctl_legacy: doesn't know how to handle a DVBv3 call to
delivery system 0"

[***@cos6 ~]# cd /usr/bin
[***@cos6 bin]# ./dvbscan /usr/share/dvb/dvb-t/uk-Hannington >
/usr/share/dvb/dvb-t/channels.conf
[***@cos6 bin]# dmesg | grep dvb
dvb-usb: found a 'Hauppauge Nova-T MyTV.t' in warm state.
dvb-usb: will pass the complete MPEG2 transport stream to the software
demuxer.
dvb-usb: schedule remote query interval to 50 msecs.
dvb-usb: Hauppauge Nova-T MyTV.t successfully initialized and connected.
usbcore: registered new interface driver dvb_usb_dib0700
dvb_frontend_ioctl_legacy: doesn't know how to handle a DVBv3 call to
delivery system 0

I have searched but can't locate a fix. Any pointers?
Gianluca Gennari
2012-01-14 23:44:33 UTC
Permalink
Post by RazzaList
I have followed the build instructions for the Hauppauge MyTV.t device here
- http://linuxtv.org/wiki/index.php/Hauppauge_myTV.t and built the drivers
as detailed here -
http://linuxtv.org/wiki/index.php/How_to_Obtain,_Build_and_Install_V4L-DVB_D
evice_Drivers on a CentOS 6.2 i386 build.
When I use dvbscan, nothing happens. dmesg shows "
dvb_frontend_ioctl_legacy: doesn't know how to handle a DVBv3 call to
delivery system 0"
/usr/share/dvb/dvb-t/channels.conf
dvb-usb: found a 'Hauppauge Nova-T MyTV.t' in warm state.
dvb-usb: will pass the complete MPEG2 transport stream to the software
demuxer.
dvb-usb: schedule remote query interval to 50 msecs.
dvb-usb: Hauppauge Nova-T MyTV.t successfully initialized and connected.
usbcore: registered new interface driver dvb_usb_dib0700
dvb_frontend_ioctl_legacy: doesn't know how to handle a DVBv3 call to
delivery system 0
I have searched but can't locate a fix. Any pointers?
--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
More majordomo info at http://vger.kernel.org/majordomo-info.html
Hi,
this patch will likely fix your problem:

http://patchwork.linuxtv.org/patch/9492/

Best regards,
Gianluca
razza lists
2012-01-15 11:35:38 UTC
Permalink
Post by Gianluca Gennari
I have followed the build instructions for the Hauppauge MyTV.t dev=
ice here
Post by Gianluca Gennari
- http://linuxtv.org/wiki/index.php/Hauppauge_myTV.t and built the =
drivers
Post by Gianluca Gennari
as detailed here -
http://linuxtv.org/wiki/index.php/How_to_Obtain,_Build_and_Install_=
V4L-DVB_D
Post by Gianluca Gennari
evice_Drivers on a CentOS 6.2 i386 build.
When I use dvbscan, nothing happens. dmesg shows "
dvb_frontend_ioctl_legacy: doesn't know how to handle a DVBv3 call =
to
Post by Gianluca Gennari
delivery system 0"
/usr/share/dvb/dvb-t/channels.conf
dvb-usb: found a 'Hauppauge Nova-T MyTV.t' in warm state.
dvb-usb: will pass the complete MPEG2 transport stream to the softw=
are
Post by Gianluca Gennari
demuxer.
dvb-usb: schedule remote query interval to 50 msecs.
dvb-usb: Hauppauge Nova-T MyTV.t successfully initialized and conne=
cted.
Post by Gianluca Gennari
usbcore: registered new interface driver dvb_usb_dib0700
dvb_frontend_ioctl_legacy: doesn't know how to handle a DVBv3 call =
to
Post by Gianluca Gennari
delivery system 0
I have searched but can't locate a fix. Any pointers?
--
To unsubscribe from this list: send the line "unsubscribe linux-med=
ia" in
Post by Gianluca Gennari
More majordomo info at =A0http://vger.kernel.org/majordomo-info.htm=
l
Post by Gianluca Gennari
Hi,
http://patchwork.linuxtv.org/patch/9492/
Best regards,
Gianluca
It's very likely the case I'm doing something wrong and I apologise in
advance! However some help/guidance would be great...

I have downloaded the sources as described in the basic approach here
- http://linuxtv.org/wiki/index.php/How_to_Obtain,_Build_and_Install_V4=
L-DVB_Device_Drivers

In the source there is no file called "dvb_frontend.c", so I assume I
start the media_build/build script?
If I do, eventually this creates
media_build/linux/drivers/media/dvb/dvb-core/dvb_frontend.c

I then apply the patch to
media_build/linux/drivers/media/dvb/dvb-core/dvb_frontend.c, and I can
see the added elements...
=2E...
static int dvb_frontend_clear_cache(struct dvb_frontend *fe)
{
struct dtv_frontend_properties *c =3D &fe->dtv_property_cache;
int i;
u32 delsys;

delsys =3D c->delivery_system;
memset(c, 0, sizeof(struct dtv_frontend_properties));
c->delivery_system =3D delsys;

c->state =3D DTV_CLEAR;

dprintk("%s() Clearing cache for delivery system %d\n", __func_=
_,
c->delivery_system);
=2E...............

After a reboot (as I have not got a clue about unloading modules etc.)
I then execute make install but I still get the same error
"dvb_frontend_ioctl_legacy: doesn't know how to handle a DVBv3 call to
delivery system 0" when I use dvbscan.
Gianluca Gennari
2012-01-15 11:51:45 UTC
Permalink
Post by Gianluca Gennari
I have followed the build instructions for the Hauppauge MyTV.t dev=
ice here
Post by Gianluca Gennari
- http://linuxtv.org/wiki/index.php/Hauppauge_myTV.t and built the =
drivers
Post by Gianluca Gennari
as detailed here -
http://linuxtv.org/wiki/index.php/How_to_Obtain,_Build_and_Install_=
V4L-DVB_D
Post by Gianluca Gennari
evice_Drivers on a CentOS 6.2 i386 build.
When I use dvbscan, nothing happens. dmesg shows "
dvb_frontend_ioctl_legacy: doesn't know how to handle a DVBv3 call =
to
Post by Gianluca Gennari
delivery system 0"
/usr/share/dvb/dvb-t/channels.conf
dvb-usb: found a 'Hauppauge Nova-T MyTV.t' in warm state.
dvb-usb: will pass the complete MPEG2 transport stream to the softw=
are
Post by Gianluca Gennari
demuxer.
dvb-usb: schedule remote query interval to 50 msecs.
dvb-usb: Hauppauge Nova-T MyTV.t successfully initialized and conne=
cted.
Post by Gianluca Gennari
usbcore: registered new interface driver dvb_usb_dib0700
dvb_frontend_ioctl_legacy: doesn't know how to handle a DVBv3 call =
to
Post by Gianluca Gennari
delivery system 0
I have searched but can't locate a fix. Any pointers?
--
To unsubscribe from this list: send the line "unsubscribe linux-med=
ia" in
Post by Gianluca Gennari
More majordomo info at =EF=BF=BDhttp://vger.kernel.org/majordomo-in=
fo.html
Post by Gianluca Gennari
Hi,
http://patchwork.linuxtv.org/patch/9492/
Best regards,
Gianluca
=20
It's very likely the case I'm doing something wrong and I apologise i=
n
advance! However some help/guidance would be great...
=20
I have downloaded the sources as described in the basic approach here
- http://linuxtv.org/wiki/index.php/How_to_Obtain,_Build_and_Install_=
V4L-DVB_Device_Drivers
=20
In the source there is no file called "dvb_frontend.c", so I assume I
start the media_build/build script?
If I do, eventually this creates
media_build/linux/drivers/media/dvb/dvb-core/dvb_frontend.c
=20
I then apply the patch to
media_build/linux/drivers/media/dvb/dvb-core/dvb_frontend.c, and I ca=
n
see the added elements...
....
static int dvb_frontend_clear_cache(struct dvb_frontend *fe)
{
struct dtv_frontend_properties *c =3D &fe->dtv_property_cache=
;
int i;
u32 delsys;
=20
delsys =3D c->delivery_system;
memset(c, 0, sizeof(struct dtv_frontend_properties));
c->delivery_system =3D delsys;
=20
c->state =3D DTV_CLEAR;
=20
dprintk("%s() Clearing cache for delivery system %d\n", __fun=
c__,
c->delivery_system);
................
=20
After a reboot (as I have not got a clue about unloading modules etc.=
)
I then execute make install but I still get the same error
"dvb_frontend_ioctl_legacy: doesn't know how to handle a DVBv3 call t=
o
delivery system 0" when I use dvbscan.
=20
You are almost there.
After you apply the patch, you have to recompile the entire source tree=
=2E
You can do it launching the "make" command inside the linux/ folder.
Then reinstall the drivers giving "make install" from the media_build/
folder, and reboot.

Best regards,
Gianluca
Mauro Carvalho Chehab
2012-01-15 14:24:15 UTC
Permalink
Post by Gianluca Gennari
Post by Gianluca Gennari
I have followed the build instructions for the Hauppauge MyTV.t de=
vice here
Post by Gianluca Gennari
Post by Gianluca Gennari
- http://linuxtv.org/wiki/index.php/Hauppauge_myTV.t and built the=
drivers
Post by Gianluca Gennari
Post by Gianluca Gennari
as detailed here -
http://linuxtv.org/wiki/index.php/How_to_Obtain,_Build_and_Install=
_V4L-DVB_D
Post by Gianluca Gennari
Post by Gianluca Gennari
evice_Drivers on a CentOS 6.2 i386 build.
When I use dvbscan, nothing happens. dmesg shows "
dvb_frontend_ioctl_legacy: doesn't know how to handle a DVBv3 call=
to
Post by Gianluca Gennari
Post by Gianluca Gennari
delivery system 0"
/usr/share/dvb/dvb-t/channels.conf
dvb-usb: found a 'Hauppauge Nova-T MyTV.t' in warm state.
dvb-usb: will pass the complete MPEG2 transport stream to the soft=
ware
Post by Gianluca Gennari
Post by Gianluca Gennari
demuxer.
dvb-usb: schedule remote query interval to 50 msecs.
dvb-usb: Hauppauge Nova-T MyTV.t successfully initialized and conn=
ected.
Post by Gianluca Gennari
Post by Gianluca Gennari
usbcore: registered new interface driver dvb_usb_dib0700
dvb_frontend_ioctl_legacy: doesn't know how to handle a DVBv3 call=
to
Post by Gianluca Gennari
Post by Gianluca Gennari
delivery system 0
I have searched but can't locate a fix. Any pointers?
--
To unsubscribe from this list: send the line "unsubscribe linux-me=
dia" in
Post by Gianluca Gennari
Post by Gianluca Gennari
More majordomo info at =EF=BF=BDhttp://vger.kernel.org/majordomo-i=
nfo.html
Post by Gianluca Gennari
Post by Gianluca Gennari
Hi,
http://patchwork.linuxtv.org/patch/9492/
Best regards,
Gianluca
It's very likely the case I'm doing something wrong and I apologise =
in
Post by Gianluca Gennari
advance! However some help/guidance would be great...
I have downloaded the sources as described in the basic approach her=
e
Post by Gianluca Gennari
- http://linuxtv.org/wiki/index.php/How_to_Obtain,_Build_and_Install=
_V4L-DVB_Device_Drivers
Post by Gianluca Gennari
In the source there is no file called "dvb_frontend.c", so I assume =
I
Post by Gianluca Gennari
start the media_build/build script?
If I do, eventually this creates
media_build/linux/drivers/media/dvb/dvb-core/dvb_frontend.c
I then apply the patch to
media_build/linux/drivers/media/dvb/dvb-core/dvb_frontend.c, and I c=
an
Post by Gianluca Gennari
see the added elements...
....
static int dvb_frontend_clear_cache(struct dvb_frontend *fe)
{
struct dtv_frontend_properties *c =3D &fe->dtv_property_cach=
e;
Post by Gianluca Gennari
int i;
u32 delsys;
delsys =3D c->delivery_system;
memset(c, 0, sizeof(struct dtv_frontend_properties));
c->delivery_system =3D delsys;
c->state =3D DTV_CLEAR;
dprintk("%s() Clearing cache for delivery system %d\n", __fu=
nc__,
Post by Gianluca Gennari
c->delivery_system);
................
After a reboot (as I have not got a clue about unloading modules etc=
=2E)
Post by Gianluca Gennari
I then execute make install but I still get the same error
"dvb_frontend_ioctl_legacy: doesn't know how to handle a DVBv3 call =
to
Post by Gianluca Gennari
delivery system 0" when I use dvbscan.
=20
You are almost there.
After you apply the patch, you have to recompile the entire source tr=
ee.
Post by Gianluca Gennari
You can do it launching the "make" command inside the linux/ folder.
Then reinstall the drivers giving "make install" from the media_build=
/
Post by Gianluca Gennari
folder, and reboot.
I've added the fixes for it today. So, tomorrow's tarballs should have =
this
bug fixed.
Post by Gianluca Gennari
=20
Best regards,
Gianluca
--
To unsubscribe from this list: send the line "unsubscribe linux-media=
" in
Post by Gianluca Gennari
More majordomo info at http://vger.kernel.org/majordomo-info.html
razza lists
2012-01-15 15:04:41 UTC
Permalink
Post by Gianluca Gennari
Post by Gianluca Gennari
I have followed the build instructions for the Hauppauge MyTV.t d=
evice here
Post by Gianluca Gennari
Post by Gianluca Gennari
- http://linuxtv.org/wiki/index.php/Hauppauge_myTV.t and built th=
e drivers
Post by Gianluca Gennari
Post by Gianluca Gennari
as detailed here -
http://linuxtv.org/wiki/index.php/How_to_Obtain,_Build_and_Instal=
l_V4L-DVB_D
Post by Gianluca Gennari
Post by Gianluca Gennari
evice_Drivers on a CentOS 6.2 i386 build.
When I use dvbscan, nothing happens. dmesg shows "
dvb_frontend_ioctl_legacy: doesn't know how to handle a DVBv3 cal=
l to
Post by Gianluca Gennari
Post by Gianluca Gennari
delivery system 0"
/usr/share/dvb/dvb-t/channels.conf
dvb-usb: found a 'Hauppauge Nova-T MyTV.t' in warm state.
dvb-usb: will pass the complete MPEG2 transport stream to the sof=
tware
Post by Gianluca Gennari
Post by Gianluca Gennari
demuxer.
dvb-usb: schedule remote query interval to 50 msecs.
dvb-usb: Hauppauge Nova-T MyTV.t successfully initialized and con=
nected.
Post by Gianluca Gennari
Post by Gianluca Gennari
usbcore: registered new interface driver dvb_usb_dib0700
dvb_frontend_ioctl_legacy: doesn't know how to handle a DVBv3 cal=
l to
Post by Gianluca Gennari
Post by Gianluca Gennari
delivery system 0
I have searched but can't locate a fix. Any pointers?
--
To unsubscribe from this list: send the line "unsubscribe linux-m=
edia" in
Post by Gianluca Gennari
Post by Gianluca Gennari
More majordomo info at =EF=BF=BDhttp://vger.kernel.org/majordomo-=
info.html
Post by Gianluca Gennari
Post by Gianluca Gennari
Hi,
http://patchwork.linuxtv.org/patch/9492/
Best regards,
Gianluca
It's very likely the case I'm doing something wrong and I apologise=
in
Post by Gianluca Gennari
advance! However some help/guidance would be great...
I have downloaded the sources as described in the basic approach he=
re
Post by Gianluca Gennari
- http://linuxtv.org/wiki/index.php/How_to_Obtain,_Build_and_Instal=
l_V4L-DVB_Device_Drivers
Post by Gianluca Gennari
In the source there is no file called "dvb_frontend.c", so I assume=
I
Post by Gianluca Gennari
start the media_build/build script?
If I do, eventually this creates
media_build/linux/drivers/media/dvb/dvb-core/dvb_frontend.c
I then apply the patch to
media_build/linux/drivers/media/dvb/dvb-core/dvb_frontend.c, and I =
can
Post by Gianluca Gennari
see the added elements...
....
static int dvb_frontend_clear_cache(struct dvb_frontend *fe)
{
=C2=A0 =C2=A0 =C2=A0 =C2=A0 struct dtv_frontend_properties *c =3D &=
fe->dtv_property_cache;
Post by Gianluca Gennari
=C2=A0 =C2=A0 =C2=A0 =C2=A0 int i;
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0u32 delsys;
=C2=A0 =C2=A0 =C2=A0 =C2=A0 delsys =3D c->delivery_system;
=C2=A0 =C2=A0 =C2=A0 =C2=A0 memset(c, 0, sizeof(struct dtv_frontend=
_properties));
Post by Gianluca Gennari
=C2=A0 =C2=A0 =C2=A0 =C2=A0 c->delivery_system =3D delsys;
=C2=A0 =C2=A0 =C2=A0 =C2=A0 c->state =3D DTV_CLEAR;
=C2=A0 =C2=A0 =C2=A0 =C2=A0 dprintk("%s() Clearing cache for delive=
ry system %d\n", __func__,
Post by Gianluca Gennari
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0=
=C2=A0c->delivery_system);
Post by Gianluca Gennari
................
After a reboot (as I have not got a clue about unloading modules et=
c.)
Post by Gianluca Gennari
I then execute make install but I still get the same error
"dvb_frontend_ioctl_legacy: doesn't know how to handle a DVBv3 call=
to
Post by Gianluca Gennari
delivery system 0" when I use dvbscan.
You are almost there.
After you apply the patch, you have to recompile the entire source t=
ree.
Post by Gianluca Gennari
You can do it launching the "make" command inside the linux/ folder.
Then reinstall the drivers giving "make install" from the media_buil=
d/
Post by Gianluca Gennari
folder, and reboot.
I've added the fixes for it today. So, tomorrow's tarballs should hav=
e this
bug fixed.
Post by Gianluca Gennari
Best regards,
Gianluca
--
To unsubscribe from this list: send the line "unsubscribe linux-medi=
a" in
Post by Gianluca Gennari
More majordomo info at =C2=A0http://vger.kernel.org/majordomo-info.h=
tml
I'm glad about that as I am getting nowhere fast. Looks like it's
better to rebuild the box in the week and save wasting your time.
After patching etc, I did manage to get a little bit further, but when
using dvbscan I got an error:

[***@cos6 bin]# dvbscan /usr/share/dvb/dvb-t/uk-Hannington >
/home/mythtv/channels.conf
Unable to query frontend status

Dmesg output:
usb 1-3: new high speed USB device using ehci_hcd and address 2
usb 1-3: New USB device found, idVendor=3D2040, idProduct=3D7080
usb 1-3: New USB device strings: Mfr=3D1, Product=3D2, SerialNumber=3D3
usb 1-3: Product: myTV.t
usb 1-3: Manufacturer: Eskape Labs
usb 1-3: SerialNumber: 4030928317
usb 1-3: configuration #1 chosen from 1 choice
WARNING: You are using an experimental version of the media stack.
As the driver is backported to an older kernel, it doesn't offer
enough quality for its usage in production.
Use it with care.
Latest git patches (needed if you report a bug to linux-***@vger.kern=
el.org):
240ab508aa9fb7a294b0ecb563b19ead000b2463 [media] [PATCH] don't reset
the delivery system on DTV_CLEAR
9544e8a64795d75875ff4c680a43aa452a37b260 [media] [BUG] it913x-fe fix
typo error making SNR levels unstable
c147f61083e3e4a9c2aaecaaed976502defc3b7d [media] cx23885: Query the
CX25840 during enum_input for status
WARNING: You are using an experimental version of the media stack.
As the driver is backported to an older kernel, it doesn't offer
enough quality for its usage in production.
Use it with care.
Latest git patches (needed if you report a bug to linux-***@vger.kern=
el.org):
240ab508aa9fb7a294b0ecb563b19ead000b2463 [media] [PATCH] don't reset
the delivery system on DTV_CLEAR
9544e8a64795d75875ff4c680a43aa452a37b260 [media] [BUG] it913x-fe fix
typo error making SNR levels unstable
c147f61083e3e4a9c2aaecaaed976502defc3b7d [media] cx23885: Query the
CX25840 during enum_input for status
IR NEC protocol handler initialized
IR RC5(x) protocol handler initialized
IR RC6 protocol handler initialized
IR JVC protocol handler initialized
IR Sony protocol handler initialized
IR SANYO protocol handler initialized
IR MCE Keyboard/mouse protocol handler initialized
dib0700: loaded with support for 24 different device-types
dvb-usb: found a 'Hauppauge Nova-T MyTV.t' in cold state, will try to
load a firmware
usb 1-3: firmware: requesting dvb-usb-dib0700-1.20.fw
lirc_dev: IR Remote Control driver registered, major 248
IR LIRC bridge handler initialized
dvb-usb: downloading firmware from file 'dvb-usb-dib0700-1.20.fw'
dib0700: firmware started successfully.
dvb-usb: found a 'Hauppauge Nova-T MyTV.t' in warm state.
dvb-usb: will pass the complete MPEG2 transport stream to the software =
demuxer.
DVB: registering new adapter (Hauppauge Nova-T MyTV.t)
DVB: registering adapter 0 frontend 0 (DiBcom 7000PC)...
DiB0070: successfully identified
dvb-usb: Hauppauge Nova-T MyTV.t successfully initialized and connected=
=2E
usbcore: registered new interface driver dvb_usb_dib0700
Gianluca Gennari
2012-01-15 16:22:37 UTC
Permalink
Post by razza lists
Post by Gianluca Gennari
Post by Gianluca Gennari
I have followed the build instructions for the Hauppauge MyTV.t =
device here
Post by razza lists
Post by Gianluca Gennari
Post by Gianluca Gennari
- http://linuxtv.org/wiki/index.php/Hauppauge_myTV.t and built t=
he drivers
Post by razza lists
Post by Gianluca Gennari
Post by Gianluca Gennari
as detailed here -
http://linuxtv.org/wiki/index.php/How_to_Obtain,_Build_and_Insta=
ll_V4L-DVB_D
Post by razza lists
Post by Gianluca Gennari
Post by Gianluca Gennari
evice_Drivers on a CentOS 6.2 i386 build.
When I use dvbscan, nothing happens. dmesg shows "
dvb_frontend_ioctl_legacy: doesn't know how to handle a DVBv3 ca=
ll to
Post by razza lists
Post by Gianluca Gennari
Post by Gianluca Gennari
delivery system 0"
/usr/share/dvb/dvb-t/channels.conf
dvb-usb: found a 'Hauppauge Nova-T MyTV.t' in warm state.
dvb-usb: will pass the complete MPEG2 transport stream to the so=
ftware
Post by razza lists
Post by Gianluca Gennari
Post by Gianluca Gennari
demuxer.
dvb-usb: schedule remote query interval to 50 msecs.
dvb-usb: Hauppauge Nova-T MyTV.t successfully initialized and co=
nnected.
Post by razza lists
Post by Gianluca Gennari
Post by Gianluca Gennari
usbcore: registered new interface driver dvb_usb_dib0700
dvb_frontend_ioctl_legacy: doesn't know how to handle a DVBv3 ca=
ll to
Post by razza lists
Post by Gianluca Gennari
Post by Gianluca Gennari
delivery system 0
I have searched but can't locate a fix. Any pointers?
--
To unsubscribe from this list: send the line "unsubscribe linux-=
media" in
Post by razza lists
Post by Gianluca Gennari
Post by Gianluca Gennari
More majordomo info at =EF=BF=BDhttp://vger.kernel.org/majordomo=
-info.html
Post by razza lists
Post by Gianluca Gennari
Post by Gianluca Gennari
Hi,
http://patchwork.linuxtv.org/patch/9492/
Best regards,
Gianluca
It's very likely the case I'm doing something wrong and I apologis=
e in
Post by razza lists
Post by Gianluca Gennari
advance! However some help/guidance would be great...
I have downloaded the sources as described in the basic approach h=
ere
Post by razza lists
Post by Gianluca Gennari
- http://linuxtv.org/wiki/index.php/How_to_Obtain,_Build_and_Insta=
ll_V4L-DVB_Device_Drivers
Post by razza lists
Post by Gianluca Gennari
In the source there is no file called "dvb_frontend.c", so I assum=
e I
Post by razza lists
Post by Gianluca Gennari
start the media_build/build script?
If I do, eventually this creates
media_build/linux/drivers/media/dvb/dvb-core/dvb_frontend.c
I then apply the patch to
media_build/linux/drivers/media/dvb/dvb-core/dvb_frontend.c, and I=
can
Post by razza lists
Post by Gianluca Gennari
see the added elements...
....
static int dvb_frontend_clear_cache(struct dvb_frontend *fe)
{
struct dtv_frontend_properties *c =3D &fe->dtv_property_ca=
che;
Post by razza lists
Post by Gianluca Gennari
int i;
u32 delsys;
delsys =3D c->delivery_system;
memset(c, 0, sizeof(struct dtv_frontend_properties));
c->delivery_system =3D delsys;
c->state =3D DTV_CLEAR;
dprintk("%s() Clearing cache for delivery system %d\n", __=
func__,
Post by razza lists
Post by Gianluca Gennari
c->delivery_system);
................
After a reboot (as I have not got a clue about unloading modules e=
tc.)
Post by razza lists
Post by Gianluca Gennari
I then execute make install but I still get the same error
"dvb_frontend_ioctl_legacy: doesn't know how to handle a DVBv3 cal=
l to
Post by razza lists
Post by Gianluca Gennari
delivery system 0" when I use dvbscan.
You are almost there.
After you apply the patch, you have to recompile the entire source =
tree.
Post by razza lists
Post by Gianluca Gennari
You can do it launching the "make" command inside the linux/ folder=
=2E
Post by razza lists
Post by Gianluca Gennari
Then reinstall the drivers giving "make install" from the media_bui=
ld/
Post by razza lists
Post by Gianluca Gennari
folder, and reboot.
I've added the fixes for it today. So, tomorrow's tarballs should ha=
ve this
Post by razza lists
bug fixed.
Post by Gianluca Gennari
Best regards,
Gianluca
--
To unsubscribe from this list: send the line "unsubscribe linux-med=
ia" in
Post by razza lists
Post by Gianluca Gennari
More majordomo info at http://vger.kernel.org/majordomo-info.html
I'm glad about that as I am getting nowhere fast. Looks like it's
better to rebuild the box in the week and save wasting your time.
After patching etc, I did manage to get a little bit further, but whe=
n
Post by razza lists
=20
/home/mythtv/channels.conf
Unable to query frontend status
According to the dvbscan wiki page:

http://linuxtv.org/wiki/index.php/Dvbscan

if you get this error you should try other scanning utilities, like sca=
n
or w_scan. You can also try a real application, like Kaffeine.

Best regards,
Gianluca
Post by razza lists
=20
usb 1-3: new high speed USB device using ehci_hcd and address 2
usb 1-3: New USB device found, idVendor=3D2040, idProduct=3D7080
usb 1-3: New USB device strings: Mfr=3D1, Product=3D2, SerialNumber=3D=
3
Post by razza lists
usb 1-3: Product: myTV.t
usb 1-3: Manufacturer: Eskape Labs
usb 1-3: SerialNumber: 4030928317
usb 1-3: configuration #1 chosen from 1 choice
WARNING: You are using an experimental version of the media stack.
As the driver is backported to an older kernel, it doesn't offer
enough quality for its usage in production.
Use it with care.
240ab508aa9fb7a294b0ecb563b19ead000b2463 [media] [PATCH] don't reset
the delivery system on DTV_CLEAR
9544e8a64795d75875ff4c680a43aa452a37b260 [media] [BUG] it913x-fe fix
typo error making SNR levels unstable
c147f61083e3e4a9c2aaecaaed976502defc3b7d [media] cx23885: Query the
CX25840 during enum_input for status
WARNING: You are using an experimental version of the media stack.
As the driver is backported to an older kernel, it doesn't offer
enough quality for its usage in production.
Use it with care.
240ab508aa9fb7a294b0ecb563b19ead000b2463 [media] [PATCH] don't reset
the delivery system on DTV_CLEAR
9544e8a64795d75875ff4c680a43aa452a37b260 [media] [BUG] it913x-fe fix
typo error making SNR levels unstable
c147f61083e3e4a9c2aaecaaed976502defc3b7d [media] cx23885: Query the
CX25840 during enum_input for status
IR NEC protocol handler initialized
IR RC5(x) protocol handler initialized
IR RC6 protocol handler initialized
IR JVC protocol handler initialized
IR Sony protocol handler initialized
IR SANYO protocol handler initialized
IR MCE Keyboard/mouse protocol handler initialized
dib0700: loaded with support for 24 different device-types
dvb-usb: found a 'Hauppauge Nova-T MyTV.t' in cold state, will try to
load a firmware
usb 1-3: firmware: requesting dvb-usb-dib0700-1.20.fw
lirc_dev: IR Remote Control driver registered, major 248
IR LIRC bridge handler initialized
dvb-usb: downloading firmware from file 'dvb-usb-dib0700-1.20.fw'
dib0700: firmware started successfully.
dvb-usb: found a 'Hauppauge Nova-T MyTV.t' in warm state.
dvb-usb: will pass the complete MPEG2 transport stream to the softwar=
e demuxer.
Post by razza lists
DVB: registering new adapter (Hauppauge Nova-T MyTV.t)
DVB: registering adapter 0 frontend 0 (DiBcom 7000PC)...
DiB0070: successfully identified
dvb-usb: Hauppauge Nova-T MyTV.t successfully initialized and connect=
ed.
Post by razza lists
usbcore: registered new interface driver dvb_usb_dib0700
=20
razza lists
2012-01-15 17:02:24 UTC
Permalink
Post by Gianluca Gennari
Post by razza lists
Post by Gianluca Gennari
Post by Gianluca Gennari
I have followed the build instructions for the Hauppauge MyTV.t=
device here
Post by Gianluca Gennari
Post by razza lists
Post by Gianluca Gennari
Post by Gianluca Gennari
- http://linuxtv.org/wiki/index.php/Hauppauge_myTV.t and built =
the drivers
Post by Gianluca Gennari
Post by razza lists
Post by Gianluca Gennari
Post by Gianluca Gennari
as detailed here -
http://linuxtv.org/wiki/index.php/How_to_Obtain,_Build_and_Inst=
all_V4L-DVB_D
Post by Gianluca Gennari
Post by razza lists
Post by Gianluca Gennari
Post by Gianluca Gennari
evice_Drivers on a CentOS 6.2 i386 build.
When I use dvbscan, nothing happens. dmesg shows "
dvb_frontend_ioctl_legacy: doesn't know how to handle a DVBv3 c=
all to
Post by Gianluca Gennari
Post by razza lists
Post by Gianluca Gennari
Post by Gianluca Gennari
delivery system 0"
/usr/share/dvb/dvb-t/channels.conf
dvb-usb: found a 'Hauppauge Nova-T MyTV.t' in warm state.
dvb-usb: will pass the complete MPEG2 transport stream to the s=
oftware
Post by Gianluca Gennari
Post by razza lists
Post by Gianluca Gennari
Post by Gianluca Gennari
demuxer.
dvb-usb: schedule remote query interval to 50 msecs.
dvb-usb: Hauppauge Nova-T MyTV.t successfully initialized and c=
onnected.
Post by Gianluca Gennari
Post by razza lists
Post by Gianluca Gennari
Post by Gianluca Gennari
usbcore: registered new interface driver dvb_usb_dib0700
dvb_frontend_ioctl_legacy: doesn't know how to handle a DVBv3 c=
all to
Post by Gianluca Gennari
Post by razza lists
Post by Gianluca Gennari
Post by Gianluca Gennari
delivery system 0
I have searched but can't locate a fix. Any pointers?
--
To unsubscribe from this list: send the line "unsubscribe linux=
-media" in
Post by Gianluca Gennari
Post by razza lists
Post by Gianluca Gennari
Post by Gianluca Gennari
More majordomo info at =EF=BF=BDhttp://vger.kernel.org/majordom=
o-info.html
Post by Gianluca Gennari
Post by razza lists
Post by Gianluca Gennari
Post by Gianluca Gennari
Hi,
http://patchwork.linuxtv.org/patch/9492/
Best regards,
Gianluca
It's very likely the case I'm doing something wrong and I apologi=
se in
Post by Gianluca Gennari
Post by razza lists
Post by Gianluca Gennari
advance! However some help/guidance would be great...
I have downloaded the sources as described in the basic approach =
here
Post by Gianluca Gennari
Post by razza lists
Post by Gianluca Gennari
- http://linuxtv.org/wiki/index.php/How_to_Obtain,_Build_and_Inst=
all_V4L-DVB_Device_Drivers
Post by Gianluca Gennari
Post by razza lists
Post by Gianluca Gennari
In the source there is no file called "dvb_frontend.c", so I assu=
me I
Post by Gianluca Gennari
Post by razza lists
Post by Gianluca Gennari
start the media_build/build script?
If I do, eventually this creates
media_build/linux/drivers/media/dvb/dvb-core/dvb_frontend.c
I then apply the patch to
media_build/linux/drivers/media/dvb/dvb-core/dvb_frontend.c, and =
I can
Post by Gianluca Gennari
Post by razza lists
Post by Gianluca Gennari
see the added elements...
....
static int dvb_frontend_clear_cache(struct dvb_frontend *fe)
{
=C2=A0 =C2=A0 =C2=A0 =C2=A0 struct dtv_frontend_properties *c =3D=
&fe->dtv_property_cache;
Post by Gianluca Gennari
Post by razza lists
Post by Gianluca Gennari
=C2=A0 =C2=A0 =C2=A0 =C2=A0 int i;
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0u32 delsys;
=C2=A0 =C2=A0 =C2=A0 =C2=A0 delsys =3D c->delivery_system;
=C2=A0 =C2=A0 =C2=A0 =C2=A0 memset(c, 0, sizeof(struct dtv_fronte=
nd_properties));
Post by Gianluca Gennari
Post by razza lists
Post by Gianluca Gennari
=C2=A0 =C2=A0 =C2=A0 =C2=A0 c->delivery_system =3D delsys;
=C2=A0 =C2=A0 =C2=A0 =C2=A0 c->state =3D DTV_CLEAR;
=C2=A0 =C2=A0 =C2=A0 =C2=A0 dprintk("%s() Clearing cache for deli=
very system %d\n", __func__,
Post by Gianluca Gennari
Post by razza lists
Post by Gianluca Gennari
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=
=A0 =C2=A0c->delivery_system);
Post by Gianluca Gennari
Post by razza lists
Post by Gianluca Gennari
................
After a reboot (as I have not got a clue about unloading modules =
etc.)
Post by Gianluca Gennari
Post by razza lists
Post by Gianluca Gennari
I then execute make install but I still get the same error
"dvb_frontend_ioctl_legacy: doesn't know how to handle a DVBv3 ca=
ll to
Post by Gianluca Gennari
Post by razza lists
Post by Gianluca Gennari
delivery system 0" when I use dvbscan.
You are almost there.
After you apply the patch, you have to recompile the entire source=
tree.
Post by Gianluca Gennari
Post by razza lists
Post by Gianluca Gennari
You can do it launching the "make" command inside the linux/ folde=
r.
Post by Gianluca Gennari
Post by razza lists
Post by Gianluca Gennari
Then reinstall the drivers giving "make install" from the media_bu=
ild/
Post by Gianluca Gennari
Post by razza lists
Post by Gianluca Gennari
folder, and reboot.
I've added the fixes for it today. So, tomorrow's tarballs should h=
ave this
Post by Gianluca Gennari
Post by razza lists
bug fixed.
Post by Gianluca Gennari
Best regards,
Gianluca
--
To unsubscribe from this list: send the line "unsubscribe linux-me=
dia" in
Post by Gianluca Gennari
Post by razza lists
Post by Gianluca Gennari
More majordomo info at =C2=A0http://vger.kernel.org/majordomo-info=
=2Ehtml
Post by Gianluca Gennari
Post by razza lists
I'm glad about that as I am getting nowhere fast. Looks like it's
better to rebuild the box in the week and save wasting your time.
After patching etc, I did manage to get a little bit further, but wh=
en
Post by Gianluca Gennari
Post by razza lists
/home/mythtv/channels.conf
Unable to query frontend status
http://linuxtv.org/wiki/index.php/Dvbscan
if you get this error you should try other scanning utilities, like s=
can
Post by Gianluca Gennari
or w_scan. You can also try a real application, like Kaffeine.
Best regards,
Gianluca
Post by razza lists
usb 1-3: new high speed USB device using ehci_hcd and address 2
usb 1-3: New USB device found, idVendor=3D2040, idProduct=3D7080
usb 1-3: New USB device strings: Mfr=3D1, Product=3D2, SerialNumber=3D=
3
Post by Gianluca Gennari
Post by razza lists
usb 1-3: Product: myTV.t
usb 1-3: Manufacturer: Eskape Labs
usb 1-3: SerialNumber: 4030928317
usb 1-3: configuration #1 chosen from 1 choice
WARNING: You are using an experimental version of the media stack.
=C2=A0 =C2=A0 =C2=A0 As the driver is backported to an older kernel,=
it doesn't offer
Post by Gianluca Gennari
Post by razza lists
=C2=A0 =C2=A0 =C2=A0 enough quality for its usage in production.
=C2=A0 =C2=A0 =C2=A0 Use it with care.
=C2=A0 =C2=A0 =C2=A0 240ab508aa9fb7a294b0ecb563b19ead000b2463 [media=
] [PATCH] don't reset
Post by Gianluca Gennari
Post by razza lists
the delivery system on DTV_CLEAR
=C2=A0 =C2=A0 =C2=A0 9544e8a64795d75875ff4c680a43aa452a37b260 [media=
] [BUG] it913x-fe fix
Post by Gianluca Gennari
Post by razza lists
typo error making SNR levels unstable
=C2=A0 =C2=A0 =C2=A0 c147f61083e3e4a9c2aaecaaed976502defc3b7d [media=
] cx23885: Query the
Post by Gianluca Gennari
Post by razza lists
CX25840 during enum_input for status
WARNING: You are using an experimental version of the media stack.
=C2=A0 =C2=A0 =C2=A0 As the driver is backported to an older kernel,=
it doesn't offer
Post by Gianluca Gennari
Post by razza lists
=C2=A0 =C2=A0 =C2=A0 enough quality for its usage in production.
=C2=A0 =C2=A0 =C2=A0 Use it with care.
=C2=A0 =C2=A0 =C2=A0 240ab508aa9fb7a294b0ecb563b19ead000b2463 [media=
] [PATCH] don't reset
Post by Gianluca Gennari
Post by razza lists
the delivery system on DTV_CLEAR
=C2=A0 =C2=A0 =C2=A0 9544e8a64795d75875ff4c680a43aa452a37b260 [media=
] [BUG] it913x-fe fix
Post by Gianluca Gennari
Post by razza lists
typo error making SNR levels unstable
=C2=A0 =C2=A0 =C2=A0 c147f61083e3e4a9c2aaecaaed976502defc3b7d [media=
] cx23885: Query the
Post by Gianluca Gennari
Post by razza lists
CX25840 during enum_input for status
IR NEC protocol handler initialized
IR RC5(x) protocol handler initialized
IR RC6 protocol handler initialized
IR JVC protocol handler initialized
IR Sony protocol handler initialized
IR SANYO protocol handler initialized
IR MCE Keyboard/mouse protocol handler initialized
dib0700: loaded with support for 24 different device-types
dvb-usb: found a 'Hauppauge Nova-T MyTV.t' in cold state, will try t=
o
Post by Gianluca Gennari
Post by razza lists
load a firmware
usb 1-3: firmware: requesting dvb-usb-dib0700-1.20.fw
lirc_dev: IR Remote Control driver registered, major 248
IR LIRC bridge handler initialized
dvb-usb: downloading firmware from file 'dvb-usb-dib0700-1.20.fw'
dib0700: firmware started successfully.
dvb-usb: found a 'Hauppauge Nova-T MyTV.t' in warm state.
dvb-usb: will pass the complete MPEG2 transport stream to the softwa=
re demuxer.
Post by Gianluca Gennari
Post by razza lists
DVB: registering new adapter (Hauppauge Nova-T MyTV.t)
DVB: registering adapter 0 frontend 0 (DiBcom 7000PC)...
DiB0070: successfully identified
dvb-usb: Hauppauge Nova-T MyTV.t successfully initialized and connec=
ted.
Post by Gianluca Gennari
Post by razza lists
usbcore: registered new interface driver dvb_usb_dib0700
VLC and MythTV don't like it either. They go through the scanning but
do not find any channels.
Malcolm Priestley
2012-01-15 21:27:19 UTC
Permalink
Post by Gianluca Gennari
Post by razza lists
Post by Gianluca Gennari
Post by Gianluca Gennari
I have followed the build instructions for the Hauppauge MyTV=
=2Et device here
Post by Gianluca Gennari
Post by razza lists
Post by Gianluca Gennari
Post by Gianluca Gennari
- http://linuxtv.org/wiki/index.php/Hauppauge_myTV.t and buil=
t the drivers
Post by Gianluca Gennari
Post by razza lists
Post by Gianluca Gennari
Post by Gianluca Gennari
as detailed here -
http://linuxtv.org/wiki/index.php/How_to_Obtain,_Build_and_In=
stall_V4L-DVB_D
Post by Gianluca Gennari
Post by razza lists
Post by Gianluca Gennari
Post by Gianluca Gennari
evice_Drivers on a CentOS 6.2 i386 build.
When I use dvbscan, nothing happens. dmesg shows "
dvb_frontend_ioctl_legacy: doesn't know how to handle a DVBv3=
call to
Post by Gianluca Gennari
Post by razza lists
Post by Gianluca Gennari
Post by Gianluca Gennari
delivery system 0"
/usr/share/dvb/dvb-t/channels.conf
dvb-usb: found a 'Hauppauge Nova-T MyTV.t' in warm state.
dvb-usb: will pass the complete MPEG2 transport stream to the=
software
Post by Gianluca Gennari
Post by razza lists
Post by Gianluca Gennari
Post by Gianluca Gennari
demuxer.
dvb-usb: schedule remote query interval to 50 msecs.
dvb-usb: Hauppauge Nova-T MyTV.t successfully initialized and=
connected.
Post by Gianluca Gennari
Post by razza lists
Post by Gianluca Gennari
Post by Gianluca Gennari
usbcore: registered new interface driver dvb_usb_dib0700
dvb_frontend_ioctl_legacy: doesn't know how to handle a DVBv3=
call to
Post by Gianluca Gennari
Post by razza lists
Post by Gianluca Gennari
Post by Gianluca Gennari
delivery system 0
I have searched but can't locate a fix. Any pointers?
--
To unsubscribe from this list: send the line "unsubscribe lin=
ux-media" in
Post by Gianluca Gennari
Post by razza lists
Post by Gianluca Gennari
Post by Gianluca Gennari
More majordomo info at =EF=BF=BDhttp://vger.kernel.org/majord=
omo-info.html
Post by Gianluca Gennari
Post by razza lists
Post by Gianluca Gennari
Post by Gianluca Gennari
Hi,
http://patchwork.linuxtv.org/patch/9492/
Best regards,
Gianluca
It's very likely the case I'm doing something wrong and I apolo=
gise in
Post by Gianluca Gennari
Post by razza lists
Post by Gianluca Gennari
advance! However some help/guidance would be great...
I have downloaded the sources as described in the basic approac=
h here
Post by Gianluca Gennari
Post by razza lists
Post by Gianluca Gennari
- http://linuxtv.org/wiki/index.php/How_to_Obtain,_Build_and_In=
stall_V4L-DVB_Device_Drivers
Post by Gianluca Gennari
Post by razza lists
Post by Gianluca Gennari
In the source there is no file called "dvb_frontend.c", so I as=
sume I
Post by Gianluca Gennari
Post by razza lists
Post by Gianluca Gennari
start the media_build/build script?
If I do, eventually this creates
media_build/linux/drivers/media/dvb/dvb-core/dvb_frontend.c
I then apply the patch to
media_build/linux/drivers/media/dvb/dvb-core/dvb_frontend.c, an=
d I can
Post by Gianluca Gennari
Post by razza lists
Post by Gianluca Gennari
see the added elements...
....
static int dvb_frontend_clear_cache(struct dvb_frontend *fe)
{
struct dtv_frontend_properties *c =3D &fe->dtv_property=
_cache;
Post by Gianluca Gennari
Post by razza lists
Post by Gianluca Gennari
int i;
u32 delsys;
delsys =3D c->delivery_system;
memset(c, 0, sizeof(struct dtv_frontend_properties));
c->delivery_system =3D delsys;
c->state =3D DTV_CLEAR;
dprintk("%s() Clearing cache for delivery system %d\n",=
__func__,
Post by Gianluca Gennari
Post by razza lists
Post by Gianluca Gennari
c->delivery_system);
................
After a reboot (as I have not got a clue about unloading module=
s etc.)
Post by Gianluca Gennari
Post by razza lists
Post by Gianluca Gennari
I then execute make install but I still get the same error
"dvb_frontend_ioctl_legacy: doesn't know how to handle a DVBv3 =
call to
Post by Gianluca Gennari
Post by razza lists
Post by Gianluca Gennari
delivery system 0" when I use dvbscan.
You are almost there.
After you apply the patch, you have to recompile the entire sour=
ce tree.
Post by Gianluca Gennari
Post by razza lists
Post by Gianluca Gennari
You can do it launching the "make" command inside the linux/ fol=
der.
Post by Gianluca Gennari
Post by razza lists
Post by Gianluca Gennari
Then reinstall the drivers giving "make install" from the media_=
build/
Post by Gianluca Gennari
Post by razza lists
Post by Gianluca Gennari
folder, and reboot.
I've added the fixes for it today. So, tomorrow's tarballs should=
have this
Post by Gianluca Gennari
Post by razza lists
bug fixed.
Post by Gianluca Gennari
Best regards,
Gianluca
--
To unsubscribe from this list: send the line "unsubscribe linux-=
media" in
Post by Gianluca Gennari
Post by razza lists
Post by Gianluca Gennari
More majordomo info at http://vger.kernel.org/majordomo-info.ht=
ml
Post by Gianluca Gennari
Post by razza lists
I'm glad about that as I am getting nowhere fast. Looks like it's
better to rebuild the box in the week and save wasting your time.
After patching etc, I did manage to get a little bit further, but =
when
Post by Gianluca Gennari
Post by razza lists
/home/mythtv/channels.conf
Unable to query frontend status
http://linuxtv.org/wiki/index.php/Dvbscan
if you get this error you should try other scanning utilities, like=
scan
Post by Gianluca Gennari
or w_scan. You can also try a real application, like Kaffeine.
Best regards,
Gianluca
Post by razza lists
usb 1-3: new high speed USB device using ehci_hcd and address 2
usb 1-3: New USB device found, idVendor=3D2040, idProduct=3D7080
usb 1-3: New USB device strings: Mfr=3D1, Product=3D2, SerialNumbe=
r=3D3
Post by Gianluca Gennari
Post by razza lists
usb 1-3: Product: myTV.t
usb 1-3: Manufacturer: Eskape Labs
usb 1-3: SerialNumber: 4030928317
usb 1-3: configuration #1 chosen from 1 choice
WARNING: You are using an experimental version of the media stack.
As the driver is backported to an older kernel, it doesn't o=
ffer
Post by Gianluca Gennari
Post by razza lists
enough quality for its usage in production.
Use it with care.
240ab508aa9fb7a294b0ecb563b19ead000b2463 [media] [PATCH] don=
't reset
Post by Gianluca Gennari
Post by razza lists
the delivery system on DTV_CLEAR
9544e8a64795d75875ff4c680a43aa452a37b260 [media] [BUG] it913=
x-fe fix
Post by Gianluca Gennari
Post by razza lists
typo error making SNR levels unstable
c147f61083e3e4a9c2aaecaaed976502defc3b7d [media] cx23885: Qu=
ery the
Post by Gianluca Gennari
Post by razza lists
CX25840 during enum_input for status
WARNING: You are using an experimental version of the media stack.
As the driver is backported to an older kernel, it doesn't o=
ffer
Post by Gianluca Gennari
Post by razza lists
enough quality for its usage in production.
Use it with care.
240ab508aa9fb7a294b0ecb563b19ead000b2463 [media] [PATCH] don=
't reset
Post by Gianluca Gennari
Post by razza lists
the delivery system on DTV_CLEAR
9544e8a64795d75875ff4c680a43aa452a37b260 [media] [BUG] it913=
x-fe fix
Post by Gianluca Gennari
Post by razza lists
typo error making SNR levels unstable
c147f61083e3e4a9c2aaecaaed976502defc3b7d [media] cx23885: Qu=
ery the
Post by Gianluca Gennari
Post by razza lists
CX25840 during enum_input for status
IR NEC protocol handler initialized
IR RC5(x) protocol handler initialized
IR RC6 protocol handler initialized
IR JVC protocol handler initialized
IR Sony protocol handler initialized
IR SANYO protocol handler initialized
IR MCE Keyboard/mouse protocol handler initialized
dib0700: loaded with support for 24 different device-types
dvb-usb: found a 'Hauppauge Nova-T MyTV.t' in cold state, will try=
to
Post by Gianluca Gennari
Post by razza lists
load a firmware
usb 1-3: firmware: requesting dvb-usb-dib0700-1.20.fw
lirc_dev: IR Remote Control driver registered, major 248
IR LIRC bridge handler initialized
dvb-usb: downloading firmware from file 'dvb-usb-dib0700-1.20.fw'
dib0700: firmware started successfully.
dvb-usb: found a 'Hauppauge Nova-T MyTV.t' in warm state.
dvb-usb: will pass the complete MPEG2 transport stream to the soft=
ware demuxer.
Post by Gianluca Gennari
Post by razza lists
DVB: registering new adapter (Hauppauge Nova-T MyTV.t)
DVB: registering adapter 0 frontend 0 (DiBcom 7000PC)...
DiB0070: successfully identified
dvb-usb: Hauppauge Nova-T MyTV.t successfully initialized and conn=
ected.
Post by Gianluca Gennari
Post by razza lists
usbcore: registered new interface driver dvb_usb_dib0700
I could never get DiBcom 7000PC to work properly, there is something no=
t
right with the AGC settings. I needed an attenuator on Mendip UK before
the transmitters power increased, now I can't get it work at all.

Legacy applications/utils tested so far with 3.2/next on DVB-T on other
adapters.

scan okay use -5 option increases time out helps
w_scan okay use -F option increases time out helps
dvbscan fail Unable to query frontend status

me-tv okay
kaffeine okay
VLC okay
mplayer dvb:// okay
VDR okay
mumudvb okay
zap okay

Loading...