source: kernel-config/general/sysutils/power-profiles-daemon.toml@ 41eefd36

12.1 ken/TL2024 lazarus trunk xry111/llvm18
Last change on this file since 41eefd36 was 41eefd36, checked in by Xi Ruoyao <xry111@…>, 4 months ago

kernel-config: power-profiles-daemon: Adjust

Remove "AMD P-State Self Test" as it's only for debugging. Adjust some
forced settings as X86_INTEL_PSTATE may be unset if SCHED_MC unset.
Mention X86 Platform Specific Device Drivers may provide platform
profile support (actually more powerful than CPUFreq).

Also fix a glitch in kernel-config.py so it won't mark "'" as hotkey
anymore.

  • Property mode set to 100644
File size: 786 bytes
Line 
1# Selected by CPU_SUP_INTEL, which is always y when !CONFIG_EXPERT
2CPU_FREQ = { value = '*', forced = true }
3# If one of X86_INTEL_PSTATE and X86_AMD_PSTATE is selected, it's forced
4# to '*'. Let's not consider VIA, Transmeta, etc. for now...
5CPU_FREQ_GOV_PERFORMANCE = { value = '*', forced = '*' }
6CPU_FREQ_GOV_POWERSAVE = '*M'
7# Not really forced: if you unset SCHED_MC you may unset this as well
8X86_INTEL_PSTATE = { value = ' *', comment = 'Select if CPU is Intel' }
9X86_AMD_PSTATE = { value = ' *', comment = 'Select if CPU is AMD' }
10
11[X86_PLATFORM_DEVICES]
12value = ' *'
13comment = [
14 'Some drivers under this submenu provide "platform profile" support',
15 'and power-profiles-daemon can take advantage from platform profiles;',
16 'select a driver if suitable for your platform',
17]
Note: See TracBrowser for help on using the repository browser.