]> git.ipfire.org Git - people/ms/u-boot.git/blobdiff - common/bootm_os.c
env: Rename common functions related to setenv()
[people/ms/u-boot.git] / common / bootm_os.c
index d9e6e937f7ca627852d595ff23496b8d5af86fce..86a37cb925af9250e21353d68663e47a42162c9d 100644 (file)
@@ -23,7 +23,7 @@ static int do_bootm_standalone(int flag, int argc, char * const argv[],
        /* Don't start if "autostart" is set to "no" */
        s = getenv("autostart");
        if ((s != NULL) && !strcmp(s, "no")) {
-               setenv_hex("filesize", images->os.image_len);
+               env_set_hex("filesize", images->os.image_len);
                return 0;
        }
        appl = (int (*)(int, char * const []))images->ep;