diff options
author | Stefan Roese <sr@denx.de> | 2008-09-26 17:03:26 +0200 |
---|---|---|
committer | Gerald Van Baren <vanbaren@cideas.com> | 2008-10-01 22:01:52 -0400 |
commit | 3e38577208e4256956bc33bb8bcd0a6b6fab55c3 (patch) | |
tree | edded836b339955afe9e2b661d31437a5ec214e3 | |
parent | 741a6d010d09b5bafca8e4cdfb6b2f8a2c07994d (diff) |
fdt: Overwrite /chosen node in bootm if it already exists in the dtb
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>
-rw-r--r-- | lib_ppc/bootm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib_ppc/bootm.c b/lib_ppc/bootm.c index 38266e1da21..5af25dd222f 100644 --- a/lib_ppc/bootm.c +++ b/lib_ppc/bootm.c @@ -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"); |