Gentoo Archives: gentoo-user

From: "Bo Ørsted Andresen" <bo.andresen@××××.dk>
To: gentoo-user@l.g.o
Subject: Re: [gentoo-user] ivtv support for gentoo-sources 2.6.19-r7 and higher?
Date: Thu, 19 Apr 2007 23:28:16
Message-Id: 200704200122.51798.bo.andresen@zlin.dk
In Reply to: [gentoo-user] ivtv support for gentoo-sources 2.6.19-r7 and higher? by Mark Knecht
1 On Friday 20 April 2007 00:08:03 Mark Knecht wrote:
2 > Hi,
3 > I am trying to update my MythTV server's kernel to 2.6.19 or
4 > higher. It's been running 2.6.17. When I boot either 2.6.19-r7 or
5 > 2.6.20-r6 and attempt to build the ivtv driver I get message like
6 > this:
7 >
8 > * Checking for suitable kernel configuration options...
9 > * CONFIG_VIDEO_HELPER_CHIPS_AUTO: should not be set. But it is.
10 > * CONFIG_VIDEO_WM8775: is not set when it should be.
11 > * CONFIG_VIDEO_CX25840: is not set when it should be.
12 > * CONFIG_VIDEO_SAA711X: is not set when it should be.
13 > * CONFIG_VIDEO_CX2341X: is not set when it should be.
14 > * CONFIG_VIDEO_SAA7127: is not set when it should be.
15 > * Please check to make sure these options are set correctly.
16 > * Failure to do so may cause unexpected problems.
17 > * Once you have satisfied these options, please try merging
18 > * this package again.
19 >
20 > It seems that in the gentoo-sources-2.6.17-r2 kernel under
21 > Multimedia devices->Video Capture Devices there was an option for
22 > Encoders and Decoders where these could be set. On these newer kernels
23 > that section is not there and scanning through the .config file for
24 > the kernel I'm not finding them at all.
25 >
26 > Does anyone know what's required to get these features into the kernel?
27
28 If you enter `make menuconfig` for your kernel then you can type slash ('/') to
29 search for config options. If you search for VIDEO_HELPER_CHIPS_AUTO then you
30 get output like this:
31
32 Location:
33 -> Device Drivers
34 -> Multimedia devices
35 -> Video For Linux (VIDEO_DEV [=n])
36 -> Video Capture Adapters
37
38 which tells you where to find and disable that option.
39
40 If you search for VIDEO_WM8775 then in addition to it's Location you also see:
41
42 Depends on: VIDEO_DEV && !VIDEO_HELPER_CHIPS_AUTO && VIDEO_V4L2 && I2C && EXPERIMENTAL
43
44 This tells you that that option is only visible when VIDEO_DEV is enabled,
45 VIDEO_HELPER_CHIPS_AUTO is disabled (which it isn't), VIDEO_V4L2 is enabled
46 etc...
47
48 So using the search facilities in `make menuconfig` like this you should
49 be able to find and set correctly these options on your own...
50
51 --
52 Bo Andresen

Attachments

File name MIME type
signature.asc application/pgp-signature

Replies

Subject Author
Re: [gentoo-user] ivtv support for gentoo-sources 2.6.19-r7 and higher? Mark Knecht <markknecht@×××××.com>