diff options
Diffstat (limited to 'lib_arm/board.c')
-rw-r--r-- | lib_arm/board.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lib_arm/board.c b/lib_arm/board.c index 828c2f2..a725c24 100644 --- a/lib_arm/board.c +++ b/lib_arm/board.c @@ -190,6 +190,7 @@ void start_armboot (void) gd_t gd_data; bd_t bd_data; init_fnc_t **init_fnc_ptr; + char *s; #if defined(CONFIG_VFD) unsigned long addr; #endif @@ -274,6 +275,16 @@ void start_armboot (void) cs8900_get_enetaddr (gd->bd->bi_enetaddr); #endif + /* Initialize from environment */ + if ((s = getenv ("loadaddr")) != NULL) { + load_addr = simple_strtoul (s, NULL, 16); + } +#if (CONFIG_COMMANDS & CFG_CMD_NET) + if ((s = getenv ("bootfile")) != NULL) { + copy_filename (BootFile, s, sizeof (BootFile)); + } +#endif /* CFG_CMD_NET */ + #ifdef BOARD_POST_INIT board_post_init (); #endif |