* Move logical ethernet "driver" into io/eth where the interface can be shared
  between multiple implementations, e.g. BSD TCP/IP and Red Boot's TCP/IP
  stacks.
* RedBoot - the Red Hat Bootstrap ROM monitor has been added, initially
  supporting ARM-EDB7xxx, ARM-EBSA285, and ARM-Assabet boards. Provides
  serial and ethernet GDB debugging support, flash image management and flash
  booting, BOOTP/DHCP and TFTP boot support and a CLI interface.
* Added PCMCIA and Compact Flash support, including drivers for the ARM-Assabet
  board.
* Added generic FLASH memory support
* Added flash memory support for ARM-EBSA285 and ARM-EDB7xxx boards
* Added Compact Flash Ethernet driver
* Hitachi SH7707a variant support added.
* Support added for both software and hardware flow control with an initial
  version of the latter available only for the ARM PID board at present.
* Loopback serial device driver added
* POSIX termios support added for EL/IX level 1 compatibility
* Improved dynamic memory management support in the memory allocator
  package. Existing dynamic memory support in the kernel (fixed and variable
  block allocators) and in libc (malloc, etc.) has been moved to this
  package, located at services/memalloc/common. It is now possible to support
  memory pools occupying all of remaining memory (as determined by the MLT).
  New memory allocators can be "plugged in", and an example of Doug Lea's
  malloc (dlmalloc) has been included.
* Plug-in filesystem support added, with a POSIX 1003.1 compatible API, found
  in the io/fileio package, and integrated with the C library.
* An initial example filesystem implementation is provided in fs/ram. This
  is a RAM filesystem that attempts to both be a useful tool in its own
  right and an example of how to write a filesystem that plugs into the
  fileio infrastructure.
  The source of the filesystem is in fs/ram/VERSION/src/ramfs.c and is
  intended to be largely self documenting. The General Description at
  the beginning of the file gives an overview of the structure of the
  system, and comments within the code explain specific points. This
  code should be read in conjunction with the description of the fileio
  infrastructure.
* Support added for POSIX 1003.1 threads, mutexes, semaphores, message queues,
  condition variables, clocks, timers and real-time signals in the POSIX
  compatibility package (part of the EL/IX compatibility initiative) found at
  compat/posix.
* Kernel enhanced with Asynchronous Service Routines (ASRs) which are routines
  called back at the point a thread is scheduled.
* Added (configurably) priority ceilings for kernel mutexes
* Support sorted thread queues in kernel, rather than LIFO, controlled by the
  CYGIMP_KERNEL_SCHED_SORTED_QUEUES option.
* The Kernel C API functions cyg_semaphore_wait() and cyg_cond_wait() now
  return booleans to indicate if the wait failed.
* Added enhanced form of kernel message queue which is more flexible at runtime
  than mboxes - available in <cyg/kernel/mqueue.hxx>
* Add a generic interface in <cyg/hal/hal_tables.h> to allow tables of
  data, particularly initialization data, to be included in an application
  image. This replaces the previous __DEVTAB__ and __NETDEVTAB__ references
  in linker scripts.
* Most standard top-level header files now controlled by the "isoinfra"
  package
* C library package split into separate packages on functional boundaries:
  i18n, setjmp, signals, startup, stdio, stdlib, time
* Most targets now implement a standard form of "virtual vectors" - a
  mechanism to allow enhanced co-operation between ROM monitors and running
  applications. This allows the application to leave to the ROM things that
  the ROM supports rather than duplicating, including debug channels that may
  be via serial or ethernet. To take advantage of this, new GDB stub
  images/CygMon images should be programmed onto boards, although old images
  will continue to work - they will just not be able to use the new facilities.
* DHCP support has been added to the TCP/IP support, in addition to the
  existing BOOTP support
* CDL now supports type bool and booldata for interfaces
* CDL now exports extra macros in header files, to indicate package version
  numbers
* A port of the University of California at Davis (UCD) SNMP stack has been
  added
* Hitachi SH7709A variant support added
* NEC V85x architecture support added
* NEC Cosmo CEB-V850/SA1 evaluation board platform HAL added
* Serial device drivers added for systems based on NEC V850 SA1 (70F3017)
  or SB1 (70F3033) processors
* Hitachi SH3 CqREEK (cq7708) platform HAL support added
  Contributed by Haruki Kashiwaya
* Watchdog reworked much like wallclock.
  Common code and API in io/watchdog, simpler (smaller) low-level drivers in
  devs/watchdog/<arch>.
