diff options
author | Rafal Jaworowski <raj@semihalf.com> | 2009-01-23 13:27:16 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-02-18 00:39:41 +0100 |
commit | 7fb6c4f9b06c5539043c8bfc6565710b8090841d (patch) | |
tree | f9be70847a132903f6b2b4bc29cb7ef387359c3b /lib_arm | |
parent | b84d7d8f1e1066f810866304a16a3583f88e7c98 (diff) | |
download | u-boot-7fb6c4f9b06c5539043c8bfc6565710b8090841d.zip u-boot-7fb6c4f9b06c5539043c8bfc6565710b8090841d.tar.gz u-boot-7fb6c4f9b06c5539043c8bfc6565710b8090841d.tar.bz2 |
API: Provide syscall entry point for the ARM architecture.
Signed-off-by: Rafal Czubak <rcz@semihalf.com>
Acked-by: Rafal Jaworowski <raj@semihalf.com>
Diffstat (limited to 'lib_arm')
-rw-r--r-- | lib_arm/board.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib_arm/board.c b/lib_arm/board.c index 964f5cc..fe68df0 100644 --- a/lib_arm/board.c +++ b/lib_arm/board.c @@ -416,6 +416,11 @@ void start_armboot (void) jumptable_init (); +#if defined(CONFIG_API) + /* Initialize API */ + api_init (); +#endif + console_init_r (); /* fully init console as a device */ #if defined(CONFIG_MISC_INIT_R) |