1# SPDX-License-Identifier: GPL-2.0-only 2# 3# DVB device configuration 4# 5 6config DVB_MAX_ADAPTERS 7 int "maximum number of DVB/ATSC adapters" 8 depends on DVB_CORE 9 default 16 10 range 1 255 11 help 12 Maximum number of DVB/ATSC adapters. Increasing this number 13 increases the memory consumption of the DVB subsystem even 14 if a much lower number of DVB/ATSC adapters is present. 15 Only values in the range 4-32 are tested. 16 17 If you are unsure about this, use the default value 16 18 19config DVB_DYNAMIC_MINORS 20 bool "Dynamic DVB minor allocation" 21 depends on DVB_CORE 22 help 23 If you say Y here, the DVB subsystem will use dynamic minor 24 allocation for any device that uses the DVB major number. 25 This means that you can have more than 4 of a single type 26 of device (like demuxes and frontends) per adapter, but udev 27 will be required to manage the device nodes. 28 29 If you are unsure about this, say N here. 30 31config DVB_DEMUX_SECTION_LOSS_LOG 32 bool "Enable DVB demux section packet loss log" 33 depends on DVB_CORE 34 help 35 Enable extra log messages meant to detect packet loss 36 inside the Kernel. 37 38 Should not be enabled on normal cases, as logs can 39 be very verbose. 40 41 If you are unsure about this, say N here. 42 43config DVB_ULE_DEBUG 44 bool "Enable DVB net ULE packet debug messages" 45 depends on DVB_CORE 46 help 47 Enable extra log messages meant to detect problems while 48 handling DVB network ULE packet loss inside the Kernel. 49 50 Should not be enabled on normal cases, as logs can 51 be very verbose. 52 53 If you are unsure about this, say N here. 54