Kconfig 3.3 KB

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