800-fix-bootm-assertion.patch 463 B

12345678910111213
  1. diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c
  2. index 166b901..9af3fd3 100644
  3. --- a/common/cmd_bootm.c
  4. +++ b/common/cmd_bootm.c
  5. @@ -745,7 +745,7 @@ static int do_bootm_subcommand(cmd_tbl_t *cmdtp, int flag, int argc,
  6. return CMD_RET_USAGE;
  7. }
  8. - if (state != BOOTM_STATE_START && images.state >= state) {
  9. + if (!(state & BOOTM_STATE_START) && images.state >= state) {
  10. printf("Trying to execute a command out of order\n");
  11. return CMD_RET_USAGE;
  12. }