123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203 |
- menu "DVB Modules"
- config DTV_SUPPORT
- bool
- default y
- config DVB_SYSTEM_DVBT_SUPPORT
- bool "DVBT_SUPPORT"
- help
- Select DVBT_SUPPORT
- config DVB_SYSTEM_DVBT_NETWORK_NUM
- depends on DVB_SYSTEM_DVBT_SUPPORT
- int "Num of DVBT Network"
- default 1
- help
- Define the number of network of DVB-T
- config DVB_SYSTEM_DVBT_TP_NUM
- depends on DVB_SYSTEM_DVBT_SUPPORT
- int "Num of DVBT Transport Stream"
- default 120
- help
- Define the number of transport stream of DVB-T
- config DVB_SYSTEM_DVBT_SERVICE_NUM
- depends on DVB_SYSTEM_DVBT_SUPPORT
- int "Num of DVBT Service"
- default 1000
- help
- Define the number of service of DVB-T
- config DVB_SYSTEM_DVBC_SUPPORT
- bool "DVBC_SUPPORT"
- help
- Select DVBC_SUPPORT
- config DVB_SYSTEM_DVBC_NETWORK_NUM
- depends on DVB_SYSTEM_DVBC_SUPPORT
- int "Num of DVBC Network"
- default 0
- help
- Define the number of network of DVB-C
- config DVB_SYSTEM_DVBC_TP_NUM
- depends on DVB_SYSTEM_DVBC_SUPPORT
- int "Num of DVBC Transport Stream"
- default 120
- help
- Define the number of transport stream of DVB-C
- config DVB_SYSTEM_DVBC_SERVICE_NUM
- depends on DVB_SYSTEM_DVBC_SUPPORT
- int "Num of DVBC Service"
- default 1000
- help
- Define the number of service of DVB-C
- menu "On Air Upgrade Select"
- config SUPPORT_SSU_UPGRADE
- bool "SUPPORT_SSU_UPGRADE"
- help
- Define SSU Upgrade
- config SUPPORT_OAD_UPGRADE
- bool "SUPPORT_OAD_UPGRADE"
- help
- Define OAD Upgrade
- config SUPPORT_OTA_UPGRADE
- bool
- default y if (SUPPORT_SSU_UPGRADE || SUPPORT_OAD_UPGRADE)
- # config OTA_OUI_ID
- # depends on (SUPPORT_SSU_UPGRADE || SUPPORT_OAD_UPGRADE)
- # hex "OUI ID(3 bytes hex)"
- # default 000C3B
- # help
- # Select OUI ID(3 bytes)
- # config OTA_HW_MODEL
- # depends on (SUPPORT_SSU_UPGRADE || SUPPORT_OAD_UPGRADE)
- # hex "HW Model(2 bytes hex)"
- # default 0B00
- # help
- # Select HW Model(2 bytes)
- # config OTA_HW_VERSION
- # depends on (SUPPORT_SSU_UPGRADE || SUPPORT_OAD_UPGRADE)
- # hex "HW Version(2 bytes hex)"
- # default 0001
- # help
- # Select HW Version(2 bytes)
- # config OTA_SW_MODEL
- # depends on (SUPPORT_SSU_UPGRADE || SUPPORT_OAD_UPGRADE)
- # hex "SW Model(2 bytes hex)"
- # default 0B00
- # help
- # Select SW Model(2 bytes)
- # config OTA_SW_VERSION
- # depends on (SUPPORT_SSU_UPGRADE || SUPPORT_OAD_UPGRADE)
- # hex "SW Version(2 bytes hex)"
- # default 0001
- # help
- # Select SW Version(2 bytes)
- # config OTA_MARKING
- # hex "OTA Marking(2 bytes hex)"
- # default 0001
- # help
- # Select OTA Marking(2 bytes)
- # config MAIN_VERSION
- # hex "Main Version(2 bytes hex)"
- # default 0001
- # help
- # Select Main Version(2 bytes)
- # config SUB_VERSION
- # hex "Sub Version(2 bytes hex)"
- # default 0000
- # help
- # Select Sub Version(2 bytes)
- # config APP_VERSION
- # hex "APP Version(2 bytes hex)"
- # default 0001
- # help
- # Select APP Version(2 bytes)
- # config BOOTLOADER_VERSION
- # hex "Bootloader Version(2 bytes hex)"
- # default B00A
- # help
- # Select Bootloader Version(2 bytes)
- # config SWVERSION
- # string "SW Version Info(16 bytes string)"
- # default "DB06S0930A"
- # help
- # Select SW Version Info(16 bytes)
- endmenu # "On Air Upgrade Select"
- menu "CI Select"
- config SUPPORT_GENERAL_CI_SYS
- bool "CI support"
- default y
- config CI_PLUS_SUPPORT
- depends on SUPPORT_GENERAL_CI_SYS
- bool "CI plus Support"
- default n
- help
- Select CI plus Support
- config CIPLUS_PRODUCTKEY_BACKUP_TO_EEPROM_SUPPORT
- depends on CI_PLUS_SUPPORT
- bool "Product_key Backup Support (VGAEDID size >= 8KB)"
- default n
- help
- This option specifies CIPlus Product_key can Backup
- # choice
- # prompt "CI plus Modules Select"
- # default SUPPORT_CI_PLUS_WITH_OBJLOADER
- # depends on CI_PLUS_SUPPORT
- #
- # config SUPPORT_CI_PLUS_WITH_OBJLOADER
- # bool "Support CIplus and include objloader"
- # help
- # Select Support CI plus and include objloader
- #
- # config SUPPORT_CI_PLUS_WITHOUT_OBJLOADER
- # bool "Support CIplus but no objloader"
- # help
- # Select Support CI plus but no objloader
- # endchoice
- config CIPLUS_SUPPORT
- int
- depends on CI_PLUS_SUPPORT
- default 1# if SUPPORT_CI_PLUS_WITH_OBJLOADER
- # default 2 if SUPPORT_CI_PLUS_WITHOUT_OBJLOADER
- help
- This option specifies the CI plus option
- config SUPPORT_CICAM_NEW_MESSAGE
- depends on SUPPORT_GENERAL_CI_SYS
- bool "CICAM card new message Support"
- default n
- endmenu #"CI plus Select"
- config SUPPORT_PVR
- depends on DTV_SUPPORT
- bool "PVR Support"
- default y
- help
- Select PVR Support
- endmenu #"DTV Modules"
|