diff options
Diffstat (limited to 'common/cmd_bootm.c')
| -rw-r--r-- | common/cmd_bootm.c | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c index b07b0f48b..16d08f352 100644 --- a/common/cmd_bootm.c +++ b/common/cmd_bootm.c @@ -799,8 +799,9 @@ int do_bootm(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])  	return do_bootm_states(cmdtp, flag, argc, argv, BOOTM_STATE_START |  		BOOTM_STATE_FINDOS | BOOTM_STATE_FINDOTHER | -		BOOTM_STATE_LOADOS | BOOTM_STATE_OS_PREP | -		BOOTM_STATE_OS_FAKE_GO | BOOTM_STATE_OS_GO, &images, 1); +		BOOTM_STATE_LOADOS | BOOTM_STATE_OS_CMDLINE | +		BOOTM_STATE_OS_PREP | BOOTM_STATE_OS_FAKE_GO | +		BOOTM_STATE_OS_GO, &images, 1);  }  int bootm_maybe_autostart(cmd_tbl_t *cmdtp, const char *cmd) |