mirror of
https://github.com/elektricM/amd-bc250-docs.git
synced 2026-07-16 03:00:55 +00:00
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:
@@ -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
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
@@ -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
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user