===================================
HOW TO use Binary FlashDSX in Linux

(This works fine under SimplyMEPIS 3.3.1, 
maybe also works for other distro's)
===================================

0) Copy binary file FlashDSX to a directory, ex. ~/dsx 



1) Go to
   
http://homepages.borland.com/efg2lab/Library/Kylix/deployment.htm



2) Download HelloWorld.tar.gz, and follow instructions (gunzip ....)

   "Kylix 3 CLX in Linux:  HelloWorld.tar.gz.  (5603 KB including .so files libborqt, libqt, and libqtintf)."



3) In ~/dsx directory, make a script file "FlashDSX.sh"


------
 
#!/bin/sh
 
export LD_LIBRARY_PATH=~/kylix/deploy
 
~/dsx/FlashDSX

------


4) Start up
  

Open a Konsole
  
$ cd ~/dsx
  
$ sh FlashDSX.sh 


(then choose for COM1 = /dev/ttyS0 , etc...)


==================================================




You can also run the programme without script by typing following commands
$ cd ~\dsx
$ export LD_LIBRARY_PATH=~/kylix/deploy

$ ./FlashDSX
==================================================



Perhaps use paramter low_latency for setserial to get process faster
(for ex. COM1)

Get info
$ setserial -g /dev/ttyS0
Set low_latency
$ setserial /dev/ttyS0 uart 16550A port 0x3f8 irq 4 low_latency

==================================================