Skip to content

Commit

Permalink
kernel: update FIT partition parser to new property name
Browse files Browse the repository at this point in the history
The commit "uboot-mediatek: replace patch with accepted commit" changed
the name of the boot configuration property from 'bootconf' to
'u-boot,bootconf'. Reflect this change in the FIT partition parser.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
  • Loading branch information
dangowrt committed Apr 20, 2022
1 parent 079828f commit 690f715
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion target/linux/generic/files/block/partitions/fit.c
Expand Up @@ -148,7 +148,7 @@ int parse_fit_partitions(struct parsed_partitions *state, u64 fit_start_sector,

np = of_find_node_by_path("/chosen");
if (np)
bootconf = of_get_property(np, "bootconf", NULL);
bootconf = of_get_property(np, "u-boot,bootconf", NULL);
else
bootconf = NULL;

Expand Down

0 comments on commit 690f715

Please sign in to comment.