Kconfig revision 58c66df3e38ffb1d59cc5162bb9e07c859288034
1#
2# Multimedia device configuration
3#
4
5menuconfig MEDIA_SUPPORT
6	tristate "Multimedia support"
7	depends on HAS_IOMEM
8	help
9	  If you want to use Video for Linux, DVB for Linux, or DAB adapters,
10	  enable this option and other options below.
11
12if MEDIA_SUPPORT
13
14comment "Multimedia core support"
15
16#
17# V4L core and enabled API's
18#
19
20config VIDEO_DEV
21	tristate "Video For Linux"
22	---help---
23	  V4L core support for video capture and overlay devices, webcams and
24	  AM/FM radio cards.
25
26	  This kernel includes support for the new Video for Linux Two API,
27	  (V4L2).
28
29	  Additional info and docs are available on the web at
30	  <http://linuxtv.org>
31
32	  Documentation for V4L2 is also available on the web at
33	  <http://bytesex.org/v4l/>.
34
35	  To compile this driver as a module, choose M here: the
36	  module will be called videodev.
37
38config VIDEO_V4L2_COMMON
39	tristate
40	depends on (I2C || I2C=n) && VIDEO_DEV
41	default (I2C || I2C=n) && VIDEO_DEV
42
43#
44# DVB Core
45#
46
47config DVB_CORE
48	tristate "DVB for Linux"
49	depends on NET && INET
50	select CRC32
51	help
52	  DVB core utility functions for device handling, software fallbacks etc.
53
54	  Enable this if you own a DVB/ATSC adapter and want to use it or if
55	  you compile Linux for a digital SetTopBox.
56
57	  Say Y when you have a DVB or an ATSC card and want to use it.
58
59	  API specs and user tools are available from <http://www.linuxtv.org/>.
60
61	  Please report problems regarding this support to the LinuxDVB
62	  mailing list.
63
64	  If unsure say N.
65
66config VIDEO_MEDIA
67	tristate
68	default (DVB_CORE && (VIDEO_DEV = n)) || (VIDEO_DEV && (DVB_CORE = n)) || (DVB_CORE && VIDEO_DEV)
69
70comment "Multimedia drivers"
71
72source "drivers/media/common/Kconfig"
73source "drivers/media/rc/Kconfig"
74
75#
76# Tuner drivers for DVB and V4L
77#
78
79source "drivers/media/common/tuners/Kconfig"
80
81#
82# Video/Radio/Hybrid adapters
83#
84
85source "drivers/media/video/Kconfig"
86
87source "drivers/media/radio/Kconfig"
88
89#
90# DVB adapters
91#
92
93source "drivers/media/dvb/Kconfig"
94
95config DAB
96	boolean "DAB adapters"
97	---help---
98	  Allow selecting support for Digital Audio Broadcasting (DAB)
99	  Receiver adapters.
100
101if DAB
102config USB_DABUSB
103	tristate "DABUSB driver"
104	depends on USB
105	---help---
106	  A Digital Audio Broadcasting (DAB) Receiver for USB and Linux
107	  brought to you by the DAB-Team
108	  <http://wwwbode.cs.tum.edu/Par/arch/dab/>.  This driver can be taken
109	  as an example for URB-based bulk, control, and isochronous
110	  transactions. URB's are explained in
111	  <Documentation/usb/URB.txt>.
112
113	  To compile this driver as a module, choose M here: the
114	  module will be called dabusb.
115endif # DAB
116
117endif # MEDIA_SUPPORT
118