# # lm_sensors for Asus Tusi-630TX # lm_sensors for Asus A7N266-VM # =============================== # # # 20-Jun-02 amo Date-of-Birth # 18-Oct-02 amo Added A7N266-VM # # # http://www.lm-sensors.nu # # Mailing List # linux-i2c@pelican.tk.uni-linz.ac.at # # More Docs # --------- # http://www.Linux-1U.net/LCD/i2c_lm_sensors.uHowTO.txt # # # # install i2c # ----------- # cd /usr/local/src # wget .... # tar zxvfp i2c-2.6.5.tar.gz cd i2c-2.6.5 # make make install # # # install lm_sensors # ------------------ # cd /usr/local/src # wget .... # tar zxvfp lm_sensors-2.6.5.tar.gz # cd lm_sensors-2.6.5 # make make install # # # Check that it was installed # ls -la /lib/modules/`uname -r`/misc/lm* ls -la /lib/modules/`uname -r`/misc # # lm_sensors-*/prog/mkdev/mkdev.sh ls -la /dev/i2c* # # vi /etc/ld.so.conf # add this line /usr/local/lib # ldconfig # # # vi /etc/rc.d/rc.local # # 20-Jun-02 amo Added lm_sensors stuff for Tusi # # I2C adapter drivers modprobe i2c-isa # # I2C chip drivers modprobe sis5595 modprobe it87 # # vi /etc/modules.conf # # 20-Jun-02 amo Added lm_sensors stuff for Tusi # path[i2c]=/lib/modules/`uname -r`/misc path[misc]=/lib/modules/`uname -r`/misc # # I2C module options alias char-major-89 i2c-dev # depmod -a # # # /sbin/depmod -a depmod: *** Unresolved symbols in /lib/modules/2.4.18/misc/i2c-philips-par.o rm -f /lib/modules/2.4.18/misc/i2c-philips-par.o /sbin/depmod -a # # i2cdump # # lspci -n # # modprobe i2c-proc # sensors -s # # /etc/rc.d/init.d/lm_sensors stop # no modules listed # /etc/rc.d/init.d/lm_sensors start # w83781d 21376 0 (unused) # i2c-proc 8096 0 [w83781d] # i2c-amd756 4484 0 (unused) # i2c-core 21512 0 [w83781d i2c-proc i2c-amd756] # /etc/rc.d/init.d/lm_sensors status # # # # Watch the values lm_sensors can read # ------------------------------------- # # /proc/sys/dev/sensors/chips # /proc/bus/i2c # # Tusi cat /proc/sys/dev/sensors/it87-isa-0290/fan* cat /proc/sys/dev/sensors/it87-isa-0290/temp* # # A7N266-VM cat /proc/sys/dev/sensors/as99127f-i2c-0-2d/fan* cat /proc/sys/dev/sensors/as99127f-i2c-0-2d/temp* # # # end of file