Re: [PATCH v2] Input: Add missing event codes for common IR remote buttons

2019-01-24 Thread VDR User
> > > KEY_ASPECT_RATIO (formerly KEY_SCREEN). > > > > Physical displays have a single set aspect ratio (W/H). Images have > > their own aspect ratios. When the AR of the video to be display and > > the display itself are mismatched, you have to do something > > (letterbox, pillarbox, windowbox) to

Re: [PATCH v2] Input: Add missing event codes for common IR remote buttons

2019-01-23 Thread VDR User
Hi Bastian, > > There are multiple MENU keys I assume for clarity purposes and to > > give > > some kind of relation between the key definition and the action/event > > that occurs when you use it. I would say it's more a matter of > > convenience rather that need, similar to KEY_ROOT_MENU & > > K

Re: [PATCH v2] Input: Add missing event codes for common IR remote buttons

2019-01-22 Thread VDR User
Hi Dmitry, thanks for replying. Notes follow.. > > > > +/* Remote control buttons found across provider & universal remotes */ > > > > +#define KEY_LIVE_TV 0x2e8 /* Jump to live tv > > > > viewing */ > > > > > > KEY_TV? > > > > KEY_TV selects TV as a *input source* the same as

Re: [PATCH v2] Input: Add missing event codes for common IR remote buttons

2018-11-13 Thread VDR User
> On Sat, 2018-11-03 at 07:55 -0700, Derek Kelly wrote: > > The following patch adds event codes for common buttons found on > > various > > provider and universal remote controls. They represent functions not > > covered by existing event codes. Once added, rc_keymaps can be > > updated > > accord

Re: [PATCH v4 0/3] IR decoding using BPF

2018-05-22 Thread VDR User
Sean, I'd like to echo Matthias's appreciation for your work with this BPF project. I'm very much looking forward to the possibility of using my remotes directly with decoders generated from the existing lircd.conf's. Excited seeing your work progress! Cheers, Derek On Tue, May 22, 2018 at 6:50 A

Re: Mysterious regression in dvb driver

2017-01-23 Thread VDR User
Just use the driver from the media_build tree and do a git bisect on it. You can work out a bisect starting/good point from whatever kernel version you know to be working. It shouldn't take too long to find the offending commit. -- To unsubscribe from this list: send the line "unsubscribe linux-med

Re: [PATCH] [media] gp8psk: fix spelling mistake: "firmare" -> "firmware"

2016-12-29 Thread VDR User
> - err("firmare chunk size bigger than 64 bytes."); > + err("firmware chunk size bigger than 64 bytes."); Yup. > -"HW don't support CMAC encrypiton, use software CMAC > encrypiton\n"); > +"HW don't suppo

Re: Question about 2 gp8psk patches I noticed, and possible bug.

