Kconfig 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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 16
  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 16
  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 DVB_DEMUX_SECTION_LOSS_LOG
  27. bool "Enable DVB demux section packet loss log"
  28. depends on DVB_CORE
  29. default n
  30. help
  31. Enable extra log messages meant to detect packet loss
  32. inside the Kernel.
  33. Should not be enabled on normal cases, as logs can
  34. be very verbose.
  35. If you are unsure about this, say N here.
  36. config DVB_ULE_DEBUG
  37. bool "Enable DVB net ULE packet debug messages"
  38. depends on DVB_CORE
  39. default n
  40. help
  41. Enable extra log messages meant to detect problems while
  42. handling DVB network ULE packet loss inside the Kernel.
  43. Should not be enabled on normal cases, as logs can
  44. be very verbose.
  45. If you are unsure about this, say N here.