Closed savisitor15 closed 5 years ago
While creating the symlinks the fan_cpu_speed link isn't made. This is due to the check not being dynamic like the gfx check. in file: asus-fan-create-symlinks.sh
# fan interface [ -r /pwm1 ] && \ ln -s ${hwmon_dir}/pwm1 ${d}/fan_cpu_speed
should be:
# fan interface [ -r ${hwmon_dir}/pwm1 ] && \ ln -s ${hwmon_dir}/pwm1 ${d}/fan_cpu_speed
ooops, nice finding thank you, fixed...
While creating the symlinks the fan_cpu_speed link isn't made. This is due to the check not being dynamic like the gfx check. in file: asus-fan-create-symlinks.sh
should be: