mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-07-23 23:33:01 +00:00
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>
This commit is contained in:
parent
543f0a3819
commit
5a442c0add
7 changed files with 8 additions and 9 deletions
|
@ -496,7 +496,7 @@ int do_diskboot (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
|||
load_addr = 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];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue