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