fix: correct sensor modules across distro guides, clarify Bazzite kernel patch status

- arch.md, debian.md: correct sensor module from nct6687 to nct6683 with
  force=true (consistent with other guides)
- bazzite.md: clarify that standard Bazzite kernel already includes GPU
  frequency patch as of early 2026, custom images only needed for extra
  optimizations
This commit is contained in:
Martin
2026-03-18 22:55:23 +01:00
parent e049fc36a8
commit 2802070151
3 changed files with 14 additions and 7 deletions

View File

@@ -341,10 +341,11 @@ dmesg | grep nct6683
### Fan Control (Optional)
For fan control (nct6683 is read-only), use nct6687:
Load the nct6683 sensor module for temperature and fan monitoring:
```bash
echo 'nct6687' | sudo tee /etc/modules-load.d/nct6687.conf
echo 'nct6683' | sudo tee /etc/modules-load.d/nct6683.conf
echo 'options nct6683 force=true' | sudo tee /etc/modprobe.d/sensors.conf
sudo mkinitcpio -P
sudo reboot

View File

@@ -141,7 +141,12 @@ Some boards are unstable at lower voltages. The script defaults to 1000mV to pre
## Performance Setup (Advanced)
"Bazzite on Steroids" - Custom images with GPU frequency range patch for up to 50% performance boost.
!!!success "Bazzite Kernel Already Includes GPU Frequency Patch"
As of early 2026, the standard Bazzite kernel already includes the GPU frequency range patch. **Manual kernel patching is not needed on Bazzite.** The "Bazzite on Steroids" custom images below are only needed if you want additional pre-configured optimizations.
Alternatively, the **SMU governor** (`cyan-skillfish-governor-smu`) bypasses the need for kernel patches entirely on any distro.
"Bazzite on Steroids" - Custom images with additional pre-configured optimizations.
### Features

View File

@@ -259,11 +259,12 @@ cat /sys/class/drm/card0/device/pp_dpm_sclk
# Install lm-sensors
sudo apt install lm-sensors
# Load nct6687 module
echo 'nct6687' | sudo tee /etc/modules-load.d/nct6687.conf
# Load nct6683 sensor module (requires force=true)
echo 'nct6683' | sudo tee /etc/modules-load.d/nct6683.conf
echo 'options nct6683 force=true' | sudo tee /etc/modprobe.d/sensors.conf
# Load module now
sudo modprobe nct6687
sudo modprobe nct6683 force=true
# Verify
sensors
@@ -371,7 +372,7 @@ cat /sys/class/drm/card0/device/pp_dpm_sclk
sensors
# Expected:
# nct6687-isa-0a20
# nct6686-isa-0a20
# GPU Temp: XX°C
# Fan speeds
```