diff options
author | Mike Frysinger <vapier@gentoo.org> | 2010-10-20 07:17:55 -0400 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2010-11-28 21:58:30 +0100 |
commit | 5a442c0addc69d0c4b58e98e5aec1cf07576debb (patch) | |
tree | c7e6aea111f12f4d905494b489d4edde8e91aeeb /common/cmd_fdos.c | |
parent | 543f0a3819a9af130f3f80a660099fad8d2d4b8e (diff) | |
download | u-boot-imx-5a442c0addc69d0c4b58e98e5aec1cf07576debb.zip u-boot-imx-5a442c0addc69d0c4b58e98e5aec1cf07576debb.tar.gz u-boot-imx-5a442c0addc69d0c4b58e98e5aec1cf07576debb.tar.bz2 |
boot cmds: convert to getenv_yesno() with autostart
Use the new helper func to clean up duplicate logic handling of the
autostart env var.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'common/cmd_fdos.c')
-rw-r--r-- | common/cmd_fdos.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/cmd_fdos.c b/common/cmd_fdos.c index 2af4ca0..238abdd 100644 --- a/common/cmd_fdos.c +++ b/common/cmd_fdos.c @@ -99,7 +99,7 @@ int do_fdosboot(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) size, load_addr); /* Check if we should attempt an auto-start */ - if (((ep = getenv("autostart")) != NULL) && (strcmp(ep,"yes") == 0)) { + if (getenv_yesno("autostart")) { char *local_args[2]; local_args[0] = argv[0]; local_args[1] = NULL; |