aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/generic/files
diff options
context:
space:
mode:
authorDaniel Golle <daniel@makrotopia.org>2022-04-20 15:19:59 +0100
committerDaniel Golle <daniel@makrotopia.org>2022-04-20 15:23:02 +0100
commit690f7152673bc033e6fe5f0104be6c2b8aa16529 (patch)
tree07656b343dfa0da419c84760b8897b60296ba5d3 /target/linux/generic/files
parent079828fa54a81b9672c55f7f1d02bd2879a4944a (diff)
downloadupstream-690f7152673bc033e6fe5f0104be6c2b8aa16529.tar.gz
upstream-690f7152673bc033e6fe5f0104be6c2b8aa16529.tar.bz2
upstream-690f7152673bc033e6fe5f0104be6c2b8aa16529.zip
kernel: update FIT partition parser to new property name
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>
Diffstat (limited to 'target/linux/generic/files')
-rw-r--r--target/linux/generic/files/block/partitions/fit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/generic/files/block/partitions/fit.c b/target/linux/generic/files/block/partitions/fit.c
index 46ccef62ee..ce6a2b5411 100644
--- a/target/linux/generic/files/block/partitions/fit.c
+++ b/target/linux/generic/files/block/partitions/fit.c
@@ -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;