I’ve just installed the latest Mandriva 2008.1 RC on this fine Asus barebone.
Everything went fine, except that the output of sensors showed too many ALARM messages for my taste… so, here’s how I’ve modified the pre-installed sensors.conf to set some min/max values closer to reality and to hide useless lines:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | # Winbond W83627EHF configuration originally contributed by Leon Moonen # This is for an Asus P5P800, voltages for A8V-E SE. chip "w83627ehf-*" "w83627dhg-*" label in0 "VCore" label in2 "AVCC" label in3 "3VCC" label in7 "VSB" label in8 "VBAT" # +12V is in1 and +5V is in6 as recommended by datasheet compute in1 @*(1+(56/10)), @/(1+(56/10)) compute in6 @*(1+(22/10)), @/(1+(22/10)) set in1_min 12.0*0.9 set in1_max 12.0*1.1 set in6_min 5.0*0.95 set in6_max 5.0*1.05 set in4_min 1.6*0.9 set in4_max 1.6*1.05 set in9_min 1.6*0.9 set in9_max 1.6*1.05 # Set the 3.3V set in2_min 3.3*0.95 set in2_max 3.3*1.05 set in3_min 3.3*0.95 set in3_max 3.3*1.05 set in7_min 3.3*0.95 set in7_max 3.3*1.05 set in8_min 3.3*0.95 set in8_max 3.3*1.05 # Fans label fan2 "CPU Fan" ignore fan1 ignore fan3 ignore fan4 ignore fan5 # Temperatures label temp1 "Sys Temp" label temp2 "CPU Temp" label temp3 "AUX Temp" set temp1_over 45 set temp1_hyst 40 |
Corrections are welcome.