
- Changed makefiles slightly. All nonrecursive makefiles have to declare a 
  OBJECTS variable naming all possible (driver-) object files.
  NOTE: You NEED the binutil package 2.5.2 or later ! (as ld has to discard
  internal symbols.)

- Configuration scripts (Thanks to Todd Fries. ;-)

- Adding a new driver should be quite easy now. Simply update the Makefile
  and the .configure file in the same directory. All the rest is done 
  automatically (thus no way to forget something or introduce bugs).

- The driver has been separated further. (introduced generalized I/O functions
  that hopefully will allow for all possible cases.) Hope this will avoid
  developing several drivers for the same chip used on different cards.

- The include/ directory changed heavily. This shall allow for sharing code as
  good as possible. Files named .h are usual headerfiles, those named .inc are
  C code that will be included.

- created .stubs directories that carry prepared files to start with for new
  drivers. This may save some time adding a new driver and unify the code 
  written by others (So at least you find similar parts of each code at similar
  places).

- Created TESTED file, that might become a database for tested configurations.
  A real database prog that verifies choosen configurations and issues a 
  'warning not tested'/'please report'/'not useful' if not found in the database
  may come later (some day).

