diff options
author | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2025-07-22 19:05:58 +0200 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2025-07-22 19:12:25 +0200 |
commit | d40cdf18da29ae6fd8f3b9e13655eb2c317a0058 (patch) | |
tree | 039d104653a7326cc7069d2c7e0c96c723483806 | |
parent | d301f7e7e322f1a01a0dc90094a81765198ddfde (diff) |
[2] akashi: enable fan_control in thinkpad_acpi
Akashi system needs to have fan control enabled and customized.
By default, the firmware fails to adequately cool the computer which results in thermal throttling.
---
The goal is to have the laptop fan run at high speed at all times, regardless of CPU temperature.
---
[x] Enable fan control in thinkpad_acpi module.
[x] Set fan speed to level 5.
---
This commit adds an appropriate entry to the kernel command line to set the fan speed level.
---
Akashi system will now adequately cool itself in most circumstances.
-rw-r--r-- | deployment/systems/akashi.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/deployment/systems/akashi.scm b/deployment/systems/akashi.scm index b0976be..fba424b 100644 --- a/deployment/systems/akashi.scm +++ b/deployment/systems/akashi.scm @@ -69,6 +69,7 @@ (gnu:system:operating-system (kernel gnu:packages:linux:linux-libre) (kernel-arguments (cons* "thinkpad_acpi.fan_control=1" + "thinkpad_acpi.fan='level 5'" gnu:system:%default-kernel-arguments)) (bootloader (machines:thinkpad-x200:bootloader-configuration* keyboard-layout*)) (label (sovereign:systems:operating-system-label* host-name* |