Kconfig 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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. config JPN_DEMUX_MOD
  27. bool "Japan demux modificatiob for PCR"
  28. default n
  29. menuconfig DVB_CAPTURE_DRIVERS
  30. bool "DVB/ATSC adapters"
  31. depends on DVB_CORE
  32. default y
  33. ---help---
  34. Say Y to select Digital TV adapters
  35. if DVB_CAPTURE_DRIVERS && DVB_CORE
  36. comment "Supported SAA7146 based PCI Adapters"
  37. depends on DVB_CORE && PCI && I2C
  38. source "drivers/media/dvb/ttpci/Kconfig"
  39. comment "Supported USB Adapters"
  40. depends on DVB_CORE && USB && I2C
  41. source "drivers/media/dvb/dvb-usb/Kconfig"
  42. source "drivers/media/dvb/ttusb-budget/Kconfig"
  43. source "drivers/media/dvb/ttusb-dec/Kconfig"
  44. source "drivers/media/dvb/siano/Kconfig"
  45. comment "Supported FlexCopII (B2C2) Adapters"
  46. depends on DVB_CORE && (PCI || USB) && I2C
  47. source "drivers/media/dvb/b2c2/Kconfig"
  48. comment "Supported BT878 Adapters"
  49. depends on DVB_CORE && PCI && I2C
  50. source "drivers/media/dvb/bt8xx/Kconfig"
  51. comment "Supported Pluto2 Adapters"
  52. depends on DVB_CORE && PCI && I2C
  53. source "drivers/media/dvb/pluto2/Kconfig"
  54. comment "Supported SDMC DM1105 Adapters"
  55. depends on DVB_CORE && PCI && I2C
  56. source "drivers/media/dvb/dm1105/Kconfig"
  57. comment "Supported FireWire (IEEE 1394) Adapters"
  58. depends on DVB_CORE && FIREWIRE
  59. source "drivers/media/dvb/firewire/Kconfig"
  60. comment "Supported Earthsoft PT1 Adapters"
  61. depends on DVB_CORE && PCI && I2C
  62. source "drivers/media/dvb/pt1/Kconfig"
  63. comment "Supported Mantis Adapters"
  64. depends on DVB_CORE && PCI && I2C
  65. source "drivers/media/dvb/mantis/Kconfig"
  66. comment "Supported nGene Adapters"
  67. depends on DVB_CORE && PCI && I2C
  68. source "drivers/media/dvb/ngene/Kconfig"
  69. comment "Supported ddbridge ('Octopus') Adapters"
  70. depends on DVB_CORE && PCI && I2C
  71. source "drivers/media/dvb/ddbridge/Kconfig"
  72. comment "Supported DVB Frontends"
  73. depends on DVB_CORE
  74. source "drivers/media/dvb/frontends/Kconfig"
  75. endif # DVB_CAPTURE_DRIVERS