Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | # |
| 2 | # Multimedia device configuration |
| 3 | # |
| 4 | |
Randy Dunlap | ab482a6 | 2009-05-18 22:00:34 -0300 | [diff] [blame] | 5 | menuconfig MEDIA_SUPPORT |
| 6 | tristate "Multimedia support" |
Martin Schwidefsky | e25df12 | 2007-05-10 15:45:57 +0200 | [diff] [blame] | 7 | depends on HAS_IOMEM |
Randy Dunlap | ab482a6 | 2009-05-18 22:00:34 -0300 | [diff] [blame] | 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 | |
| 12 | if MEDIA_SUPPORT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | |
Mauro Carvalho Chehab | 7c91f06 | 2008-04-29 21:38:44 -0300 | [diff] [blame] | 14 | comment "Multimedia core support" |
| 15 | |
| 16 | # |
| 17 | # V4L core and enabled API's |
| 18 | # |
| 19 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | config VIDEO_DEV |
| 21 | tristate "Video For Linux" |
| 22 | ---help--- |
Mauro Carvalho Chehab | f178435 | 2008-04-29 21:38:45 -0300 | [diff] [blame] | 23 | V4L core support for video capture and overlay devices, webcams and |
| 24 | AM/FM radio cards. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | |
| 26 | This kernel includes support for the new Video for Linux Two API, |
Mauro Carvalho Chehab | f178435 | 2008-04-29 21:38:45 -0300 | [diff] [blame] | 27 | (V4L2). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | |
Mauro Carvalho Chehab | cd41e28 | 2006-04-09 15:43:41 -0300 | [diff] [blame] | 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/>. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
| 35 | To compile this driver as a module, choose M here: the |
| 36 | module will be called videodev. |
| 37 | |
Mauro Carvalho Chehab | a925447 | 2008-01-29 18:32:35 -0300 | [diff] [blame] | 38 | config VIDEO_V4L2_COMMON |
| 39 | tristate |
| 40 | depends on (I2C || I2C=n) && VIDEO_DEV |
| 41 | default (I2C || I2C=n) && VIDEO_DEV |
| 42 | |
Mauro Carvalho Chehab | 7c91f06 | 2008-04-29 21:38:44 -0300 | [diff] [blame] | 43 | # |
| 44 | # DVB Core |
| 45 | # |
Mauro Carvalho Chehab | cd41e28 | 2006-04-09 15:43:41 -0300 | [diff] [blame] | 46 | |
Mauro Carvalho Chehab | 7c91f06 | 2008-04-29 21:38:44 -0300 | [diff] [blame] | 47 | config DVB_CORE |
| 48 | tristate "DVB for Linux" |
| 49 | depends on NET && INET |
| 50 | select CRC32 |
| 51 | help |
Mauro Carvalho Chehab | 7c91f06 | 2008-04-29 21:38:44 -0300 | [diff] [blame] | 52 | DVB core utility functions for device handling, software fallbacks etc. |
Mauro Carvalho Chehab | f178435 | 2008-04-29 21:38:45 -0300 | [diff] [blame] | 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. |
Mauro Carvalho Chehab | 7c91f06 | 2008-04-29 21:38:44 -0300 | [diff] [blame] | 58 | |
| 59 | API specs and user tools are available from <http://www.linuxtv.org/>. |
| 60 | |
Mauro Carvalho Chehab | f178435 | 2008-04-29 21:38:45 -0300 | [diff] [blame] | 61 | Please report problems regarding this support to the LinuxDVB |
Mauro Carvalho Chehab | 7c91f06 | 2008-04-29 21:38:44 -0300 | [diff] [blame] | 62 | mailing list. |
| 63 | |
| 64 | If unsure say N. |
| 65 | |
| 66 | config VIDEO_MEDIA |
Mauro Carvalho Chehab | 17de9a4 | 2008-04-15 18:11:50 -0300 | [diff] [blame] | 67 | tristate |
Mauro Carvalho Chehab | 039d400 | 2008-05-14 04:36:22 -0300 | [diff] [blame] | 68 | default (DVB_CORE && (VIDEO_DEV = n)) || (VIDEO_DEV && (DVB_CORE = n)) || (DVB_CORE && VIDEO_DEV) |
Mauro Carvalho Chehab | 7c91f06 | 2008-04-29 21:38:44 -0300 | [diff] [blame] | 69 | |
| 70 | comment "Multimedia drivers" |
| 71 | |
| 72 | source "drivers/media/common/Kconfig" |
Mauro Carvalho Chehab | 32cf86f | 2010-11-09 23:00:14 -0300 | [diff] [blame] | 73 | source "drivers/media/rc/Kconfig" |
Mauro Carvalho Chehab | 7c91f06 | 2008-04-29 21:38:44 -0300 | [diff] [blame] | 74 | |
| 75 | # |
| 76 | # Tuner drivers for DVB and V4L |
| 77 | # |
| 78 | |
| 79 | source "drivers/media/common/tuners/Kconfig" |
| 80 | |
| 81 | # |
| 82 | # Video/Radio/Hybrid adapters |
| 83 | # |
Mauro Carvalho Chehab | 17de9a4 | 2008-04-15 18:11:50 -0300 | [diff] [blame] | 84 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | source "drivers/media/video/Kconfig" |
| 86 | |
| 87 | source "drivers/media/radio/Kconfig" |
| 88 | |
Mauro Carvalho Chehab | 7c91f06 | 2008-04-29 21:38:44 -0300 | [diff] [blame] | 89 | # |
| 90 | # DVB adapters |
| 91 | # |
| 92 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | source "drivers/media/dvb/Kconfig" |
| 94 | |
Randy Dunlap | ab482a6 | 2009-05-18 22:00:34 -0300 | [diff] [blame] | 95 | endif # MEDIA_SUPPORT |