]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
common: cmd_elf: Add support to disable start of application
authorSiva Durga Prasad Paladugu <siva.durga.paladugu@xilinx.com>
Mon, 9 Mar 2015 11:46:47 +0000 (12:46 +0100)
committerLothar Waßmann <LW@KARO-electronics.de>
Tue, 1 Sep 2015 12:28:32 +0000 (14:28 +0200)
Added support to disable the start of application by using
a environment variable autostart

Signed-off-by: Siva Durga Prasad Paladugu <sivadur@xilinx.com>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
common/cmd_elf.c

index 58b61c26403b9fe79fe041c7c6cf2b6123309759..c745371506ce3e5dda78be5279334dc8d54bd97b 100644 (file)
@@ -95,6 +95,7 @@ int do_bootelf(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
        unsigned long addr;             /* Address of the ELF image     */
        unsigned long rc;               /* Return value from user code  */
        char *sload, *saddr;
+       const char *ep = getenv("autostart");
 
        /* -------------------------------------------------- */
        int rcode = 0;
@@ -123,6 +124,9 @@ int do_bootelf(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
        else
                addr = load_elf_image_shdr(addr);
 
+       if (ep && !strcmp(ep, "no"))
+               return rcode;
+
        printf("## Starting application at 0x%08lx ...\n", addr);
 
        /*