glfs/kernel-config/general/sysutils/power-profiles-daemon.toml
Xi Ruoyao 41eefd36f1
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.
2024-02-28 04:06:52 +08:00

18 lines
786 B
TOML

# Selected by CPU_SUP_INTEL, which is always y when !CONFIG_EXPERT
CPU_FREQ = { value = '*', forced = true }
# If one of X86_INTEL_PSTATE and X86_AMD_PSTATE is selected, it's forced
# to '*'. Let's not consider VIA, Transmeta, etc. for now...
CPU_FREQ_GOV_PERFORMANCE = { value = '*', forced = '*' }
CPU_FREQ_GOV_POWERSAVE = '*M'
# Not really forced: if you unset SCHED_MC you may unset this as well
X86_INTEL_PSTATE = { value = ' *', comment = 'Select if CPU is Intel' }
X86_AMD_PSTATE = { value = ' *', comment = 'Select if CPU is AMD' }
[X86_PLATFORM_DEVICES]
value = ' *'
comment = [
'Some drivers under this submenu provide "platform profile" support',
'and power-profiles-daemon can take advantage from platform profiles;',
'select a driver if suitable for your platform',
]