daringer / asus-fan

Kernel module to get/set (both) fan speed(s) on ASUS Zenbooks
GNU General Public License v2.0
95 stars 26 forks source link

Symlink script not working on archlinux #67

Closed savisitor15 closed 5 years ago

savisitor15 commented 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
daringer commented 5 years ago

ooops, nice finding thank you, fixed...