summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJonas Karlman <[email protected]>2026-01-31 23:38:13 +0000
committerTom Rini <[email protected]>2026-03-10 10:07:02 -0600
commitcde911493634e76d779d6dea6963e35c5d7e839b (patch)
treee79f8e7d1b6ce7b67747b972b9fde6abebe0456d /tools
parentf273b393f7fcdb03c839e72ca56596aa02af9aff (diff)
rockchip: mkimage: Re-sort the spl_infos list alphanumerically
The first RK35xx SoC was initially appended to the end of the otherwise alphanumerically sorted spl_infos list, possible because it was using a new header structure. Re-sort the spl_infos list to keep it alphanumerically ordered based on imagename. Signed-off-by: Jonas Karlman <[email protected]> Reviewed-by: Kever Yang <[email protected]>
Diffstat (limited to 'tools')
-rw-r--r--tools/rkcommon.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/rkcommon.c b/tools/rkcommon.c
index e7e78ef7e5b..dbc1c177843 100644
--- a/tools/rkcommon.c
+++ b/tools/rkcommon.c
@@ -148,12 +148,12 @@ static struct spl_info spl_infos[] = {
{ "rk3328", "RK32", 0x8000 - 0x800, false, RK_HEADER_V1 },
{ "rk3368", "RK33", 0x8000 - 0x1000, false, RK_HEADER_V1 },
{ "rk3399", "RK33", 0x30000 - 0x2000, false, RK_HEADER_V1 },
- { "rv1108", "RK11", 0x1800, false, RK_HEADER_V1 },
- { "rv1126", "110B", 0x10000 - 0x1000, false, RK_HEADER_V1 },
{ "rk3528", "RK35", 0x10000 - 0x1000, false, RK_HEADER_V2 },
{ "rk3568", "RK35", 0x10000 - 0x1000, false, RK_HEADER_V2 },
{ "rk3576", "RK35", 0x80000 - 0x1000, false, RK_HEADER_V2 },
{ "rk3588", "RK35", 0x100000 - 0x1000, false, RK_HEADER_V2 },
+ { "rv1108", "RK11", 0x1800, false, RK_HEADER_V1 },
+ { "rv1126", "110B", 0x10000 - 0x1000, false, RK_HEADER_V1 },
};
/**