summaryrefslogtreecommitdiff
path: root/include/exports.h
Commit message (Collapse)AuthorAgeLines
* include/: Remove obsolete references to CONFIG_COMMANDSJon Loeliger2007-07-09-1/+1
| | | | | | Mostly removed from comments here. Signed-off-by: Jon Loeliger <jdl@freescale.com>
* include/ non-config: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).Jon Loeliger2007-07-04-1/+1
| | | | | | | | | | | | | | This is a compatibility step that allows both the older form and the new form to co-exist for a while until the older can be removed entirely. All transformations are of the form: Before: #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) After: #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT) Signed-off-by: Jon Loeliger <jdl@freescale.com>
* Added simple_strtoul(), getenv() and setenv() to the exported functions.Detlev Zundel2006-09-01-1/+4
| | | | Also bumped up ABI version to reflect this change.
* Add a common get_ram_size() function and modify the thewdenk2004-01-06-3/+3
| | | | board-specific files to invoke that common implementation.
* Move TRAB burn-in tests to TRAB board directorywdenk2003-09-12-0/+2
|
* * Patch by Martin Krause, 11 Sep 2003:wdenk2003-09-11-1/+5
| | | | | | add burn-in tests for TRAB board * Enable instruction cache on MPC5200 board
* * Allow crc32 to be used at address 0x000wdenk2003-07-26-0/+4
| | | | | | | | * Provide consistent interface to standalone applications to access the 'global_data' structure Provide a doc/README.standalone more useful to users/developers. * Make IceCube MGT5100 FEC driver work
* * Implement new mechanism to export U-Boot's functions to standalonewdenk2003-07-24-0/+36
applications: instead of using (PPC-specific) system calls we now use a jump table; please see doc/README.standalone for details * Patch by Dave Westwood, 24 Jul 2003: added support for Unity OS (a proprietary OS)