diff options
Diffstat (limited to 'common/cmd_bootm.c')
| -rw-r--r-- | common/cmd_bootm.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c index ae9c21bda..44f6b9f6e 100644 --- a/common/cmd_bootm.c +++ b/common/cmd_bootm.c @@ -132,8 +132,8 @@ int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])  	struct lmb lmb;  	memset ((void *)&images, 0, sizeof (images)); -	images.verify = getenv_verify(); -	images.autostart = getenv_autostart(); +	images.verify = getenv_yesno ("verify"); +	images.autostart = getenv_yesno ("autostart");  	images.lmb = &lmb;  	lmb_init(&lmb); |