target/image: Add support for S6 record in Motorola SREC files
S6 record is equivalent to S5 but it uses 24-bit value (instead of 16-bit) to store total number of data records. It can be found in big srec files with total number of data records bigger than 65535 Handle S6 record in the same way as S5 (simply ignore it) Change-Id: I3e15a4e8f784fd38803c00accf422f803e8469cd Signed-off-by: Bohdan Tymkiv <bhdt@cypress.com> Reviewed-on: http://openocd.zylin.com/4645 Tested-by: jenkins Reviewed-by: Tomas Vanek <vanekt@fbl.cz>log_output
parent
3da1b2e657
commit
5b350bf05c
|
@ -643,8 +643,8 @@ static int image_mot_buffer_complete_inner(struct image *image,
|
||||||
section[image->num_sections].size += 1;
|
section[image->num_sections].size += 1;
|
||||||
full_address++;
|
full_address++;
|
||||||
}
|
}
|
||||||
} else if (record_type == 5) {
|
} else if (record_type == 5 || record_type == 6) {
|
||||||
/* S5 is the data count record, we ignore it */
|
/* S5 and S6 are the data count records, we ignore them */
|
||||||
uint32_t dummy;
|
uint32_t dummy;
|
||||||
|
|
||||||
while (count-- > 0) {
|
while (count-- > 0) {
|
||||||
|
|
Loading…
Reference in New Issue