add uboot-oxnas
[openwrt-github/.git] / package / boot / uboot-oxnas / patches / 800-fix-bootm-assertion.patch
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  
9 -       if (state != BOOTM_STATE_START && images.state >= state) {
10 +       if (!(state & BOOTM_STATE_START) && images.state >= state) {
11                 printf("Trying to execute a command out of order\n");
12                 return CMD_RET_USAGE;
13         }