BKL: introduce CONFIG_BKL.
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / media / Kconfig
blobbad2cedb8d96886cec38af4b0003c476fbdd11f9
2 # Multimedia device configuration
5 menuconfig 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.
12 if MEDIA_SUPPORT
14 comment "Multimedia core support"
17 # V4L core and enabled API's
20 config VIDEO_DEV
21         tristate "Video For Linux"
22         depends on BKL # used in many drivers for ioctl handling, need to kill
23         ---help---
24           V4L core support for video capture and overlay devices, webcams and
25           AM/FM radio cards.
27           This kernel includes support for the new Video for Linux Two API,
28           (V4L2).
30           Additional info and docs are available on the web at
31           <http://linuxtv.org>
33           Documentation for V4L2 is also available on the web at
34           <http://bytesex.org/v4l/>.
36           To compile this driver as a module, choose M here: the
37           module will be called videodev.
39 config VIDEO_V4L2_COMMON
40         tristate
41         depends on (I2C || I2C=n) && VIDEO_DEV
42         default (I2C || I2C=n) && VIDEO_DEV
44 config VIDEO_ALLOW_V4L1
45         bool "Enable Video For Linux API 1 (DEPRECATED)"
46         depends on VIDEO_DEV && VIDEO_V4L2_COMMON
47         default VIDEO_DEV && VIDEO_V4L2_COMMON
48         ---help---
49           Enables drivers based on the legacy V4L1 API.
51           This api were developed to be used at Kernel 2.2 and 2.4, but
52           lacks support for several video standards. There are several
53           drivers at kernel that still depends on it.
55           If you are unsure as to whether this is required, answer Y.
57 config VIDEO_V4L1_COMPAT
58         bool "Enable Video For Linux API 1 compatible Layer" if !VIDEO_ALLOW_V4L1
59         depends on VIDEO_DEV
60         default y
61         ---help---
62           Enables a compatibility API used by most V4L2 devices to allow
63           its usage with legacy applications that supports only V4L1 api.
65           Documentation for the original API is included in the file
66           <Documentation/video4linux/API.html>.
68           User tools for this are available from
69           <ftp://ftp.uk.linux.org/pub/linux/video4linux/>.
71           If you are unsure as to whether this is required, answer Y.
74 # DVB Core
77 config DVB_CORE
78         tristate "DVB for Linux"
79         depends on NET && INET
80         select CRC32
81         help
82           DVB core utility functions for device handling, software fallbacks etc.
84           Enable this if you own a DVB/ATSC adapter and want to use it or if
85           you compile Linux for a digital SetTopBox.
87           Say Y when you have a DVB or an ATSC card and want to use it.
89           API specs and user tools are available from <http://www.linuxtv.org/>.
91           Please report problems regarding this support to the LinuxDVB
92           mailing list.
94           If unsure say N.
96 config VIDEO_MEDIA
97         tristate
98         default (DVB_CORE && (VIDEO_DEV = n)) || (VIDEO_DEV && (DVB_CORE = n)) || (DVB_CORE && VIDEO_DEV)
100 comment "Multimedia drivers"
102 source "drivers/media/common/Kconfig"
103 source "drivers/media/IR/Kconfig"
106 # Tuner drivers for DVB and V4L
109 source "drivers/media/common/tuners/Kconfig"
112 # Video/Radio/Hybrid adapters
115 source "drivers/media/video/Kconfig"
117 source "drivers/media/radio/Kconfig"
120 # DVB adapters
123 source "drivers/media/dvb/Kconfig"
125 config DAB
126         boolean "DAB adapters"
127         ---help---
128           Allow selecting support for Digital Audio Broadcasting (DAB)
129           Receiver adapters.
131 if DAB
132 config USB_DABUSB
133         tristate "DABUSB driver"
134         depends on USB
135         ---help---
136           A Digital Audio Broadcasting (DAB) Receiver for USB and Linux
137           brought to you by the DAB-Team
138           <http://wwwbode.cs.tum.edu/Par/arch/dab/>.  This driver can be taken
139           as an example for URB-based bulk, control, and isochronous
140           transactions. URB's are explained in
141           <Documentation/usb/URB.txt>.
143           To compile this driver as a module, choose M here: the
144           module will be called dabusb.
145 endif # DAB
147 endif # MEDIA_SUPPORT