Kconfig 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. # Kconfig - Actions system manager
  2. #
  3. # Copyright (c) 2016 Actions Corporation
  4. #
  5. # SPDX-License-Identifier: Apache-2.0
  6. #
  7. if ACTIONS_FRAMEWORK
  8. menuconfig SYSTEM
  9. bool
  10. prompt "System"
  11. default n
  12. help
  13. This option enables actions system manager.
  14. config ESD_MANAGER
  15. bool
  16. prompt "Esd Manager Support"
  17. depends on SYSTEM
  18. default n
  19. help
  20. This option enables actions esd manager.
  21. config SYS_STANDBY
  22. bool
  23. prompt "System Standby Support"
  24. depends on SYSTEM
  25. select SYS_WAKELOCK
  26. select PM_CPU_IDLE_LOW_POWER
  27. default n
  28. help
  29. This option enables actions system standby.
  30. config AUTO_STANDBY_TIME_SEC
  31. int "delay how long (second) to enter standby"
  32. depends on SYS_STANDBY
  33. default 0
  34. help
  35. This option set the time to enter standby when system idle
  36. config AUTO_POWEDOWN_TIME_SEC
  37. int "delay how long (second) to auto power down"
  38. depends on SYS_STANDBY
  39. default 1800
  40. help
  41. This option set the time to enter auto power down
  42. config AUTO_POWEDOWN_UNCONNECTED
  43. bool
  44. prompt "Poweroff When No Device Connected Support"
  45. depends on SYSTEM
  46. help
  47. allow poweroff when no device connected
  48. config AUTO_POWEDOWN_NOPLAYING
  49. bool
  50. prompt "Poweroff When Not Playing Support"
  51. depends on SYSTEM
  52. help
  53. allow poweroff when not playing
  54. config MONITOR_PERIOD
  55. int "delay how long (second) to monitor running"
  56. depends on SYSTEM
  57. default 100
  58. help
  59. This option set the time to monitor running
  60. config SYSTEM_SHELL
  61. bool "System Shell Support"
  62. depends on SYSTEM
  63. default n
  64. select CONSOLE_SHELL
  65. help
  66. This shell provides to modify system config.
  67. if SYSTEM
  68. rsource "fs_manager/Kconfig"
  69. rsource "hotplug/Kconfig"
  70. rsource "input/Kconfig"
  71. rsource "power/Kconfig"
  72. rsource "tts/Kconfig"
  73. rsource "alarm_manager/Kconfig"
  74. rsource "act_log/Kconfig"
  75. endif
  76. endif #ACTIONS_FRAMEWORK