* IO serial driver
  The common serial driver has been extended with a configurable option for
  a non-blocking read/write mode. It has also been given some new callbacks
  which allow low-level drivers to transfer data in blocks instead of as
  single characters.
* SH HAL
  Now provides ROMRAM startup type, copying code and data to RAM before
  executing, improving performance at cost of memory.
* IO serial drivers reworked by separating into distinct platform
  packages, making it simpler to implement new drivers.
* WallClock reworked, making it simpler to implement new drivers.
  New drivers
  o SH3 RTC module

-------- eCos 1.3.1 public net release:

* New architectures and variants
  o ARM Thumb
  o ARM9
  o Hitachi SH3
  o Cirrus Logic CL-PS7111, EP72xx
  o Intel StrongARM
  o Matsushita AM33
  o NEC MIPS VR4300

* New platforms
  o ARM AEB-1 rev C
  o ARM PID support extended: ARM9, Thumb and big-endian
  o Cirrus Logic EDB7xxx
  o Cogent CMA222 and CMA230 ARM boards. (CMA222 contributed by Mark Salter)
  o Hitachi EDK7708
  o Intel x86 PC (base port contributed by Patrick O'Grady)
  o Intel EBSA285
  o Matsushita STB
  o Motorola MBX evaluation board
  o NEC VRC4373

* New hosts
  o Windows 2000 host support (beta)
  o Red Hat Linux 6.x (should work on other distributions, but only
    Red Hat Linux 6.x has been used for testing).

* Configuration system revised
  o Tools based on GPL'd configuration library (only tested on
    Windows and Red Hat Linux 6.x)
  o Tools available for both Windows (graphical) and Linux (CLI).
  o Target side configuration much more flexible now, even though
    existing configuration data has not yet been changed to take full
    advantage of the new features.

* TCP/IP stack and drivers [distributed in separate package]
  o OpenBSD based, supporting UDP, TCP and ICMP.
  o Motorola MBX (quicc) driver.
  o Cirrus Logic EDB7xxx driver.

* PCI bus library
  o Simple API for configuring PCI resources.
  o Intel EBSA285 HAL implementation.
  o NEC VRC4373 HAL implementation.

* New watchdog drivers
  o ARM AEB-1
  o Hitachi EDK7708
  o Intel EBSA285

* Debugging
  o Stack monitoring
    The file <cyg/kernel/test/stackmon.h> defines some functions
    that can be used to profile stack usage.

* API changes
  o KAPI
    include/kapi.h (cyg_thread_delete): is now a boolean function to
    indicate success.  Failure is when the thread needs to run in
    order to become killed.

* HAL changes
  o i386/linux
    The eCos idle loop will not load the host system anymore (except
    in special configurations, see linux_misc.c).
  o MIPS
    Split into arch/variant/platform hierarchy.
  o MN10300
    Split into arch/variant/platform hierarchy.
  o PowerPC
    Split into arch/variant/platform hierarchy.
    Major revamp of exception handling - _not_ backwards compatible
    (see vectors.S for the reasoning behind the change).
  o SPARClite
    Where supported by the targetted platform, it is now possible to
    use Multiple Vector Trapping (MVT).

* CygMon
  o Integration of CygMon ROM monitor into eCos by porting it on top
    of the eCos HAL

--------- eCos 1.2.1 public net release:

* Architectures and variants
  o ARM7TDMI
  o Fujitsu SPARClite
  o Intel x86 [incomplete, unsupported]
  o Matsushita MN10300
  o Motorola PowerPC
  o Sharp LH77790 (ARM7DI core)
  o Toshiba TX39 (MIPS R3900 derivative)

* Platforms
  o ARM PID7T board
  o ARM AEB-1 board (rev B)
  o Cogent CMA287-23 (MPC823), CMA287-50 (MPC850), CMA286-60 (MPC860)
  o Fujitsu MB8683x boards
  o Linux/x86 Synthetic Target
  o Matsushita standard evaluation board
  o Matsushita standard evaluation board simulator
  o Motorola FADS board [unsupported] (contributed by Kevin Hester)
  o PSIM - PowerPC architectural simulator
  o Toshiba JMR3904 evaluation board
  o Toshiba JMR3904 evaluation board simulator
  o SIS - SPARClite simulator [unsupported]

* Hosts
  o Redhat Linux 4.2 and later
  o Solaris 2.5.1 and later
  o Windows NT 4.0SP3 and later
  o Windows 95/98 (Beta)
