Kconfig 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. #
  2. # DVB device configuration
  3. #
  4. config DVB_MAX_ADAPTERS
  5. int "maximum number of DVB/ATSC adapters"
  6. depends on DVB_CORE
  7. default 8
  8. range 1 255
  9. help
  10. Maximum number of DVB/ATSC adapters. Increasing this number
  11. increases the memory consumption of the DVB subsystem even
  12. if a much lower number of DVB/ATSC adapters is present.
  13. Only values in the range 4-32 are tested.
  14. If you are unsure about this, use the default value 8
  15. config DVB_DYNAMIC_MINORS
  16. bool "Dynamic DVB minor allocation"
  17. depends on DVB_CORE
  18. default n
  19. help
  20. If you say Y here, the DVB subsystem will use dynamic minor
  21. allocation for any device that uses the DVB major number.
  22. This means that you can have more than 4 of a single type
  23. of device (like demuxes and frontends) per adapter, but udev
  24. will be required to manage the device nodes.
  25. If you are unsure about this, say N here.
  26. menuconfig DVB_CAPTURE_DRIVERS
  27. bool "DVB/ATSC adapters"
  28. depends on DVB_CORE
  29. default y
  30. ---help---
  31. Say Y to select Digital TV adapters
  32. if DVB_CAPTURE_DRIVERS && DVB_CORE
  33. comment "Supported SAA7146 based PCI Adapters"
  34. depends on DVB_CORE && PCI && I2C
  35. source "drivers/media/dvb/ttpci/Kconfig"
  36. comment "Supported USB Adapters"
  37. depends on DVB_CORE && USB && I2C
  38. source "drivers/media/dvb/dvb-usb/Kconfig"
  39. source "drivers/media/dvb/ttusb-budget/Kconfig"
  40. source "drivers/media/dvb/ttusb-dec/Kconfig"
  41. source "drivers/media/dvb/siano/Kconfig"
  42. comment "Supported FlexCopII (B2C2) Adapters"
  43. depends on DVB_CORE && (PCI || USB) && I2C
  44. source "drivers/media/dvb/b2c2/Kconfig"
  45. comment "Supported BT878 Adapters"
  46. depends on DVB_CORE && PCI && I2C
  47. source "drivers/media/dvb/bt8xx/Kconfig"
  48. comment "Supported Pluto2 Adapters"
  49. depends on DVB_CORE && PCI && I2C
  50. source "drivers/media/dvb/pluto2/Kconfig"
  51. comment "Supported SDMC DM1105 Adapters"
  52. depends on DVB_CORE && PCI && I2C
  53. source "drivers/media/dvb/dm1105/Kconfig"
  54. comment "Supported FireWire (IEEE 1394) Adapters"
  55. depends on DVB_CORE && FIREWIRE
  56. source "drivers/media/dvb/firewire/Kconfig"
  57. comment "Supported Earthsoft PT1 Adapters"
  58. depends on DVB_CORE && PCI && I2C
  59. source "drivers/media/dvb/pt1/Kconfig"
  60. comment "Supported Mantis Adapters"
  61. depends on DVB_CORE && PCI && I2C
  62. source "drivers/media/dvb/mantis/Kconfig"
  63. comment "Supported nGene Adapters"
  64. depends on DVB_CORE && PCI && I2C
  65. source "drivers/media/dvb/ngene/Kconfig"
  66. comment "Supported DVB Frontends"
  67. depends on DVB_CORE
  68. source "drivers/media/dvb/frontends/Kconfig"
  69. endif # DVB_CAPTURE_DRIVERS