]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
fdt: Overwrite /chosen node in bootm if it already exists in the dtb
authorStefan Roese <sr@denx.de>
Fri, 26 Sep 2008 15:03:26 +0000 (17:03 +0200)
committerGerald Van Baren <vanbaren@cideas.com>
Thu, 2 Oct 2008 02:01:52 +0000 (22:01 -0400)
Set force parameter in fdt_chosen() call in do_bootm_linux() call.
Without this, the chosen node is not overwritten if it already
exists.

Signed-off-by: Stefan Roese <sr@denx.de>
lib_ppc/bootm.c

index 38266e1da2176f94ce3bfae1c39866728f9d4a61..5af25dd222f1eb23d6a896f307d9472839fecb08 100644 (file)
@@ -145,7 +145,7 @@ int do_bootm_linux(int flag, int argc, char *argv[], bootm_headers_t *images)
         * if the user wants it (the logic is in the subroutines).
         */
        if (of_size) {
-               if (fdt_chosen(of_flat_tree, 0) < 0) {
+               if (fdt_chosen(of_flat_tree, 1) < 0) {
                        puts ("ERROR: ");
                        puts ("/chosen node create failed");
                        puts (" - must RESET the board to recover.\n");