blob: bf2fb4879868546405f955dd1f98d6e728f241ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
|
menu "Multimedia devices support"
depends on ADK_TARGET_WITH_PCI || ADK_TARGET_WITH_USB
config ADK_KERNEL_MEDIA_SUPPORT
boolean
config ADK_KERNEL_SND_TIMER
boolean
config ADK_KERNEL_SND_PCM
boolean
config ADK_KERNEL_SND_HWDEP
boolean
config ADK_KERNEL_SND_OSSEMUL
boolean
config ADK_KERNEL_SND_MIXER_OSS
boolean
config ADK_KERNEL_SND_PCM_OSS
boolean
config ADK_KPACKAGE_KMOD_SOUND
tristate
config ADK_KPACKAGE_KMOD_SND_RAWMIDI
tristate
config ADK_KPACKAGE_KMOD_SND_AC97_CODEC
tristate
menu "Audio devices support"
config ADK_KPACKAGE_KMOD_SND
prompt "kmod-snd...................... ALSA sound support"
tristate
select ADK_KPACKAGE_KMOD_SOUND
select ADK_KERNEL_SND_OSSEMUL
select ADK_KERNEL_SND_TIMER
select ADK_KERNEL_SND_PCM
select ADK_KERNEL_SND_HWDEP
default n
help
Basic ALSA sound support.
config ADK_KPACKAGE_KMOD_SND_OSSEMUL
prompt "kmod-snd-ossemul.............. ALSA OSS Emulation"
tristate
select ADK_KERNEL_SND_MIXER_OSS
select ADK_KERNEL_SND_PCM_OSS
select ADK_KPACKAGE_KMOD_SND
default y if ADK_TARGET_SYSTEM_IBM_X40
default n
help
ALSA OSS Emulation
config ADK_KPACKAGE_KMOD_SND_INTEL8X0
prompt "kmod-snd-intel8x0............. Intel AC97 driver"
tristate
select ADK_KPACKAGE_KMOD_SND_AC97_CODEC
select ADK_KPACKAGE_KMOD_SND
default y if ADK_TARGET_SYSTEM_IBM_X40
default n
help
Driver for intel chipsets.
config ADK_KPACKAGE_KMOD_SND_VIA82XX
prompt "kmod-snd-via82xx.............. ALSA VIA82XX driver"
tristate
select ADK_KPACKAGE_KMOD_SND
default n
help
ALSA VIA82XX driver
config ADK_KPACKAGE_KMOD_SND_ENS1370
prompt "kmod-snd-ens1370.............. ALSA Ensoniq 1370 driver"
tristate
select ADK_KPACKAGE_KMOD_SND
default n
help
ALSA Ensonique 1370 driver
config ADK_KPACKAGE_KMOD_SND_CS5535AUDIO
prompt "kmod-snd-cs5535audio.......... ALSA AMD CS5535 driver"
tristate
select ADK_KPACKAGE_KMOD_SND_AC97_CODEC
select ADK_KPACKAGE_KMOD_SND
default y if ADK_TARGET_SYSTEM_LEMOTE_YEELONG
default y if ADK_TARGET_SYSTEM_PCENGINES_ALIX1C
default n
help
ALSA AMD CS5535 driver
endmenu
menu "Video devices support"
config ADK_KPACKAGE_KMOD_VIDEO_DEV
prompt "kmod-video-dev.................. Video (For Linux) kernel support"
tristate
select ADK_KERNEL_MEDIA_SUPPORT
default n
help
Support for audio/video capture and overlay devices and FM radio
cards. The exact capabilities of each device vary.
This kernel includes support for the new Video for Linux Two API,
(V4L2) as well as the original system. Drivers and applications
need to be rewritten to use V4L2, but drivers for popular cards
and applications for most video capture functions already exist.
Additional info and docs are available on the web at
<http://linuxtv.org>
Documentation for V4L2 is also available on the web at
<http://bytesex.org/v4l/>.
config ADK_KPACKAGE_KMOD_USB_VIDEO_CLASS
prompt "kmod-usb-video-class............ Kernel driver for USB video webcams"
tristate
depends on ADK_KPACKAGE_KMOD_USB || ADK_TARGET_SYSTEM_LEMOTE_YEELONG
select ADK_KPACKAGE_KMOD_VIDEO_DEV
default n
help
config ADK_KPACKAGE_KMOD_USB_PWC
prompt "kmod-usb-pwc.................... Kernel driver for USB Philips Cameras"
tristate
depends on ADK_KPACKAGE_KMOD_USB
default n
help
endmenu
endmenu
|