/*********************************************************************
*   PROMISE FastTrak TX4000/376/378/S150 TX Series Linux Driver README
*
*   PROMISE Linux support team <support@promise.com.tw>   2003/07/03
*********************************************************************/
	
How to make a Driver Module (UP/SMP) for FastTrak

1.) Please make sure you have linux kernel source code at ("/usr/src/linux"),
    and gcc version is 3.x by issuing Linux command :
    # gcc -v

2.) Set Kernel Compiling Environment on Linux System
    # cd /usr/src/linux/
    # make config(or menuconfig/xconfig)
	To set kernel config items as you wish as below,
	Processor type and features/Processor family
	Processor type and features/High Memory Support
	Processor type and features/Symmetric multi-processing support
    # make dep clean

3.) Goto directory where PROMISE driver codes is located and edit Makefile.

4.) Choose right parameters in Makefile, default parameter is INDEP586.
     ex:	INDEP586 for most common case
		DEP586	 for most common case including module version
		SuSE_TB  for SuSE linux and Turbolinux,
		MDK      for Mandrake linux
 
    Or modify it for suitable your system.

5.) Issue Linux command to make FastTrak(UP/SMP) driver: ft3xx.o
    UP driver:  #make clean up
    SMP driver: #make clean smp

6.) Be sure to load scsi_mod.o before "insmod ft3xx.o".

7.) You can copy this module to /lib/modules/2.4.x/kernel/drivers/scsi/
    as current kernel's modules location.

8.) Issue "cat /proc/scsi/ft3xx/x" (x is a number) to get the RAID Array
    status.

