mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-25 06:00:43 +00:00
fdt: Fix 'system' command
'fdt systemsetup' wasn't working, due to the fact that the 'set' command was being parsed in do_fdt() by only testing for the leading 's' instead of "se", which kept the "sys" test further down from executing. Changed to test for "se" instead, now 'fdt systemsetup' works (to test the ft_system_setup proc w/o having to boot a kernel). Signed-off-by: Tom Warren <twarren@nvidia.com>
This commit is contained in:
parent
48e4288aed
commit
0688b758a2
1 changed files with 1 additions and 1 deletions
|
@ -286,7 +286,7 @@ static int do_fdt(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
|||
/*
|
||||
* Set the value of a property in the working_fdt.
|
||||
*/
|
||||
} else if (argv[1][0] == 's') {
|
||||
} else if (strncmp(argv[1], "se", 2) == 0) {
|
||||
char *pathp; /* path */
|
||||
char *prop; /* property */
|
||||
int nodeoffset; /* node offset from libfdt */
|
||||
|
|
Loading…
Reference in a new issue