OpenWrt – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 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 }