Kconfig 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. #
  2. # Multimedia device configuration
  3. #
  4. menu "Multimedia devices"
  5. depends on HAS_IOMEM
  6. config VIDEO_DEV
  7. tristate "Video For Linux"
  8. ---help---
  9. Support for audio/video capture and overlay devices and FM radio
  10. cards. The exact capabilities of each device vary.
  11. This kernel includes support for the new Video for Linux Two API,
  12. (V4L2) as well as the original system. Drivers and applications
  13. need to be rewritten to use V4L2, but drivers for popular cards
  14. and applications for most video capture functions already exist.
  15. Additional info and docs are available on the web at
  16. <http://linuxtv.org>
  17. Documentation for V4L2 is also available on the web at
  18. <http://bytesex.org/v4l/>.
  19. To compile this driver as a module, choose M here: the
  20. module will be called videodev.
  21. config VIDEO_V4L1
  22. bool "Enable Video For Linux API 1 (DEPRECATED)"
  23. depends on VIDEO_DEV
  24. select VIDEO_V4L1_COMPAT
  25. default y
  26. ---help---
  27. Enables a compatibility API used by most V4L2 devices to allow
  28. its usage with legacy applications that supports only V4L1 api.
  29. If you are unsure as to whether this is required, answer Y.
  30. config VIDEO_V4L1_COMPAT
  31. bool "Enable Video For Linux API 1 compatible Layer"
  32. depends on VIDEO_DEV
  33. default y
  34. ---help---
  35. This api were developed to be used at Kernel 2.2 and 2.4, but
  36. lacks support for several video standards. There are several
  37. drivers at kernel that still depends on it.
  38. Documentation for the original API is included in the file
  39. <Documentation/video4linux/API.html>.
  40. User tools for this are available from
  41. <ftp://ftp.uk.linux.org/pub/linux/video4linux/>.
  42. If you are unsure as to whether this is required, answer Y.
  43. config VIDEO_V4L2
  44. bool
  45. depends on VIDEO_DEV
  46. default y
  47. source "drivers/media/video/Kconfig"
  48. source "drivers/media/radio/Kconfig"
  49. source "drivers/media/dvb/Kconfig"
  50. source "drivers/media/common/Kconfig"
  51. config VIDEO_TUNER
  52. tristate
  53. depends on I2C
  54. config VIDEO_BUF
  55. depends on PCI
  56. tristate
  57. config VIDEO_BUF_DVB
  58. tristate
  59. config VIDEO_BTCX
  60. tristate
  61. config VIDEO_IR
  62. tristate
  63. config VIDEO_TVEEPROM
  64. tristate
  65. depends on I2C
  66. config DAB
  67. boolean "DAB adapters"
  68. default y
  69. ---help---
  70. Allow selecting support for for Digital Audio Broadcasting (DAB)
  71. Receiver adapters.
  72. if DAB
  73. config USB_DABUSB
  74. tristate "DABUSB driver"
  75. depends on USB
  76. ---help---
  77. A Digital Audio Broadcasting (DAB) Receiver for USB and Linux
  78. brought to you by the DAB-Team
  79. <http://wwwbode.cs.tum.edu/Par/arch/dab/>. This driver can be taken
  80. as an example for URB-based bulk, control, and isochronous
  81. transactions. URB's are explained in
  82. <Documentation/usb/URB.txt>.
  83. To compile this driver as a module, choose M here: the
  84. module will be called dabusb.
  85. endif # DAB
  86. endmenu