2014-11-26 09:00:17 +00:00
|
|
|
--- a/common/cmd_bootm.c
|
|
|
|
+++ b/common/cmd_bootm.c
|
2014-12-02 15:25:37 +00:00
|
|
|
@@ -77,7 +77,7 @@ static int do_bootm_subcommand(cmd_tbl_t
|
2014-11-26 09:00:17 +00:00
|
|
|
return CMD_RET_USAGE;
|
|
|
|
}
|
|
|
|
|
|
|
|
- if (state != BOOTM_STATE_START && images.state >= state) {
|
|
|
|
+ if (!(state & BOOTM_STATE_START) && images.state >= state) {
|
|
|
|
printf("Trying to execute a command out of order\n");
|
|
|
|
return CMD_RET_USAGE;
|
|
|
|
}
|