Sensors configuration file used by 'lm-sensors' for Tyan S3950

To support ServerWorks HT1000 SMBus controller, Linux Kernel 2.6.17 is needed
Otherwise, user need edit the driver code and recompile it according to follow instruction

1. If Linux Kernel equal or above 2.6.17, go to step 7.

2. If Linux Kernel equal or above 2.6.12, go to step 4.

3. Before Linux Kernel 2.6.12, driver i2c-piix4 cannot be used under 64bit. 
 	 Please edit file "Kconfig" under folder "driver/i2c/busses/":
	 Looking for "config I2C_PIIX4", remove "&& !64BIT" in the depend line.
4. Add HT1000 Device ID into driver code.
   Edit file "driver/i2c/busses/i2c-piix4.c", look for structure "piix4_ids",
   Add new member with
		"{ PCI_DEVICE(PCI_VENDOR_ID_SERVERWORKS, 0x0205),
  		.driver_data = 0 },"
		or "{
					.vendor	=	PCI_VENDOR_ID_SERVERWORKS,
					.device	= 0x0205,
					.subvendor	=	PCI_ANY_ID,
					.subdevice	=	PCI_ANY_ID,
					.driver_data	=	0,
				}", depend on Linux Kernel.
5. Enter Kernel Config(make menuconfig) and select Device Drivers->I2C support->
	I2C Hardware Bus Support->Intel PIIX4 as Module.
	
6. recompile the i2c-piix4 module(make modules and make modules_install)

7. To your /etc/modules.conf file, add the lines:
   alias char-major-89 i2c-dev

8.  To your /etc/rc.xxx files, add the lines:
   modprobe i2c-piix4

9. Compile the c file "3950sensors.c"
   "gcc -o 3950sensors 3950sensors.c"

10. Execute the file "3950sensors""