Kconfig 882 B

1234567891011121314151617181920212223242526272829
  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.