]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
bootm: relocate names of sub-command table for archs with CONFIG_NEEDS_MANUAL_RELOC
authorDaniel Schwierzeck <daniel.schwierzeck@gmail.com>
Mon, 7 Jan 2013 06:54:52 +0000 (06:54 +0000)
committerTom Rini <trini@ti.com>
Thu, 10 Jan 2013 21:35:12 +0000 (14:35 -0700)
To make bootm sub-command feature working on archs with CONFIG_NEEDS_MANUAL_RELOC,
the name pointers in the sub-command table need to be relocated.

Signed-off-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
common/cmd_bootm.c

index f7595c0311955b58acffa6efd2b19a209576ec48..1b8a8c15610f68954643f967081d61ca8eee0e74 100644 (file)
@@ -592,12 +592,18 @@ int do_bootm(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
 #ifdef CONFIG_NEEDS_MANUAL_RELOC
        static int relocated = 0;
 
-       /* relocate boot function table */
        if (!relocated) {
                int i;
+
+               /* relocate boot function table */
                for (i = 0; i < ARRAY_SIZE(boot_os); i++)
                        if (boot_os[i] != NULL)
                                boot_os[i] += gd->reloc_off;
+
+               /* relocate names of sub-command table */
+               for (i = 0; i < ARRAY_SIZE(cmd_bootm_sub); i++)
+                       cmd_bootm_sub[i].name += gd->reloc_off;
+
                relocated = 1;
        }
 #endif