Kconfig 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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 = n)) || (VIDEO_DEV && (DVB_CORE = n)) || (DVB_CORE && VIDEO_DEV)
  69. comment "Multimedia drivers"
  70. source "drivers/media/common/Kconfig"
  71. #
  72. # Tuner drivers for DVB and V4L
  73. #
  74. source "drivers/media/common/tuners/Kconfig"
  75. #
  76. # Video/Radio/Hybrid adapters
  77. #
  78. source "drivers/media/video/Kconfig"
  79. source "drivers/media/radio/Kconfig"
  80. #
  81. # DVB adapters
  82. #
  83. source "drivers/media/dvb/Kconfig"
  84. config DAB
  85. boolean "DAB adapters"
  86. ---help---
  87. Allow selecting support for for Digital Audio Broadcasting (DAB)
  88. Receiver adapters.
  89. if DAB
  90. config USB_DABUSB
  91. tristate "DABUSB driver"
  92. depends on USB
  93. ---help---
  94. A Digital Audio Broadcasting (DAB) Receiver for USB and Linux
  95. brought to you by the DAB-Team
  96. <http://wwwbode.cs.tum.edu/Par/arch/dab/>. This driver can be taken
  97. as an example for URB-based bulk, control, and isochronous
  98. transactions. URB's are explained in
  99. <Documentation/usb/URB.txt>.
  100. To compile this driver as a module, choose M here: the
  101. module will be called dabusb.
  102. endif # DAB
  103. endmenu