Kconfig 3.5 KB

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