diff options
Diffstat (limited to 'common/cmd_bootm.c')
| -rw-r--r-- | common/cmd_bootm.c | 15 | 
1 files changed, 15 insertions, 0 deletions
| diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c index 1966da48c..272d879be 100644 --- a/common/cmd_bootm.c +++ b/common/cmd_bootm.c @@ -708,6 +708,21 @@ int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])  	return 1;  } +int bootm_maybe_autostart(cmd_tbl_t *cmdtp, const char *cmd) +{ +	const char *ep = getenv("autostart"); + +	if (ep && !strcmp(ep, "yes")) { +		char *local_args[2]; +		local_args[0] = (char *)cmd; +		local_args[1] = NULL; +		printf("Automatic boot of image at addr 0x%08lX ...\n", load_addr); +		return do_bootm(cmdtp, 0, 1, local_args); +	} + +	return 0; +} +  /**   * image_get_kernel - verify legacy format kernel image   * @img_addr: in RAM address of the legacy format image to be verified |