diff options
Diffstat (limited to 'common/cmd_bootm.c')
| -rw-r--r-- | common/cmd_bootm.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c index 1b8a8c156..f0338babe 100644 --- a/common/cmd_bootm.c +++ b/common/cmd_bootm.c @@ -47,7 +47,6 @@  #endif  #if defined(CONFIG_OF_LIBFDT) -#include <fdt.h>  #include <libfdt.h>  #include <fdt_support.h>  #endif @@ -498,7 +497,8 @@ static int do_bootm_subcommand(cmd_tbl_t *cmdtp, int flag, int argc,  		return CMD_RET_USAGE;  	} -	if (images.state >= state) { +	if (images.state < BOOTM_STATE_START || +	    images.state >= state) {  		printf("Trying to execute a command out of order\n");  		return CMD_RET_USAGE;  	}  |