2016-11-12 Thread VDR User
Ok, I think I had too much patching going on (I switched from 4.8.4 kernel drivers to media_build) so I started from scratch with a fresh update to kernel 4.8.7. First I applied the dma stuff in this order: (from https://patchwork.linuxtv.org/patch/37395/raw/) v2-18-31-gp8psk-don-t-do-DMA-on-stack

Re: Question about 2 gp8psk patches I noticed, and possible bug.

2016-11-11 Thread VDR User
>>> Sorry, forgot to add one file to the patch. >>> >>> The right fix is this one. >> >> This patch seems to fix the unload crash but unfortunately now all I >> get is "frontend 0/0 timed out while tuning". > > Forgot to mention that I didn't see the gp8psk-fe entry in menuconfig > customize fronte

Re: Question about 2 gp8psk patches I noticed, and possible bug.

2016-11-11 Thread VDR User
>> Sorry, forgot to add one file to the patch. >> >> The right fix is this one. > > This patch seems to fix the unload crash but unfortunately now all I > get is "frontend 0/0 timed out while tuning". Forgot to mention that I didn't see the gp8psk-fe entry in menuconfig customize frontends even th

Re: Question about 2 gp8psk patches I noticed, and possible bug.

2016-11-11 Thread VDR User
> Sorry, forgot to add one file to the patch. > > The right fix is this one. This patch seems to fix the unload crash but unfortunately now all I get is "frontend 0/0 timed out while tuning". > [PATCH v2] [media] gp8psk: Fix DVB frontend attach > > The DVB binding schema at the DVB core assumes

Re: Question about 2 gp8psk patches I noticed, and possible bug.

2016-11-11 Thread VDR User
> Hmm... dvb_attach() assumes that the symbol is exported. Please try > this patch. If it fixes the bug, I'll likely do something else, to > avoid the need of EXPORT_SYMBOL. > > > [PATCH] [media] gp8psk: Fix DVB frontend attach > > it should be calling module_get() at attach, as otherwise > module_

Re: Question about 2 gp8psk patches I noticed, and possible bug.

2016-11-10 Thread VDR User
> commit 0c979a12309af49894bb1dc60e747c3cd53fa888 > Author: Mauro Carvalho Chehab > Date: Wed Nov 9 15:33:17 2016 -0200 > > [media] gp8psk: Fix DVB frontend attach > > it should be calling module_get() at attach, as otherwise > module_put() will crash. > > Signed-off-by: Mauro Ca

Re: Question about 2 gp8psk patches I noticed, and possible bug.

2016-11-09 Thread VDR User
>> (gdb) l *module_put+0x67 >> 0xc10a4b87 is in module_put (kernel/module.c:1108). >> 1103int ret; >> 1104 >> 1105if (module) { >> 1106preempt_disable(); >> 1107ret = atomic_dec_if_positive(&module->refcnt); >> 1108

Re: Question about 2 gp8psk patches I noticed, and possible bug.

2016-11-09 Thread VDR User
$ gdb /usr/src/linux/vmlinux GNU gdb (Debian 7.11.1-2) 7.11.1 ... Reading symbols from /usr/src/linux/vmlinux...done. (gdb) l *module_put+0x67 0xc10a4b87 is in module_put (kernel/module.c:1108). 1103int ret; 1104 1105if (module) { 1106preempt_disable(); 1

Re: Question about 2 gp8psk patches I noticed, and possible bug.

2016-11-09 Thread VDR User
Hi Mauro, Here are the results after testing the latest patch: [33922.643770] usbcore: deregistering interface driver dvb_usb_gp8psk [33922.643789] gp8psk: unregistering fe0 [33922.643865] gp8psk: detaching fe0 [33922.643868] [ cut here ] [33922.643875] WARNING: CPU: 1 PID

Re: Question about 2 gp8psk patches I noticed, and possible bug.

2016-11-08 Thread VDR User
ONFIG_DEBUG_RODATA=y CONFIG_DEBUG_INFO=y CONFIG_DEBUG_FS=y CONFIG_DEBUG_KERNEL=y CONFIG_DEBUG_MEMORY_INIT=y CONFIG_DEBUG_PREEMPT=y CONFIG_DEBUG_BUGVERBOSE=y On Tue, Nov 8, 2016 at 9:55 AM, Mauro Carvalho Chehab wrote: > Em Sat, 5 Nov 2016 19:24:58 -0700 > VDR User escreveu: > >> I have

Re: [PATCH] [media] gp8psk: fix gp8psk_usb_in_op() logic

2016-11-07 Thread VDR User
On Mon, Nov 7, 2016 at 4:52 AM, Mauro Carvalho Chehab wrote: > Changeset bc29131ecb10 ("[media] gp8psk: don't do DMA on stack") > fixed the usage of DMA on stack, but the memcpy was wrong > for gp8psk_usb_in_op(). Fix it. > > Suggested-by: Johannes Stezenbach > Fixes: bc29131ecb10 ("[media] gp8ps

Re: [PATCH v2 18/31] gp8psk: don't do DMA on stack

2016-11-06 Thread VDR User
I applied this patch to the 4.8.4 kernel driver (that I'm currently running) and it caused nothing but "frontend 0/0 timed out while tuning". Is there another patch that should be used in conjunction with this? If not, this patch breaks the gp8psk driver. Thanks. On Tue, Oct 11, 2016 at 3:09 AM,

Re: [PATCH 2/2] [media] lirc: remove lirc_serial driver

2016-11-02 Thread VDR User
> serial_ir driver in rc-core Which kernel did this happen in? I don't see a sign of it in 4.8.5 and I want to make sure that homebrew serial devices still work with lirc after this. Are you sure the serial_ir driver you refer to isn't about a usb-based serial ir? Thanks for clarity. -- To unsubs

Re: [PATCH 2/2] v4l-utils: fixed dvbv5 vdr format

2016-09-08 Thread VDR User
>> There is already a publicly available VDR repository offering the >> current stable & developer versions, along with all previous versions: >> http://www.tvdr.de/download.htm > > ?? these are tarballs, where is the version control system? That would be a question for Klaus, the author of VDR. I

Re: [PATCH 2/2] v4l-utils: fixed dvbv5 vdr format

2016-09-07 Thread VDR User
> It is broken (see below). Have you ever used dvbv5 tools with vdr format > output or did you know a "VDR user" who is using dvbv5-scan and not wscan? In my experience the v4l scanner, wscan, and VDR's internal scanner has never worked well (for NA). I use nscan, which has

Re: [PATCH 2/2] v4l-utils: fixed dvbv5 vdr format

2016-09-06 Thread VDR User
I can tell you that people do still use VDR-1.6.0-3. It would be unwise (and unnecessary) to break backwards compatible, which would be grounds for NACK if you ask me. Knowingly causing breakage has always been an unpopular thing in the VDR community, and this sounds like it's going beyond fixing a

Re: DVBv5 Tools: VDR support seems to be broken (recommended patch)

2016-03-10 Thread VDR User
> There is only one point I have a doubt: I have no ATSC > experience (I'am in Europe/germ), so I simply added > an "A" at the field "satellite pos.". This is what > the w_scan tool does and this tool works fine with > the vdr (please correct me if I'am wrong). Instead of guessing about ATSC, why

/dev/dvb not being creating when driver are loaded

2015-03-16 Thread VDR User
Hi. I just installed a clean Debian Testing box and am having a problem. When I load dvb drivers, /dev/dvb is not being created. I don't know if this is a dvb issue, udev, or what. I have other boxes also running Debian Testing, all using current packages & the same versions of everything as this n

Re: [PATCH] Revert "V4L/DVB: uvc: Enable USB autosuspend by default on uvcvideo"

2013-09-24 Thread VDR User
On Tue, Sep 24, 2013 at 4:34 AM, Laurent Pinchart wrote: > I've discussed this issue during LPC last week, and I still believe we should > enable auto-suspend. The feature really saves power, without it my C910 > Logitech webcam gets hot even when unused. > > If we disable auto-suspend by default

Re: Proposed modifications to dvb_frontend_ops

2013-07-23 Thread VDR User
On Tue, Jul 23, 2013 at 3:57 PM, Chris Lee wrote: > The problems isnt for tuners where FEC_AUTO does work, its more for > ones that dont work like the genpix. Im sure there are others too. If FEC_AUTO for turbo qpsk can be fixed in the Genpix firmware, maybe it's worth seeing if Genpix will have

Re: [PATCH] gp8psk: add systems supported by genpix devices to .delsys

2013-07-23 Thread VDR User
> Correct, but many older userland applications used SYS_DVBS2 to tune > before SYS_TURBO was added. I have no problem removing it but others > might. I think the best solution here would be not to put false info in the driver and notify the author(s) of any apps still not updated to use SYS_TURBO

Re: [PATCH] gp8psk: add systems supported by genpix devices to .delsys

2013-07-23 Thread VDR User
Genpix Skywalker and 8psk-to-usb devices do not support dvb-s2. -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [PATCH] MAINTAINERS: Remove Jarod Wilson and orphan LIRC drivers

2013-02-13 Thread VDR User
On Tue, Feb 12, 2013 at 10:15 PM, thomas schorpp wrote: >> You can also try Jarod Wilson on freenode irc in #lirc. He is usually >> there. > > What for? Bothering him with issues from blocklisting mailhosters' RFC > violations? Who said anything about that? Nobody, so why are you making it up? Ob

Re: [PATCH] MAINTAINERS: Remove Jarod Wilson and orphan LIRC drivers

2013-02-12 Thread VDR User
You can also try Jarod Wilson on freenode irc in #lirc. He is usually there. -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [linux-media] Re: [PATCH RFCv3] dvb: Add DVBv5 properties for quality parameters

2013-01-03 Thread VDR User
On Thu, Jan 3, 2013 at 1:33 PM, Antti Palosaari wrote: > I would not like to define exact units for BER and USB as those are quite > hard to implement and also non-sense. User would like just to see if there > is some (random) numbers and if those numbers are rising or reducing when he > changes a

Re: [ANNOUNCE] complete notes of the San Diego's workshop

2012-12-28 Thread VDR User
On Fri, Dec 28, 2012 at 10:57 AM, Mauro Carvalho Chehab wrote: > This year was crazy... too much stuff on the 4Q. Only today I found some > time to merge all notes we took from the San Diego's summit, convert them > into html and publish. > > They're all available at: > http://www.linuxtv.

Re: small regression in mediatree/for_v3.7-3 - media_build

2012-11-02 Thread VDR User
On Tue, Aug 14, 2012 at 4:51 PM, Antti Palosaari wrote: >> There seems to be a small regression on mediatree/for_v3.7-3 >> - dmesg/klog get flooded with these: >> >> [201145.140260] dvb_frontend_poll: 15 callbacks suppressed >> [201145.586405] usb_urb_complete: 88 callbacks suppressed >> [201150.5

Re: Make menuconfig doesn't work anymore

2012-07-11 Thread VDR User
On Wed, Jul 11, 2012 at 2:30 PM, Martin Herrman wrote: >> Actually I got the exact same error when compiling a new 3.4.4 kernel. > > It always feels good to know that you're not alone ;-) Yes, it's a good thing usually! >> I assume the api_version.patch is bad or needs to be updated. I simple >>

Re: Make menuconfig doesn't work anymore

2012-07-10 Thread VDR User
On Tue, Jul 10, 2012 at 2:16 PM, Martin Herrman wrote: > make[2]: Entering directory `/usr/src/media_build_experimental/linux' > Applying patches for kernel 3.5.0-rc6 > patch -s -f -N -p1 -i ../backports/api_version.patch > 1 out of 1 hunk FAILED -- saving rejects to file > drivers/media/video/v4l

Re: what are the media tuners / can we make them not default selected?

2012-06-07 Thread VDR User
On Thu, Jun 7, 2012 at 2:53 PM, cheng renquan wrote: > till recently I found that also chosen those media tuner modules, > > $ grep MEDIA_TUNER /boot/config > CONFIG_MEDIA_TUNER=m > # CONFIG_MEDIA_TUNER_CUSTOMISE is not set > CONFIG_MEDIA_TUNER_SIMPLE=m > CONFIG_MEDIA_TUNER_TDA8290=m > CONFIG_MEDI

Re: [RFCv1] DVB-USB improvements [alternative 2]

2012-05-20 Thread VDR User
On Sun, May 20, 2012 at 7:22 PM, Antti Palosaari wrote: >> So you think that it makes more sense to ignore existing issues rather >> than fix them. Isn't fixing issues&  flaws the whole point of an >> overhaul/redesign? Yes, it is. I do get the point you're trying to >> make -- there are bigger fi

Re: [RFCv1] DVB-USB improvements [alternative 2]

2012-05-20 Thread VDR User
On Sun, May 20, 2012 at 4:10 PM, Devin Heitmueller wrote: > If you think this is important, then you should feel free to submit > patches to Antti's tree.  Otherwise, this is the sort of optimization > that brings so little value as to not really be worth the engineering > effort.  The time is bet

Re: [RFCv1] DVB-USB improvements [alternative 2]

2012-05-20 Thread VDR User
On Sun, May 20, 2012 at 1:55 PM, Antti Palosaari wrote: > I did some more planning and made alternative RFC. > As the earlier alternative was more like changing old functionality that new > one goes much more deeper. > Functionality enhancement mentioned earlier RFC are valid too: > http://www.ma

Re: [PATCH 1/5] staging: lirc_serial: Fix init/exit order

2012-03-01 Thread VDR User
I have a few questions about lirc_serial... It seems that it's now a part of v4l and currently residing in the driver staging area. I was told it will not move from staging until it has been converted to rc_core. I was also told there are no plans for anyone to do this so it would seem lirc_serial

Re: [RFC] vtunerc: virtual DVB device - is it ok to NACK driver because of worrying about possible misusage?

2011-12-04 Thread VDR User
On Sun, Dec 4, 2011 at 3:22 PM, HoP wrote: > Well, initial report was made on vdr-portal because of our hardware announce, > but you can be sure the same is true if server is build on any linux hardware. > Here is some note: > http://www.vdr-portal.de/board18-vdr-hardware/board84-allgemein/106610-

Re: [RFC] vtunerc: virtual DVB device - is it ok to NACK driver because of worrying about possible misusage?

2011-12-03 Thread VDR User
On Sat, Dec 3, 2011 at 3:30 PM, Walter Van Eetvelt wrote: >> So you could finally use VDR as a server/client setup using vtuner, >> right? With full OSD, timer, etc? Yes, I'm aware that streamdev >> exists. It was horrible when I tried it last (a long time ago) and I >> understand it's gotten bett

Re: [RFC] vtunerc: virtual DVB device - is it ok to NACK driver because of worrying about possible misusage?

2011-12-03 Thread VDR User
On Sat, Dec 3, 2011 at 8:13 AM, Andreas Oberritter wrote: > You could certainly build a library to reach a different goal. The goal > of vtuner is to access remote tuners with any existing program > implementing the DVB API. So you could finally use VDR as a server/client setup using vtuner, righ

Re: [RFC] vtunerc: virtual DVB device - is it ok to NACK driver because of worrying about possible misusage?

2011-12-02 Thread VDR User
> What really surprised me badly was that when I read all 54 responses > I have counted only two real technical answers!!! All rest were about > POLITICAL issues - code was NACKed w/o any technical discussion. > Because of fear of possible abusing of driver. To answer the original question -- abso

Re: femon patch for dB

2011-10-30 Thread VDR User
On Sun, Oct 30, 2011 at 6:52 AM, Michael Krufky wrote: > I will push the work for the ATSC snr conversions to my git repository > and issue a pull request to Mauro by the end of the day.  This issue > is larger than a simple userspace unit conversion.  Please send in the > patch inline anyway, as

Re: [PATCH] DVB USB should not depend on RC

2011-04-29 Thread VDR User
On Fri, Apr 29, 2011 at 5:51 AM, Mauro Carvalho Chehab wrote: > Hi Sean, > > Em 21-02-2011 18:49, Sean Young escreveu: >> I have a SheevaPlug which has no (human) input or output devices, with a >> DVB USB device connected with a mythtv backend running. The DVB USB drivers >> pull in the remote co

Re: [PATCH] DVB USB should not depend on RC

2011-02-24 Thread VDR User
On Mon, Feb 21, 2011 at 1:49 PM, Sean Young wrote: > I have a SheevaPlug which has no (human) input or output devices, with a > DVB USB device connected with a mythtv backend running. The DVB USB drivers > pull in the remote control tree, which is unneeded in this case; the > mythtv client runs el

Re: [PATCH] [media] rc: do not enable remote controller adapters by default.

2011-02-16 Thread VDR User
On Wed, Feb 16, 2011 at 7:20 AM, Jarod Wilson wrote: >> It is not a need.  I simply observed that after the IR_ to RC_ rename >> there was another set of drivers being built which I did not ask for. > > So disable them. I think most people would rather have this support > enabled so that remotes J

Re: Is media_build download broken?

2011-01-25 Thread VDR User
On Tue, Jan 25, 2011 at 8:30 PM, Jarod Wilson wrote: >> I'm getting the following now: >> >> git pull ssh://linuxtv.org/git/media_build master >> Permission denied (publickey). > > Works here just fine. Looks like your ssh key setup is amiss. I deleted my ~/.ssh/known_hosts and I'm getting this:

Is media_build download broken?

2011-01-25 Thread VDR User
I'm getting the following now: git pull ssh://linuxtv.org/git/media_build master Permission denied (publickey). fatal: The remote end hung up unexpectedly *** ERROR. Aborting *** -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majord...@vger.ke

Re: DViCO FusionHDTV7 Dual Express I2C write failed

2011-01-19 Thread VDR User
On Wed, Jan 19, 2011 at 8:13 AM, Devin Heitmueller wrote: >> Can someone please look into this and possibly provide a fix for the >> bug?  I'm surprised it hasn't happened yet after all this time but >> maybe it's been forgotten the bug existed. > > You shouldn't be too surprised.  In many cases d

Re: DViCO FusionHDTV7 Dual Express I2C write failed

2011-01-19 Thread VDR User
On Sun, Jan 9, 2011 at 6:14 PM, Mark Zimmerman wrote: >> I have a DViCO FusionHDTV7 Dual Express card that works with 2.6.35 but >> which fails to initialize with the latest 2.6.36 kernel. The firmware >> fails to load due to an i2c failure. A search of the archives indicates >> that this is not t

Re: Debug code in HG repositories

2011-01-07 Thread VDR User
On Fri, Jan 7, 2011 at 1:06 PM, Hans Verkuil wrote: > Have you tried Mauro's media_build tree? I had to use it today to test a > driver from git on a 2.6.35 kernel. Works quite nicely. Perhaps we should > promote this more. I could add backwards compatibility builds to my daily > build script that

Re: SAA7160 (Compro E750) Drivers

2010-11-26 Thread VDR User
I have an saa7160 based card as well. But it's a VP1028 DVB-S card. -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

V4L hg doesn't compile for current stable kernel 2.6.36

2010-10-25 Thread VDR User
hg hash abd3aac6644e tip make[2]: Entering directory `/usr/src/linux-2.6.36' CC [M] /tmp/v4l_dvb.20101025/v4l-dvb/v4l/dvbdev.o CC [M] /tmp/v4l_dvb.20101025/v4l-dvb/v4l/dmxdev.o /tmp/v4l_dvb.20101025/v4l-dvb/v4l/dmxdev.c:1142: error: unknown field 'ioctl' specified in initializer /tmp/v4l_dvb

Re: [PATCH] gp8psk: Add support for the Genpix Skywalker-2

2010-10-16 Thread VDR User
Seems some #if 0 code is gone from git and that's the reason. I made a new patch against git and resubmitted. Is it git behavior to remove #if 0 code, or did someone do it? I couldn't find any log of any patch that removed it in git. Thanks, Derek -- To unsubscribe from this list: send the line

Re: [PATCH] gp8psk: Add support for the Genpix Skywalker-2

2010-10-16 Thread VDR User
On Sat, Oct 16, 2010 at 7:38 AM, Mauro Carvalho Chehab wrote: > Em 14-10-2010 16:03, D. K. escreveu: >>  gp8psk: Add support for the Genpix Skywalker-2 per user requests. >> >> Patched against v4l-dvb hg ab433502e041 tip.  Should patch fine >> against git as well. > > No, it didn't apply at -git.

Re: [PATCH] gp8psk: Add support for the Genpix Skywalker-2

2010-10-11 Thread VDR User
People are still waiting for this to be applied. Any reason it hasn't been? On Tue, Aug 17, 2010 at 10:56 AM, VDR User wrote: > gp8psk: Add support for the Genpix Skywalker-2 per user requests. > > Patched against v4l-dvb hg ab433502e041 tip.  Should patch fine > against git as

Re: [PATCH] gp8psk: fix tuner delay

2010-10-11 Thread VDR User
People are still waiting for this to be applied. Any reason it hasn't been? On Tue, Aug 17, 2010 at 10:34 AM, VDR User wrote: > This patches adjusts the tuner delay to be longer in response to > several users experiencing tuner timeouts.  This change fixes that > problem and allo

Re: hg slow commit

2010-10-08 Thread VDR User
On Fri, Oct 8, 2010 at 6:32 PM, Douglas Schilling Landgraf wrote: > Hello everyone, > >        Most of you should asking yourself why the hg commit are very slow. > Unfortunately, I had a business trip (out of my country) in the last 3 > weeks. Now, I am back > and I will restart the commits and r

Re: [v4l/dvb] identification/ fixed registration order of DVB cards

2010-10-06 Thread VDR User
Can't this be forced using udev rules? -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

[PATCH] gp8psk: Add support for the Genpix Skywalker-2

2010-08-17 Thread VDR User
gp8psk: Add support for the Genpix Skywalker-2 per user requests. Patched against v4l-dvb hg ab433502e041 tip. Should patch fine against git as well. Signed-off-by: Derek Kelly -- diff -pruN v4l-dvb.orig/linux/drivers/media/dvb/dvb-usb/dvb-usb-ids.h v4l-dvb/linux/drivers/media/dvb/dvb-u

[PATCH] gp8psk: fix tuner delay

2010-08-17 Thread VDR User
This patches adjusts the tuner delay to be longer in response to several users experiencing tuner timeouts. This change fixes that problem and allows those users to be able to tune. Signed-off-by: Derek Kelly -- --- v4l-dvb.orig/linux/drivers/media/dvb/dvb-usb/gp8psk-fe.c 2010-08-17 09:5

Re: V4L hg tree fails to compile against latest stable kernel 2.6.35

2010-08-15 Thread VDR User
On Sun, Aug 15, 2010 at 10:57 AM, Douglas Schilling Landgraf wrote: > Hello Derek, > > > 2.6.35 should be working, let me know if not. Now, I need to backport > the changes to old kernels > and commit other patches in my pending list. It does appear to be working so far. Thanks for the update!

Re: V4L hg tree fails to compile against latest stable kernel 2.6.35

2010-08-14 Thread VDR User
On Wed, Aug 4, 2010 at 10:19 PM, Douglas Schilling Landgraf wrote: > I am already working to give a full update to hg tree. Sorry this problem. Hi Douglas. Any estimate when this will be fixed? Was hoping it was already since new stable kernel 2.6.35.2 is out now but still the same problem when

Re: V4L hg tree fails to compile against latest stable kernel 2.6.35

2010-08-04 Thread VDR User
On Wed, Aug 4, 2010 at 10:19 PM, Douglas Schilling Landgraf wrote: > Hello Derek, > > On Tue, Aug 3, 2010 at 10:37 AM, Mauro Carvalho Chehab > wrote: >> Em 03-08-2010 03:44, VDR User escreveu: >>> On Mon, Aug 2, 2010 at 11:36 PM, VDR User wrote: >>>> Any

Re: V4L hg tree fails to compile against latest stable kernel 2.6.35

2010-08-02 Thread VDR User
On Mon, Aug 2, 2010 at 11:36 PM, VDR User wrote: > Any idea when this will be fixed? Sorry, forgot to paste in the details: make -C /lib/modules/2.6.35.amd.080210.2/build SUBDIRS=/usr/local/dvb/v4l.source/v4l.20100802/v4l-dvb/v4l modules make[2]: Entering directory `/usr/src/linux-2.6.35&#x

V4L hg tree fails to compile against latest stable kernel 2.6.35

2010-08-02 Thread VDR User
Any idea when this will be fixed? -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [PATCH] Fix module dependency selection for Mantis driver

2010-07-31 Thread VDR User
On Fri, Jun 11, 2010 at 8:11 PM, VDR User wrote: > This patch adds missing module dependencies to the Mantis Kconfig file > so that they are selected automatically when the user enables Mantis. > > Signed-off-by: Derek Kelly > -- > > --- v4l-dvb.orig/linux/dri

Re: [Q]: any DVB-S2 card which is 45MS/s capable?

2010-07-27 Thread VDR User
On Tue, Jul 27, 2010 at 5:52 AM, Emmanuel wrote: > VDR User a écrit : >> >> Look at the vp-1041 I think. > > From what I gathered it is not able to do 45MS/s for DVB-S2. > Thanks anyway, You may want to ask Manu Abraham (author of the mantis driver) about that to be sure

Re: [Q]: any DVB-S2 card which is 45MS/s capable?

2010-07-26 Thread VDR User
Look at the vp-1041 I think. -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [PATCH] Mantis, hopper: use MODULE_DEVICE_TABLE use the macro to make modules auto-loadable

2010-06-21 Thread VDR User
2010/6/21 Bjørn Mork : > Thanks to Ozan ?a?layan for pointing it out > > From: Manu Abraham > > Signed-off-by: Manu Abraham > [bj...@mork.no: imported from > http://jusst.de/hg/mantis-v4l-dvb/raw-rev/3731f71ed6bf] > Signed-off-by: Bjørn Mork > Cc: sta...@kernel.org > --- > This patch is so obv

[PATCH] Fix module dependency selection for Mantis driver

2010-06-11 Thread VDR User
This patch adds missing module dependencies to the Mantis Kconfig file so that they are selected automatically when the user enables Mantis. Signed-off-by: Derek Kelly -- --- v4l-dvb.orig/linux/drivers/media/dvb/mantis/Kconfig 2010-06-11 14:28:26.0 -0700 +++ v4l-dvb/linux/drivers

[PATCH] Fix av7110 driver name

2010-06-11 Thread VDR User
This patch simply changes the name of the av7110 driver to "AV7110" instead of the generic "dvb" it's set to currently. Although it's somewhat trivial, it still seems appropriate to fix the name to be descriptive of the driver. Signed-off-by: Derek Kelly -- --- v4l-dvb/linux/drivers/med

Re: What ever happened to standardizing signal level?

2010-06-06 Thread VDR User
On Sun, Jun 6, 2010 at 3:12 PM, Lars Schotte wrote: > stop flaming all the time, there are ppl out there like me who have > some problems w/ their HW, and you are arguing here about nothing. Hence why I've asked that kid several times to stop it but yet he refuses to respect this mailing list and

Re: What ever happened to standardizing signal level?

2010-06-03 Thread VDR User
hermann pitton , you are contributing absolutely nothing to this thread aside of annoying people with your by trolling and half incoherent nonsense. It's quite ironic you suggest _I_ am the one trolling when this is a thread _I_ created. And further, several people have posted legitimate responses

Re: What ever happened to standardizing signal level?

2010-05-30 Thread VDR User
On Sat, May 29, 2010 at 2:09 AM, Mike Booth wrote: > i think someone is too concerned about being precisely accurate. So much so > that no-one can see the woods for the trees any more. > > Its not important to me that accuracy is spot on. I only want to know that > when tuning the dish I'm getting

Re: What ever happened to standardizing signal level?

2010-05-30 Thread VDR User
On Sat, May 29, 2010 at 10:52 PM, hermann pitton wrote: > ...troll spam removed... > Hermann, you're a known troll with clearly nothing to contribute to this thread therefore you're comments are unwelcome. Your mostly incoherent rant sounds like the ramblings of somebody who has consumed too muc

What ever happened to standardizing signal level?

2010-05-28 Thread VDR User
A lot of people were anticipating this happening but it seems to have stalled out. Does anyone know what the intentions are? Many users were also hoping to _finally_ get a good signal meter for linux as well. If anyone has any info, please share! -- To unsubscribe from this list: send the line "

Re: v4l-dvb does not compile with kernel 2.6.34

2010-05-25 Thread VDR User
On Tue, May 25, 2010 at 2:59 PM, Helmut Auer wrote: > Hello > > I just wanted to compile v4l-dvb for my Gen2VDR Ditribution with kernel > 2.6.34, but it fails > because many modules are missing: > > #include > > and are getting errors like: > > /tmp/portage/media-tv/v4l-dvb-hg-0.1-r3/work/v4l-dv

Re: av7110 crash when unloading.

2010-05-03 Thread VDR User
On Sun, May 2, 2010 at 1:16 PM, Hans Verkuil wrote: > The patch to fix this is in the git fixes tree for quite some time, but since > it hasn't been upstreamed yet it is still not in the v4l-dvb git or hg trees. > I've asked Mauro when he is going to do that, I can't do much more. > > For the time

av7110 crash when unloading.

2010-05-01 Thread VDR User
I just grabbed the latest hg tree and got the following when I tried to unload the drivers for my nexus-s: Message from sysl...@test at Sat May 1 12:19:23 2010 ... test kernel: [ 814.077154] Oops: [#1] SMP Message from sysl...@test at Sat May 1 12:19:23 2010 ... test kernel: [ 814.077156

Re: av7110 and budget_av are broken!

2010-04-26 Thread VDR User
On Mon, Apr 26, 2010 at 6:35 AM, Mauro Carvalho Chehab wrote: > You need to ask Douglas about -hg issues. He is the actual maintainer of that > tree. > It is probably a good idea to merge also from fixes.git tree, but this may > make > his sync process more complicated, so, it is up to him to de

Re: av7110 and budget_av are broken!

2010-04-25 Thread VDR User
On Wed, Apr 21, 2010 at 2:44 AM, Oliver Endriss wrote: >> It's merged in Mauro's fixes tree, but I don't think those pending patches >> have been pushed upstream yet. Mauro, can you verify this? They should be >> pushed to 2.6.34! > > What about the HG driver? > The v4l-dvb HG repository is broken

Re: RFC: Drop V4L1 support in V4L2 drivers

2010-03-19 Thread VDR User
Keeping v4l1 because some guys are still using some ancient setup is not a good reason. Keeping v4l1 because some app devs still haven't bothered to update their apps is not a good reason, especially given the amount of time they've had to complete this task. Keeping v4l1 because package maintain

Re: s2-liplianin, mantis: sysfs: cannot create duplicate filename '/devices/virtual/irrcv'

2010-03-11 Thread VDR User
2010/3/11 Igor M. Liplianin : > On 10 марта 2010 23:31:06 VDR User wrote: >> 2010/3/10 Igor M. Liplianin : >> >> I'm glad to hear you're going to rebase the mantis driver with the >> >> up-to-date code rather then keeping the old outdated stuff that&#x

Re: s2-liplianin, mantis: sysfs: cannot create duplicate filename '/devices/virtual/irrcv'

2010-03-10 Thread VDR User
2010/3/10 Igor M. Liplianin : >> I'm glad to hear you're going to rebase the mantis driver with the >> up-to-date code rather then keeping the old outdated stuff that's >> currently in there!  Do you know when you'll be doing this?? > I know when. Ok...when? > But please, don't discuss much m

Re: Status of the patches under review (45 patches)

2010-03-09 Thread VDR User
On Tue, Mar 9, 2010 at 12:05 PM, Devin Heitmueller wrote: > On Tue, Mar 9, 2010 at 2:55 PM, VDR User wrote: >> What happened to the statistics patch? > > The statistics patch still needs a ton of work before it could be > accepted upstream.  Mostly these things are related to

Re: s2-liplianin, mantis: sysfs: cannot create duplicate filename '/devices/virtual/irrcv'

2010-03-09 Thread VDR User
2010/3/9 Igor M. Liplianin : > On 8 марта 2010 22:41:26 VDR User wrote: >> This isn't an answer to your questions but I don't recommend using the >> s2-liplianin tree as it contains timing patches which can cause >> serious damage to your tuner.  This has also been c

Re: Status of the patches under review (45 patches)

2010-03-09 Thread VDR User
What happened to the statistics patch? -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: s2-liplianin, mantis: sysfs: cannot create duplicate filename '/devices/virtual/irrcv'

2010-03-08 Thread VDR User
This isn't an answer to your questions but I don't recommend using the s2-liplianin tree as it contains timing patches which can cause serious damage to your tuner. This has also been confirmed by the manufacturer as well and to my knowledge has unfortunately not been reverted in that tree. I str

Re: "Invalid module format"

2010-03-07 Thread VDR User
On Sun, Mar 7, 2010 at 2:03 PM, Theodore Kilgore wrote: > It seems that the problem is solved by a local re-compile of the kernel plus > its modules, using the original distro .config settings in order to do this. > What I suspect has happened is that there was a simultaneous minor upgrade > of gc

Re: "Invalid module format"

2010-03-07 Thread VDR User
On Fri, Mar 5, 2010 at 7:37 PM, Mauro Carvalho Chehab wrote: > I suspect that it may be related to this: > > # Select 32 or 64 bit > config 64BIT >        bool "64-bit kernel" if ARCH = "x86" >        default ARCH = "x86_64" >        ---help--- >          Say yes to build a 64-bit kernel - formerl

Re: "Invalid module format"

2010-03-05 Thread VDR User
On Fri, Mar 5, 2010 at 4:39 PM, Theodore Kilgore wrote: > This is to report the good news that none of the above suspicions have > panned out. I still do not know the exact cause of the problem, but a local > compile and install of the 2.6.33 kernel did solve the problem. Hence, it > does seem tha

Problem with v4l tree and kernel 2.6.33

2010-02-25 Thread VDR User
Kernel 2.6.33 just went stable. I compiled, installed, reboot. Grabbed a fresh v4l tree, menuconfig'ed, compiled and installed. Upon loading I got "Invalid module format" for each file. For example: WARNING: Error inserting dvb_ttpci (/lib/modules/2.6.33.amd64-x2.022410.1/kernel/drivers/media/dv

Re: [linux-dvb] Acoustical mode for femon

2009-12-27 Thread VDR User
On Wed, Dec 23, 2009 at 1:20 PM, Maximilian Seesslen wrote: > Hi List, > > find attached a patch that adds a "Acoustical mode" to femon. > The monitoring application produces a sound indicating the signal quality. The > higher the beep the better the signal quality. > This is useful while mounting

Re: Linux Server (without GUI) streaming skystar chanel to TV through graphic card

2009-12-25 Thread VDR User
Ps. I forgot to mention there is no desktop installed on the system. For that matter there isn't a keyboard, mouse, or monitor either. System maintenance is done via ssh from another computer and VDR is controlled using lirc + a remote control. -- To unsubscribe from this list: send the line "unsu

Re: Linux Server (without GUI) streaming skystar chanel to TV through graphic card

2009-12-25 Thread VDR User
On Fri, Dec 25, 2009 at 5:29 PM, wrote: > Dear all, > > I would like to transmit/stream a channel from skystar (on a Ubuntu Linux > server) to a TV through ATI X300 SE (128MB) graphic card (s-video > interface). > > It is possible to do transmit the channel without a gui (gnome, for > instance) i

Re: [linux-dvb] Is there somobody dealing with DVB cards here ?!?

2009-12-13 Thread VDR User
On Sun, Dec 13, 2009 at 11:03 AM, dvblinux wrote: > I first have to learn what is and how to "create a patch" since I only > used my vi to modify the source of the driver and then recompiled it... You can use the "diff" command to do it and also see the link the other guy posted. It's pretty sim

  1   2   >