123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- mainmenu "Config menu"
- #--------------------------------
- # General setup
- #--------------------------------
- menu "General setup"
-
- config SPI_SFS
- bool
- #prompt "Support small fs like functions"
- default y
- config SFS_BACKUP_EN
- bool
- prompt "Support NVM backup"
- default y
- config NOT_USEBB
- bool
- prompt "Use minibox instead of busybox"
- default y
- select EXE_STATIC
- config SUPPORT_PATTERNGEN
- bool
- prompt "Use Pattern Generator for stream input, not throu Tuner"
- default n
- config SUPPORT_MFD
- bool
- prompt "Use MFD Video Deocder"
- default n
- config EXE_STATIC
- bool
- prompt "Build static executable files"
- default n
- help
- BUILD Static Executable files, for reduce code size
- config MEMCTRL_ORDER
- bool
- prompt "Enable memory control order patch"
- default y
- config TESTAUTOREBOOT
- bool
- prompt "System auto-reboot testing"
- default n
-
- config AUTOREBOOT_STANDBYTIME
- int
- depends on TESTAUTOREBOOT
- prompt "Delay time in standby (sec)"
- default 2
-
- config AUTOREBOOT_HAS_SIGNAL
- bool
- depends on TESTAUTOREBOOT
- prompt "Has Signal"
- default n
-
- config AUTOREBOOT_NO_SIGNAL
- bool
- depends on TESTAUTOREBOOT
- prompt "No Signal"
- default y
-
- config AUTOREBOOT_TIME
- int
- depends on TESTAUTOREBOOT
- prompt "Delay time to Shutdown (sec)"
- default 10
- config WAIT_CMD
- bool
- #prompt "Wait CMD"
- default y
-
- config DVD_COMBO
- bool
- #prompt "DVD Combo"
- default y
-
- config ANDROID
- bool
- #prompt "Build with Android system"
- default n
-
- config ENABLE_AV_YPP_USE_SAME_SOURCE
- bool
- prompt "Enable AV/YPP same source"
- default n
-
- menu "BLT Option Select"
- config BLT_SUPPORT_PART_SCALING
- bool "BLT Support Part-Scaling"
- default y
- config BLT_ENABLE_SUBTITLE_OVERLAP
- bool "BLT enable subtitle overlap"
- default y
- config BLT_ENABLE_SUBTITLE_ZOOM_WITH_VIDEO
- bool "BLT enable subtitle zoom with video"
- default n
- config BLT_ADD_OSD_COMPRESS_SIZE
- depends on BLT_SUPPORT_PART_SCALING
- hex "Add OSD compress size(byte)"
- default 0x0
- config BLT_SW_SHADOW_FILTER
- bool "Support SW font shadow filter"
- default n
- config BLT_USE_JPEG_MEMORY_FOR_COMPRESS_BUFFER
- depends on DDR2_64MB
- bool "Use JPEG reserved memory for compress buffer"
- default n
- config BLT_USE_VIP_MEMORY_FOR_BLOCK_BUFFER
- depends on DDR2_64MB
- bool "Use VIP reserved memory for block buffer"
- default n
- endmenu # "BLT Option Select"
-
- config SUPPORT_HOTKEY_SOURCE_LOCK
- bool
- prompt "Support hotkey Source Lock"
- default n
- config SUPPORT_NOSIGNAL_POP_ICON
- bool
- prompt "Support no signal icon"
- default n
- config SUPPORT_NOSIGNAL_AUTO_CHANGE_SOURCE
- bool
- prompt "Support no signal auto change source"
- default y
-
- endmenu # General setup
- source "aps/customer/Kconfig.ic"
- source "aps/customer/Kconfig.input"
- source "aps/customer/Kconfig.build"
- source "aps/customer/Kconfig.kernel"
- source "aps/customer/Kconfig.product"
|