Gentoo Archives: gentoo-user

From: "Andrey F." <ma3oxuct@×××××.com>
To: gentoo-user@l.g.o
Subject: Re: [gentoo-user] Kernel option missing - very frustrating...
Date: Sun, 15 Dec 2019 17:36:56
Message-Id: CAD7sfFxj2p32gnpfBtDxHMd9E=ExEWc9pyEJt6LBtwyLiO0d2Q@mail.gmail.com
In Reply to: [gentoo-user] Kernel option missing - very frustrating... by Daniel Frey
1 On Sun, Dec 15, 2019, 09:26 Daniel Frey <djqfrey@×××××.com> wrote:
2
3 > Well, I bought a new TV tuner card for MythTV, a Hauppauge QuadHD.
4 >
5 > It uses the cx23885 driver, but I can't find it anywhere.
6 >
7 > According to menuconfig:
8 >
9 > Symbol: VIDEO_CX23885 [=n]
10 >
11 >
12 >
13 > Type : tristate
14 >
15 >
16 >
17 > Prompt: Conexant cx23885 (2388x successor) support
18 >
19 >
20 > Location:
21 > -> Device Drivers
22 >
23 >
24 > -> Multimedia support (MEDIA_SUPPORT [=y])
25 >
26 >
27 > (1) -> Media PCI Adapters (MEDIA_PCI_SUPPORT [=y])
28 >
29 > But it isn't there.
30 >
31 > I checked its dependencies:
32 >
33 > Depends on: MEDIA_SUPPORT [=y] &&
34 > MEDIA_PCI_SUPPORT [=y] &&
35 > (MEDIA_ANALOG_TV_SUPPORT [=n] || MEDIA_DIGITAL_TV_SUPPORT [=y]) &&
36 > DVB_CORE [=y] &&
37 > VIDEO_DEV [=n] &&
38 >
39
40 This is what you need to flip to 'y'
41
42 PCI [=y] &&
43 > I2C [=y] &&
44 > INPUT [=y] &&
45 > SND [=y] &&
46 > RC_CORE [=y]
47 >
48 > ..and... :
49 >
50 > # grep
51 > 'CONFIG_MEDIA_SUPPORT=\|CONFIG_MEDIA_PCI_SUPPORT=\|CONFIG_MEDIA_ANALOG_TV_SUPPORT=\|CONFIG_MEDIA_DIGITAL_TV_SUPPORT=\|CONFIG_DVB_CORE=\|CONFIG_VIDEO_DEV=\|CONFIG_PCI=\|CONFIG_I2C=\|CONFIG_INPUT=\|CONFIG_SND=\|CONFIG_RC_CORE='
52 >
53 > .config
54 > CONFIG_PCI=y
55 > CONFIG_INPUT=y
56 > CONFIG_I2C=y
57 > CONFIG_RC_CORE=y
58 > CONFIG_MEDIA_SUPPORT=y
59 > CONFIG_MEDIA_DIGITAL_TV_SUPPORT=y
60 > CONFIG_DVB_CORE=y
61 > CONFIG_MEDIA_PCI_SUPPORT=y
62 > CONFIG_SND=y
63 >
64 > So why on earth isn't it showing? The dependencies should be satisfied.
65 > I hope someone has some insight... I've had this problem before with
66 > tuner cards not showing and I can't remember how I fixed it.
67 >
68 > Kernel version is 5.4.2, but I also tried 4.14.143 with no difference...
69 >
70 >
71 > Dan
72 >
73 >