Kconfig 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # DVB device configuration
  4. #
  5. config DVB_MAX_ADAPTERS
  6. int "maximum number of DVB/ATSC adapters"
  7. depends on DVB_CORE
  8. default 16
  9. range 1 255
  10. help
  11. Maximum number of DVB/ATSC adapters. Increasing this number
  12. increases the memory consumption of the DVB subsystem even
  13. if a much lower number of DVB/ATSC adapters is present.
  14. Only values in the range 4-32 are tested.
  15. If you are unsure about this, use the default value 16
  16. config DVB_DYNAMIC_MINORS
  17. bool "Dynamic DVB minor allocation"
  18. depends on DVB_CORE
  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. help
  30. Enable extra log messages meant to detect packet loss
  31. inside the Kernel.
  32. Should not be enabled on normal cases, as logs can
  33. be very verbose.
  34. If you are unsure about this, say N here.
  35. config DVB_ULE_DEBUG
  36. bool "Enable DVB net ULE packet debug messages"
  37. depends on DVB_CORE
  38. help
  39. Enable extra log messages meant to detect problems while
  40. handling DVB network ULE packet loss inside the Kernel.
  41. Should not be enabled on normal cases, as logs can
  42. be very verbose.
  43. If you are unsure about this, say N here.