public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Michael Krufky <mkrufky@m1k.net>
To: Michael Krufky <mkrufky@m1k.net>
Cc: Gene Heskett <gene.heskett@verizon.net>,
	Hugh Dickins <hugh@veritas.com>,
	linux-kernel@vger.kernel.org, Adrian Bunk <bunk@stusta.de>,
	Johannes Stezenbach <js@linuxtv.org>,
	Sam Ravnborg <sam@ravnborg.org>
Subject: [PATCH] hybrid v4l/dvb advanced frontend selection fix
Date: Thu, 24 Nov 2005 14:07:41 -0500	[thread overview]
Message-ID: <43860F7D.2090307@m1k.net> (raw)
In-Reply-To: <4385F22E.4020509@m1k.net>

[-- Attachment #1: Type: text/plain, Size: 2234 bytes --]

Michael Krufky wrote:

> Gene Heskett wrote:
>
>> Got it, building src tree now, config'd & building.
>>
>> And, I unchecked everything but what I need to run this card (I think,
>> whatdoIknow) and got this at depmod time:
>> WARNING:
>> /lib/modules/2.6.15-rc2-git4/kernel/drivers/media/video/cx88/cx88-dvb.ko
>> needs unknown symbol mt352_attach
>> WARNING:
>> /lib/modules/2.6.15-rc2-git4/kernel/drivers/media/video/cx88/cx88-dvb.ko
>> needs unknown symbol nxt200x_attach
>> WARNING:
>> /lib/modules/2.6.15-rc2-git4/kernel/drivers/media/video/cx88/cx88-dvb.ko
>> needs unknown symbol mt352_write
>> WARNING:
>> /lib/modules/2.6.15-rc2-git4/kernel/drivers/media/video/cx88/cx88-dvb.ko
>> needs unknown symbol lgdt330x_attach
>> WARNING:
>> /lib/modules/2.6.15-rc2-git4/kernel/drivers/media/video/cx88/cx88-dvb.ko
>> needs unknown symbol cx22702_attach
>>
>> Maybe somebody can take the time to tell me what I do need to run a
>> pcHDTV-3000 in both ntsc and atsc modes using this newer code?
>> I was under the impression I needed the cx88 stuffs, ORV51132 (for
>> atsc) and nxt2002(for ntsc), but now we have lots of other dependencies
>> out the wazoo.  Please clarify.
>
> These other dependencies have always been there, except that nxt200x 
> and lgdt330x are relatively new frontends.
>
> The difference is that a new Kconfig / Makefile feature is allowing us 
> to only select the specific frontend needed by your hardware... 
> Previously, all frontend support was forced to be built-in.
>
> You and Adrian have clearly demonstrated that this frontend selection 
> capability isn't working properly.  I think I will send Linus a patch 
> to restore previous functionality, forcing all frontends to be 
> built... Then I will resubmit a patch to Andrew that will re-enable 
> this frontend selection support, and I'll ask him to hold it in -mm 
> until we can work out the bugs.

Actually, I think that I might have fixed it... Please test the attached 
patch.

> The problem is that you are selecting cx88-dvb to be built-in to the 
> kernel (not as a module) , but the frontends are being built as 
> modules only. 

[PATCH] hybrid v4l/dvb advanced frontend selection fix

Signed-off-by: Michael Krufky <mkrufky@m1k.net>


[-- Attachment #2: advanced-frontend-selection-fix.patch --]
[-- Type: text/plain, Size: 3824 bytes --]

diff -upr linux-2.6.15-rc2-git4/drivers/media/video/cx88/Kconfig linux/drivers/media/video/cx88/Kconfig
--- linux-2.6.15-rc2-git4/drivers/media/video/cx88/Kconfig	2005-11-24 13:47:02.148734660 -0500
+++ linux/drivers/media/video/cx88/Kconfig	2005-11-24 13:50:29.849190791 -0500
@@ -46,8 +46,8 @@ config VIDEO_CX88_DVB_ALL_FRONTENDS
 	  If you are unsure, choose Y.
 
 config VIDEO_CX88_DVB_MT352
-	tristate "Zarlink MT352 DVB-T Support"
-	default m
+	bool "Zarlink MT352 DVB-T Support"
+	default y
 	depends on VIDEO_CX88_DVB && !VIDEO_CX88_DVB_ALL_FRONTENDS
 	select DVB_MT352
 	---help---
@@ -55,8 +55,8 @@ config VIDEO_CX88_DVB_MT352
 	  Connexant 2388x chip and the MT352 demodulator.
 
 config VIDEO_CX88_DVB_OR51132
-	tristate "OR51132 ATSC Support"
-	default m
+	bool "OR51132 ATSC Support"
+	default y
 	depends on VIDEO_CX88_DVB && !VIDEO_CX88_DVB_ALL_FRONTENDS
 	select DVB_OR51132
 	---help---
@@ -64,8 +64,8 @@ config VIDEO_CX88_DVB_OR51132
 	  Connexant 2388x chip and the OR51132 demodulator.
 
 config VIDEO_CX88_DVB_CX22702
-	tristate "Conexant CX22702 DVB-T Support"
-	default m
+	bool "Conexant CX22702 DVB-T Support"
+	default y
 	depends on VIDEO_CX88_DVB && !VIDEO_CX88_DVB_ALL_FRONTENDS
 	select DVB_CX22702
 	---help---
@@ -73,8 +73,8 @@ config VIDEO_CX88_DVB_CX22702
 	  Connexant 2388x chip and the CX22702 demodulator.
 
 config VIDEO_CX88_DVB_LGDT330X
-	tristate "LG Electronics DT3302/DT3303 ATSC Support"
-	default m
+	bool "LG Electronics DT3302/DT3303 ATSC Support"
+	default y
 	depends on VIDEO_CX88_DVB && !VIDEO_CX88_DVB_ALL_FRONTENDS
 	select DVB_LGDT330X
 	---help---
@@ -82,8 +82,8 @@ config VIDEO_CX88_DVB_LGDT330X
 	  Connexant 2388x chip and the LGDT3302/LGDT3303 demodulator.
 
 config VIDEO_CX88_DVB_NXT200X
-	tristate "NXT2002/NXT2004 ATSC Support"
-	default m
+	bool "NXT2002/NXT2004 ATSC Support"
+	default y
 	depends on VIDEO_CX88_DVB && !VIDEO_CX88_DVB_ALL_FRONTENDS
 	select DVB_NXT200X
 	---help---
diff -upr linux-2.6.15-rc2-git4/drivers/media/video/Kconfig linux/drivers/media/video/Kconfig
--- linux-2.6.15-rc2-git4/drivers/media/video/Kconfig	2005-11-24 13:47:02.123743990 -0500
+++ linux/drivers/media/video/Kconfig	2005-11-24 13:52:00.525339321 -0500
@@ -26,7 +26,7 @@ config VIDEO_BT848
 	  module will be called bttv.
 
 config VIDEO_BT848_DVB
-	tristate "DVB/ATSC Support for bt878 based TV cards"
+	bool "DVB/ATSC Support for bt878 based TV cards"
 	depends on VIDEO_BT848 && DVB_CORE
 	select DVB_BT8XX
 	---help---
diff -upr linux-2.6.15-rc2-git4/drivers/media/video/saa7134/Kconfig linux/drivers/media/video/saa7134/Kconfig
--- linux-2.6.15-rc2-git4/drivers/media/video/saa7134/Kconfig	2005-11-24 13:47:02.185720851 -0500
+++ linux/drivers/media/video/saa7134/Kconfig	2005-11-24 13:51:24.175908125 -0500
@@ -42,8 +42,8 @@ config VIDEO_SAA7134_DVB_ALL_FRONTENDS
 	  If you are unsure, choose Y.
 
 config VIDEO_SAA7134_DVB_MT352
-	tristate "Zarlink MT352 DVB-T Support"
-	default m
+	bool "Zarlink MT352 DVB-T Support"
+	default y
 	depends on VIDEO_SAA7134_DVB && !VIDEO_SAA7134_DVB_ALL_FRONTENDS
 	select DVB_MT352
 	---help---
@@ -51,8 +51,8 @@ config VIDEO_SAA7134_DVB_MT352
 	  Philips saa7134 chip and the MT352 demodulator.
 
 config VIDEO_SAA7134_DVB_TDA1004X
-	tristate "Phillips TDA10045H/TDA10046H DVB-T Support"
-	default m
+	bool "Phillips TDA10045H/TDA10046H DVB-T Support"
+	default y
 	depends on VIDEO_SAA7134_DVB && !VIDEO_SAA7134_DVB_ALL_FRONTENDS
 	select DVB_TDA1004X
 	---help---
@@ -60,8 +60,8 @@ config VIDEO_SAA7134_DVB_TDA1004X
 	  Philips saa7134 chip and the TDA10045H/TDA10046H demodulator.
 
 config VIDEO_SAA7134_DVB_NXT200X
-	tristate "NXT2002/NXT2004 ATSC Support"
-	default m
+	bool "NXT2002/NXT2004 ATSC Support"
+	default y
 	depends on VIDEO_SAA7134_DVB && !VIDEO_SAA7134_DVB_ALL_FRONTENDS
 	select DVB_NXT200X
 	---help---

  reply	other threads:[~2005-11-24 19:07 UTC|newest]

Thread overview: 70+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-11-20  3:40 Linux 2.6.15-rc2 Linus Torvalds
2005-11-20  5:18 ` Gene Heskett
2005-11-20 17:02   ` Gene Heskett
2005-11-20 17:37     ` Gene Heskett
2005-11-20 19:17       ` Gene Heskett
2005-11-20 22:36   ` Kasper Sandberg
2005-11-20 23:58     ` Gene Heskett
2005-11-21 21:17       ` Kasper Sandberg
2005-11-21 23:52         ` Gene Heskett
2005-11-23  9:04           ` Kasper Sandberg
2005-11-21  0:15   ` Johannes Stezenbach
2005-11-21  1:07     ` Gene Heskett
2005-11-21  1:32       ` Johannes Stezenbach
2005-11-21  1:49         ` Gene Heskett
2005-11-23  1:56           ` Michael Krufky
2005-11-23  4:36             ` Gene Heskett
2005-11-23 17:42               ` Adrian Bunk
2005-11-23 18:19                 ` Gene Heskett
2005-11-23 18:26                 ` Sam Ravnborg
2005-11-23 18:38                   ` Adrian Bunk
2005-11-26 20:30                   ` [PATCH] fix broken hybrid v4l-dvb frontend selection Michael Krufky
2005-11-23 18:31                 ` Linux 2.6.15-rc2 Gene Heskett
2005-11-23 19:17                 ` Michael Krufky
2005-11-23 19:36                   ` Gene Heskett
2005-11-23 19:54                     ` Michael Krufky
2005-11-23 20:14                       ` Gene Heskett
2005-11-23 20:28                         ` Michael Krufky
2005-11-23 21:26                           ` Hugh Dickins
2005-11-23 22:36                             ` Gene Heskett
2005-11-23 23:40                               ` Hugh Dickins
2005-11-23 23:53                                 ` Gene Heskett
2005-11-24  0:37                                 ` Gene Heskett
2005-11-24  7:45                                   ` Hugh Dickins
2005-11-24 15:15                                     ` Gene Heskett
2005-11-24 17:02                                     ` Michael Krufky
2005-11-24 19:07                                       ` Michael Krufky [this message]
2005-11-24  4:40                               ` Paul Jackson
2005-11-23 20:38                   ` Adrian Bunk
2005-11-23 20:49                     ` Michael Krufky
2005-11-23 21:04                       ` Adrian Bunk
2005-11-20 13:20 ` Michael Geithe
2005-11-20 14:52   ` cinergyT2 oops (was Re: Linux 2.6.15-rc2) Alexey Dobriyan
2005-11-20 15:04     ` Michael Geithe
2005-11-20 16:13   ` Linux 2.6.15-rc2 Dmitry Torokhov
2005-11-20 19:13     ` Michael Geithe
2005-11-22  4:30 ` Jeffrey Hundstad
2005-11-22 23:00   ` Andrew Morton
2005-11-23  0:50     ` Linus Torvalds
2005-11-23  1:05       ` Andrew Morton
2005-11-23  1:32         ` Andi Kleen
2005-11-23  1:43           ` Linus Torvalds
2005-11-23  2:16           ` David S. Miller
2005-11-23  1:39         ` Linus Torvalds
2005-11-23  2:08           ` Andrew Morton
2005-11-23  3:41           ` Jeffrey Hundstad
2005-11-23  3:48             ` Linus Torvalds
2005-11-23 16:48               ` Jeffrey Hundstad
2005-11-23  5:01           ` Zan Lynx
2005-11-23  1:14       ` Zan Lynx
2005-11-23  4:42       ` Gene Heskett
2005-11-24 12:37 ` Ed Tomlinson
2005-11-24 13:07   ` Andreas Ericsson
2005-11-24 18:44     ` Linus Torvalds
2005-11-24 19:42       ` Junio C Hamano
2005-11-24 19:57         ` Linus Torvalds
2005-11-24 21:02           ` Junio C Hamano
2005-11-24 18:37   ` Linus Torvalds
2005-11-24 19:52     ` Nick Hengeveld
2005-11-25  2:50       ` Ed Tomlinson
2005-11-25  8:42         ` Andreas Ericsson

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=43860F7D.2090307@m1k.net \
    --to=mkrufky@m1k.net \
    --cc=bunk@stusta.de \
    --cc=gene.heskett@verizon.net \
    --cc=hugh@veritas.com \
    --cc=js@linuxtv.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=sam@ravnborg.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox