From patchwork Mon Feb 4 19:37:11 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [U-Boot] cmd_elf:Fix broken bootvx command From: Reinhard Arlt X-Patchwork-Id: 218064 Message-Id: <51100DE7.4040604@esd.eu> To: u-boot@lists.denx.de Date: Mon, 04 Feb 2013 20:37:11 +0100 commit d2d6bdaaef5f7eb39551e2288164b710021125fd Author: Reinhard Arlt Date: Mon Feb 4 19:45:16 2013 +0100 Fix broken bootvx command. Signed-off-by: Reinhard Arlt bootaddr = simple_strtoul(tmp, NULL, 16); diff --git a/common/cmd_elf.c b/common/cmd_elf.c index a667a46..ab9c7e3 100644 --- a/common/cmd_elf.c +++ b/common/cmd_elf.c @@ -198,7 +198,7 @@ int do_bootvx(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) * defaults to 0x4200 */ tmp = getenv("bootaddr"); - if (tmp) + if (!tmp) bootaddr = CONFIG_SYS_VXWORKS_BOOT_ADDR; else