* Implement new mechanism to export U-Boot's functions to standalone

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)
This commit is contained in:
wdenk
2003-07-24 23:38:38 +00:00
parent 2535d60277
commit 27b207fd0a
72 changed files with 950 additions and 1092 deletions

12
include/_exports.h Normal file
View File

@@ -0,0 +1,12 @@
EXPORT_FUNC(get_version)
EXPORT_FUNC(getc)
EXPORT_FUNC(tstc)
EXPORT_FUNC(putc)
EXPORT_FUNC(puts)
EXPORT_FUNC(printf)
EXPORT_FUNC(install_hdlr)
EXPORT_FUNC(free_hdlr)
EXPORT_FUNC(malloc)
EXPORT_FUNC(free)
EXPORT_FUNC(udelay)
EXPORT_FUNC(get_timer)