Ignore:
Timestamp:
02/27/2024 08:06:52 PM (7 months ago)
Author:
Xi Ruoyao <xry111@…>
Branches:
12.1, 12.2, gimp3, ken/TL2024, lazarus, trunk, xry111/for-12.3, xry111/llvm18, xry111/spidermonkey128
Children:
d1a69e6
Parents:
730f162b
git-author:
Xi Ruoyao <xry111@…> (02/27/2024 08:04:11 PM)
git-committer:
Xi Ruoyao <xry111@…> (02/27/2024 08:06:52 PM)
Message:

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.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel-config/kernel-config.py

    r730f162b r41eefd36  
    267267    b = title
    268268    if not is_choice:
    269         b = b.lstrip('YyMmNnHh.' + "".join(map(str, range(10))))
     269        while not (b[0].isalpha() and b[0] not in 'YyMmNnHh'):
     270            b = b[1:]
    270271    a = title[:len(title) - len(b)]
    271272    b0 = "<emphasis role='blue'>" + escape(b[0]) + "</emphasis>"
Note: See TracChangeset for help on using the changeset viewer.