Kconfig 3.3 KB

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