Closed arabek closed 2 years ago
Currently the asus-wmi-sensors seems to be going to be deprecated in favour of the ec controller…
That's probably not the case, these two drivers support different board families.
If you, however, want to contribute to this driver, you can copy the implementation for ROG ZENITH II EXTREME, I guess, and tune it. You need to provide DMI board identification (grep -e '' -n /sys/class/dmi/id/board_{name,vendor}
) and the sensor set (which can be copied over from ZENITH II EXTREME).
@arabek I updated the readme to contain up to date information on adding support for new boards.
That's probably not the case, these two drivers support different board families.
It's actually being dropped in kernel-6.1 via this pull req: https://lore.kernel.org/lkml/20221003000230.1008396-1-linux@roeck-us.net/
I've not yet had the time to work on support for the board, but will very soon. Thanks for the update to the readme.
That's the old driver for ASUS EC, asus_wmi_ec_sensors, while you showed output from asus_wmi_sensors.
Oh, okay. Silly me. In that case...
Currently the asus-wmi-sensors seems to be going to be deprecated in favour of the ec controller, which means, in the newer kernels i will loose info about what the mobo is doing.
(with obvious errors around the ext tsensor and water block sensors, as i didn't bother to install them (nor do i have a watter cooling block, but the option is there), so the readings are wrong)
Is there a way to reliably add support for those sensors in the asus-ec-sensors module instead? I can hack my way around c code, so i'd do it myself, but need guidance.