diff options
| author | Tom Rini <[email protected]> | 2021-10-28 07:57:54 -0400 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2021-10-28 07:57:54 -0400 |
| commit | aafc378a6caef453a40f2f9f3d6bef69e592c28d (patch) | |
| tree | d0f4d216618e2309099144c94f4ee0a397a25cee /board | |
| parent | e7fb789612e39653f9f20ad08ad40896c7f61742 (diff) | |
| parent | 7af368f4717a2c4b118f8cae597e268dc88a726c (diff) | |
Merge https://source.denx.de/u-boot/custodians/u-boot-marvell
- mvebu: Fix usage of BIN header arguments (Pali)
- mvebu: turris_omnia: Fix MTD partitions order for Linux (Pali)
- mvebu: nandpagesize support for kwbimage v1 (Pali)
Diffstat (limited to 'board')
| -rw-r--r-- | board/CZ.NIC/turris_omnia/turris_omnia.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/CZ.NIC/turris_omnia/turris_omnia.c b/board/CZ.NIC/turris_omnia/turris_omnia.c index 39051a803a2..36c596efc55 100644 --- a/board/CZ.NIC/turris_omnia/turris_omnia.c +++ b/board/CZ.NIC/turris_omnia/turris_omnia.c @@ -603,7 +603,7 @@ static bool fixup_mtd_partitions(void *blob, int offset, struct mtd_info *mtd) mtd_probe_devices(); - list_for_each_entry(slave, &mtd->partitions, node) { + list_for_each_entry_reverse(slave, &mtd->partitions, node) { char name[32]; int part; |
