Skip to content
Snippets Groups Projects
Commit 3e385772 authored by Stefan Roese's avatar Stefan Roese Committed by Gerald Van Baren
Browse files

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: default avatarStefan Roese <sr@denx.de>
parent 741a6d01
No related branches found
No related tags found
No related merge requests found
...@@ -145,7 +145,7 @@ int do_bootm_linux(int flag, int argc, char *argv[], bootm_headers_t *images) ...@@ -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 the user wants it (the logic is in the subroutines).
*/ */
if (of_size) { if (of_size) {
if (fdt_chosen(of_flat_tree, 0) < 0) { if (fdt_chosen(of_flat_tree, 1) < 0) {
puts ("ERROR: "); puts ("ERROR: ");
puts ("/chosen node create failed"); puts ("/chosen node create failed");
puts (" - must RESET the board to recover.\n"); puts (" - must RESET the board to recover.\n");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment