Guest User

cpufreqd.conf.output

a guest
Apr 26th, 2014
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.51 KB | None | 0 0
  1. # this is a comment
  2. # see CPUFREQD.CONF(5) manpage for a complete reference
  3. #
  4. # Note: ondemand/conservative Profiles are disabled because
  5. # they are not available on many platforms.
  6.  
  7. [General]
  8. pidfile=/var/run/cpufreqd.pid
  9. poll_interval=2
  10. verbosity=4
  11. #enable_remote=1
  12. #remote_group=root
  13. [/General]
  14.  
  15. #[acpi]
  16. #acpid_socket=/var/run/acpid.socket
  17. #[/acpi]
  18.  
  19. #[nforce2_atxp1]
  20. #vcore_path=/some/path
  21. #vcore_default=1500
  22. #[/nforce2_atxp1]
  23.  
  24. #[sensors_plugin]
  25. #sensors_conf=/some/file
  26. #[/sensors_plugin]
  27.  
  28. #[Profile]
  29. #name=On Demand High
  30. #minfreq=40%
  31. #maxfreq=100%
  32. #policy=ondemand
  33. #[/Profile]
  34. #
  35. #[Profile]
  36. #name=On Demand Low
  37. #minfreq=20%
  38. #maxfreq=80%
  39. #policy=ondemand
  40. #[/Profile]
  41.  
  42. [Profile]
  43. name=Performance High
  44. minfreq=100%
  45. maxfreq=100%
  46. policy=performance
  47. #exec_post=echo 8 > /proc/acpi/sony/brightness
  48. [/Profile]
  49.  
  50. [Profile]
  51. name=Performance Low
  52. minfreq=80%
  53. maxfreq=80%
  54. policy=performance
  55. [/Profile]
  56.  
  57. [Profile]
  58. name=Powersave High
  59. minfreq=60%
  60. maxfreq=60%
  61. policy=powersave
  62. [/Profile]
  63.  
  64. [Profile]
  65. name=Powersave Low
  66. minfreq=40%
  67. maxfreq=40%
  68. policy=powersave
  69. [/Profile]
  70.  
  71. #[Profile]
  72. #name=Conservative High
  73. #minfreq=33%
  74. #maxfreq=100%
  75. #policy=conservative
  76. #[/Profile]
  77. #
  78. #[Profile]
  79. #name=Conservative Low
  80. #minfreq=0%
  81. #maxfreq=66%
  82. #policy=conservative
  83. #[/Profile]
  84.  
  85. ##
  86. # Basic states
  87. ##
  88. # when AC use performance mode
  89. [Rule]
  90. name=AC Rule
  91. ac=on # (on/off)
  92. profile=Performance High
  93. [/Rule]
  94.  
  95. # stay in performance mode for the first minutes
  96. [Rule]
  97. name=AC Off - High Power
  98. ac=off # (on/off)
  99. battery_interval=70-100
  100. #exec_post=echo 5 > /proc/acpi/sony/brightness
  101. profile=Performance Low
  102. [/Rule]
  103.  
  104. # conservative mode when not AC
  105. [Rule]
  106. name=AC Off - Medium Battery
  107. ac=off # (on/off)
  108. battery_interval=30-70
  109. #exec_post=echo 3 > /proc/acpi/sony/brightness
  110. profile=Powersave High
  111. [/Rule]
  112.  
  113. # conservative mode when not AC
  114. [Rule]
  115. name=AC Off - Low Battery
  116. ac=off # (on/off)
  117. battery_interval=0-30
  118. #exec_post=echo 3 > /proc/acpi/sony/brightness
  119. profile=Powersave Low
  120. [/Rule]
  121.  
  122. ##
  123. # Special Rules
  124. ##
  125. # CPU Too hot!
  126. [Rule]
  127. name=CPU Too Hot
  128. acpi_temperature=55-100
  129. cpu_interval=50-100
  130. profile=Performance Low
  131. [/Rule]
  132.  
  133. # use performance mode if I'm watching a movie
  134. # I don't care for batteries!
  135. # But don't heat too much.
  136. [Rule]
  137. name=Movie Watcher
  138. programs=xine,mplayer,gmplayer
  139. battery_interval=0-100
  140. acpi_temperature=0-60
  141. cpu_interval=0-100
  142. profile=Performance High
  143. [/Rule]
Add Comment
Please, Sign In to add comment