diff options
Diffstat (limited to 'lib_arm')
-rw-r--r-- | lib_arm/board.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib_arm/board.c b/lib_arm/board.c index 6f8c7fe..a74fee1 100644 --- a/lib_arm/board.c +++ b/lib_arm/board.c @@ -341,7 +341,10 @@ void start_armboot (void) #ifdef BOARD_LATE_INIT board_late_init (); #endif - +#if (CONFIG_COMMANDS & CFG_CMD_NET) && defined(CONFIG_NET_MULTI) + puts ("Net: "); + eth_initialize(gd->bd); +#endif /* main_loop() can return to retry autoboot, if so just run it again. */ for (;;) { main_loop (); |