Kconfig 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. # Kconfig - Actions resource manager
  2. #
  3. # Copyright (c) 2016 Actions Corporation
  4. #
  5. # SPDX-License-Identifier: Apache-2.0
  6. #
  7. menuconfig RES_MANAGER
  8. bool "res_manager library"
  9. depends on UI_MEMORY_MANAGER
  10. help
  11. This option enables the res_manager library.
  12. if RES_MANAGER
  13. config RES_MANAGER_DISABLE_AUTO_SEARCH_FILES
  14. bool "disable auto search for updated res files"
  15. default y
  16. help
  17. This option disables auto search for updated res files on incremental update
  18. config RES_PRELOAD_MAX_BLOCK_SIZE
  19. int "max block size for res manager preload compact block"
  20. default 102400
  21. help
  22. This option set max block size for res manager preload compact block
  23. config RES_MANAGER_ENABLE_MEM_LEAK_DEBUG
  24. bool "enable resource unload check in res manager"
  25. default n
  26. help
  27. This option enables pic resource unload check in res manager
  28. config RES_MANAGER_USE_STYLE_MMAP
  29. bool "enable mmap style file in res manager"
  30. default n
  31. help
  32. This option enables mmap style file in res manager
  33. config RES_MANAGER_SKIP_PRELOAD
  34. bool "makes preload do layout directly in res manager"
  35. default n
  36. help
  37. This option makes preload do layout directly in res manager
  38. config RES_MANAGER_ALIGN
  39. int "set picture resource mem align, default is 4"
  40. default 4
  41. help
  42. This option set picture resource mem align
  43. config RES_MANAGER_IMG_DECODER
  44. bool "enable lvgl use res manager as an image decoder"
  45. default n
  46. help
  47. This option enables lvgl to use res manager as an image decoder
  48. config RES_MANAGER_RES_DISK
  49. string "drive name for picture resource"
  50. default "/SD:A"
  51. help
  52. This option set driver name for picture resource
  53. config RES_MANAGER_LVGL_RES_CACHE_MAX
  54. int "set max res num in lvgl res cache"
  55. default 0
  56. help
  57. This option set max res num in lvgl res cache
  58. config RES_MANAGER_BLOCK_SIZE
  59. int "set block size for big pictures"
  60. default 0
  61. help
  62. This option set block size for big pictures
  63. config RES_MANAGER_BLOCK_NUM
  64. int "set block size for big pictures"
  65. default 0
  66. help
  67. This option set block size for big pictures
  68. endif # RES_MANAGER