menuconfig.Kconfig 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. mainmenu "Config menu"
  2. #--------------------------------
  3. # General setup
  4. #--------------------------------
  5. menu "General setup"
  6. config SPI_SFS
  7. bool
  8. #prompt "Support small fs like functions"
  9. default y
  10. config SFS_BACKUP_EN
  11. bool
  12. prompt "Support NVM backup"
  13. default y
  14. config NOT_USEBB
  15. bool
  16. prompt "Use minibox instead of busybox"
  17. default y
  18. select EXE_STATIC
  19. config SUPPORT_PATTERNGEN
  20. bool
  21. prompt "Use Pattern Generator for stream input, not throu Tuner"
  22. default n
  23. config SUPPORT_MFD
  24. bool
  25. prompt "Use MFD Video Deocder"
  26. default n
  27. config EXE_STATIC
  28. bool
  29. prompt "Build static executable files"
  30. default n
  31. help
  32. BUILD Static Executable files, for reduce code size
  33. config MEMCTRL_ORDER
  34. bool
  35. prompt "Enable memory control order patch"
  36. default y
  37. config TESTAUTOREBOOT
  38. bool
  39. prompt "System auto-reboot testing"
  40. default n
  41. config AUTOREBOOT_STANDBYTIME
  42. int
  43. depends on TESTAUTOREBOOT
  44. prompt "Delay time in standby (sec)"
  45. default 2
  46. config AUTOREBOOT_HAS_SIGNAL
  47. bool
  48. depends on TESTAUTOREBOOT
  49. prompt "Has Signal"
  50. default n
  51. config AUTOREBOOT_NO_SIGNAL
  52. bool
  53. depends on TESTAUTOREBOOT
  54. prompt "No Signal"
  55. default y
  56. config AUTOREBOOT_TIME
  57. int
  58. depends on TESTAUTOREBOOT
  59. prompt "Delay time to Shutdown (sec)"
  60. default 10
  61. config WAIT_CMD
  62. bool
  63. #prompt "Wait CMD"
  64. default y
  65. config DVD_COMBO
  66. bool
  67. #prompt "DVD Combo"
  68. default y
  69. config ANDROID
  70. bool
  71. #prompt "Build with Android system"
  72. default n
  73. config ENABLE_AV_YPP_USE_SAME_SOURCE
  74. bool
  75. prompt "Enable AV/YPP same source"
  76. default n
  77. menu "BLT Option Select"
  78. config BLT_SUPPORT_PART_SCALING
  79. bool "BLT Support Part-Scaling"
  80. default y
  81. config BLT_ENABLE_SUBTITLE_OVERLAP
  82. bool "BLT enable subtitle overlap"
  83. default y
  84. config BLT_ENABLE_SUBTITLE_ZOOM_WITH_VIDEO
  85. bool "BLT enable subtitle zoom with video"
  86. default n
  87. config BLT_ADD_OSD_COMPRESS_SIZE
  88. depends on BLT_SUPPORT_PART_SCALING
  89. hex "Add OSD compress size(byte)"
  90. default 0x0
  91. config BLT_SW_SHADOW_FILTER
  92. bool "Support SW font shadow filter"
  93. default n
  94. config BLT_USE_JPEG_MEMORY_FOR_COMPRESS_BUFFER
  95. depends on DDR2_64MB
  96. bool "Use JPEG reserved memory for compress buffer"
  97. default n
  98. config BLT_USE_VIP_MEMORY_FOR_BLOCK_BUFFER
  99. depends on DDR2_64MB
  100. bool "Use VIP reserved memory for block buffer"
  101. default n
  102. endmenu # "BLT Option Select"
  103. config SUPPORT_HOTKEY_SOURCE_LOCK
  104. bool
  105. prompt "Support hotkey Source Lock"
  106. default n
  107. config SUPPORT_NOSIGNAL_POP_ICON
  108. bool
  109. prompt "Support no signal icon"
  110. default n
  111. config SUPPORT_NOSIGNAL_AUTO_CHANGE_SOURCE
  112. bool
  113. prompt "Support no signal auto change source"
  114. default y
  115. endmenu # General setup
  116. source "aps/customer/Kconfig.ic"
  117. source "aps/customer/Kconfig.input"
  118. source "aps/customer/Kconfig.build"
  119. source "aps/customer/Kconfig.kernel"
  120. source "aps/customer/Kconfig.product"