800-fix-bootm-assertion.patch 350 B

1234567891011
  1. --- a/common/cmd_bootm.c
  2. +++ b/common/cmd_bootm.c
  3. @@ -77,7 +77,7 @@ static int do_bootm_subcommand(cmd_tbl_t
  4. return CMD_RET_USAGE;
  5. }
  6. - if (state != BOOTM_STATE_START && images.state >= state) {
  7. + if (!(state & BOOTM_STATE_START) && images.state >= state) {
  8. printf("Trying to execute a command out of order\n");
  9. return CMD_RET_USAGE;
  10. }