mirror of
https://github.com/Stichting-MINIX-Research-Foundation/u-boot.git
synced 2025-08-19 03:36:19 -04:00
Merge branch 'master' of git://git.denx.de/u-boot-fdt
This commit is contained in:
commit
cd40a66c19
@ -114,10 +114,21 @@ int do_fdt (cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return CMD_RET_SUCCESS;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!working_fdt) {
|
||||||
|
puts(
|
||||||
|
"No FDT memory address configured. Please configure\n"
|
||||||
|
"the FDT address via \"fdt addr <address>\" command.\n"
|
||||||
|
"Aborting!\n");
|
||||||
|
return CMD_RET_FAILURE;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Move the working_fdt
|
* Move the working_fdt
|
||||||
*/
|
*/
|
||||||
} else if (strncmp(argv[1], "mo", 2) == 0) {
|
if (strncmp(argv[1], "mo", 2) == 0) {
|
||||||
struct fdt_header *newaddr;
|
struct fdt_header *newaddr;
|
||||||
int len;
|
int len;
|
||||||
int err;
|
int err;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user