diff options
Diffstat (limited to 'lib_microblaze')
-rw-r--r-- | lib_microblaze/bootm.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lib_microblaze/bootm.c b/lib_microblaze/bootm.c index 30a03ef..68edcdb 100644 --- a/lib_microblaze/bootm.c +++ b/lib_microblaze/bootm.c @@ -67,15 +67,11 @@ void do_bootm_linux (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[], (ulong) theKernel); #endif - if (!images->autostart) - return ; - theKernel (commandline); /* does not return */ return; error: - if (images->autostart) - do_reset (cmdtp, flag, argc, argv); + do_reset (cmdtp, flag, argc, argv); return; } |