                                                        -*- indented-text -*-

Changes from 3.2 to 3.3:

 - Support for Centurbo2 (Falcon accelerator): With it, there are no
   bus errors generated on any address, so the test in get_mch_type()
   is useless; instead the _CT2 cookie is checked. Also, the TT-RAM of
   the board starts at phys. 0x04000000. On this machine, bootstrap
   may not run in TT-RAM or malloc its data from there, just as on the
   AB040, because TT-RAM is MMU-mapped under TOS.

 - Allow getcookie() with NULL argument; often we're interested in the
   presence of a cookie, not in it's value. This saves some otherwised
   unused variables.

 - Define __KERNEL__ when including <asm/setup.h> to get definitions
   for CL_SIZE and NUM_MEMINFO (needed with newer kernel headers).

 - Fix recognition of last 4 MB of memory on AB040.

Changes from 3.1 to 3.2:

 - Use transparent translation also for Medusa memory test, so that
   bootstrap needs not be MMU-disabled in the Medusa accessory.

 - An old fix to inflate.c (CHANGING_WINDOW) must have been lost
   somewhere... :-( Missing it could cause all sorts of malfunctions
   with compressed kernels. Now they should work again.

 - Updated ataboot.txt (bootinfo version chapter)

 - Updated some copyright dates

 - New target 'dist' in Makefile, to make my life easier :-)

Changes from 3.0 to 3.1:

 - New bootinfo field for special machine type (Medusa/Hades/
   Afterburner) tested and passed to the kernel. This makes for
   cleaner recognition of these machines and their specialities, and
   avoids retesting the same stuff in head.S of the kernel.

 - CPU/FPU type now tested by bootstrap itself, _CPU and _FPU cookies
   ignored. (For machines where these cookies are only set correctly
   by some program.)

 - Support for Afterburner040:

    - Special test for size(s) of FastRAM (get_ab40_bank_sizes).
	  Needed because TT-RAM is built up by the MMU from two banks
	  under TOS, and there's no way to query the sizes of these banks.

    - Print error messages and exit if bootstrap runs in FastRAM or
      allocates memory from FastRAM. This is necessary, because
      FastRAM addresses can become invalid when disabling the MMU.

 - Fixed bug in file_mod.c with swapped arguments to lseek()... why
   nobody ever noticed that??? (Effect: "Can't seek to/read kernel
   segment #x")

 - New options print a brief help text: -h, -?, or --help.

 - Removed some forgotten debugging code in the gunzip code. (A file
   'x' was written that containted the uncompressed image.)

