Kconfig 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. #
  2. # DVB device configuration
  3. #
  4. config DVB_DYNAMIC_MINORS
  5. bool "Dynamic DVB minor allocation"
  6. depends on DVB_CORE
  7. default n
  8. help
  9. If you say Y here, the DVB subsystem will use dynamic minor
  10. allocation for any device that uses the DVB major number.
  11. This means that you can have more than 4 of a single type
  12. of device (like demuxes and frontends) per adapter, but udev
  13. will be required to manage the device nodes.
  14. If you are unsure about this, say N here.
  15. menuconfig DVB_CAPTURE_DRIVERS
  16. bool "DVB/ATSC adapters"
  17. depends on DVB_CORE
  18. default y
  19. ---help---
  20. Say Y to select Digital TV adapters
  21. if DVB_CAPTURE_DRIVERS && DVB_CORE
  22. comment "Supported SAA7146 based PCI Adapters"
  23. depends on DVB_CORE && PCI && I2C
  24. source "drivers/media/dvb/ttpci/Kconfig"
  25. comment "Supported USB Adapters"
  26. depends on DVB_CORE && USB && I2C
  27. source "drivers/media/dvb/dvb-usb/Kconfig"
  28. source "drivers/media/dvb/ttusb-budget/Kconfig"
  29. source "drivers/media/dvb/ttusb-dec/Kconfig"
  30. source "drivers/media/dvb/siano/Kconfig"
  31. comment "Supported FlexCopII (B2C2) Adapters"
  32. depends on DVB_CORE && (PCI || USB) && I2C
  33. source "drivers/media/dvb/b2c2/Kconfig"
  34. comment "Supported BT878 Adapters"
  35. depends on DVB_CORE && PCI && I2C
  36. source "drivers/media/dvb/bt8xx/Kconfig"
  37. comment "Supported Pluto2 Adapters"
  38. depends on DVB_CORE && PCI && I2C
  39. source "drivers/media/dvb/pluto2/Kconfig"
  40. comment "Supported SDMC DM1105 Adapters"
  41. depends on DVB_CORE && PCI && I2C
  42. source "drivers/media/dvb/dm1105/Kconfig"
  43. comment "Supported DVB Frontends"
  44. depends on DVB_CORE
  45. source "drivers/media/dvb/frontends/Kconfig"
  46. endif # DVB_CAPTURE_DRIVERS