From: Erik M. <er...@us...> - 2001-08-06 23:38:10
|
Update of /cvsroot/blob/blob In directory usw-pr-cvs1:/tmp/cvs-serv22483 Modified Files: ChangeLog Makefile.am RELEASE-NOTES configure.in Log Message: This should be the final commit, this will become blob-2.0.3 tomorrow. Index: ChangeLog =================================================================== RCS file: /cvsroot/blob/blob/ChangeLog,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- ChangeLog 2001/08/06 22:44:51 1.3 +++ ChangeLog 2001/08/06 23:38:07 1.4 @@ -13,6 +13,8 @@ - New "reboot" command Erik Mouw - Download and flash blob without JTAG dongle Erik Mouw - Memory tester Erik Mouw +- New "reblob" command Erik Mouw +- Kernel parameter passing Erik Mouw & Russ Dill blob-1.0.8-pre2: - Assabet fixes Justin Seger Index: Makefile.am =================================================================== RCS file: /cvsroot/blob/blob/Makefile.am,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -u -r1.1.1.1 -r1.2 --- Makefile.am 2001/06/27 19:47:41 1.1.1.1 +++ Makefile.am 2001/08/06 23:38:07 1.2 @@ -18,6 +18,7 @@ EXTRA_DIST = \ README \ + RELEASE-NOTES \ acconfig.h Index: RELEASE-NOTES =================================================================== RCS file: /cvsroot/blob/blob/RELEASE-NOTES,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- RELEASE-NOTES 2001/08/06 23:03:42 1.1 +++ RELEASE-NOTES 2001/08/06 23:38:07 1.2 @@ -0,0 +1,42 @@ +$Id$ + +Release notes for blob-2.0.3 +============================ + +This is blob-2.0.3, the successor to blob-1.0.8-pre2. There have been +a couple of other versions between 1.0.8-pre2 and 2.0.3, but those +were never "officially" released from the blob homepage: + +- 2.0.0: never released snapshot that implemented run-from-ram but was + never tested. +- 2.0.1: released by Wookey. basically a cleaned version of 2.0.0. +- 2.0.2: also released by Wookey. fixed a couple of bugs in 2.0.1. + +To avoid confusion, we decided to name this release blob-2.0.3. + + +What's new? +----------- + +- Support for NESA, SHANNON (aka TuxScreen), and CreditLART platforms +- Updates for PLEB +- Ability to write the flash (not on all platforms, read on) +- Lots of cleanups +- Automatic memory detection +- Kernel parameter passing +- Basic resume from suspend support (not yet tested, though) + + +Platform specific notes +----------------------- + +Because we didn't test on any SA1110 platform, the support for Assabet +and CreditLART are broken. + +- Assabet: Broken. +- Brutus: Considered broken. +- CreditLART: Broken. Only initial support is in to test the hardware. +- LART: Fully supported. +- NESA: Fully supported. +- PLEB: Everything except writing to flash should work +- Shannon: Fully supported. Index: configure.in =================================================================== RCS file: /cvsroot/blob/blob/configure.in,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- configure.in 2001/08/06 22:44:51 1.2 +++ configure.in 2001/08/06 23:38:07 1.3 @@ -17,9 +17,9 @@ dnl Init automake PACKAGE=blob -BLOB_MAJOR_VERSION=1 +BLOB_MAJOR_VERSION=2 BLOB_MINOR_VERSION=0 -BLOB_MICRO_VERSION=9-hack +BLOB_MICRO_VERSION=3 BLOB_VERSION=$BLOB_MAJOR_VERSION.$BLOB_MINOR_VERSION.$BLOB_MICRO_VERSION VERSION=$BLOB_VERSION |