Platform: Map priority levels when parsing manifest list
The current partition priority categories used for naming sections are
lowest, low, normal, high and highest. The following statements are
used in the linker file.
*(.part_load_priority_lowest)
*(.part_load_priority_low)
*(.part_load_priority_normal)
*(.part_load_priority_high)
But the operation using this naming method can not put sections into
flash by the statement order.
Map priority levels by using numbers as follows so that .part_load_priority_00,
.part_load_priority_01 etc. can be sorted as expected.
lowest: 00
low: 01
normal: 02
high: 03
higest: 04
Signed-off-by: Chendi Sun <chendi.sun@arm.com>
Change-Id: Ibc523fd5c813b0781fbea4a4eab974bfa43465c4
15 files changed