aboutsummaryrefslogtreecommitdiff
path: root/src/target/image.c
diff options
context:
space:
mode:
authorBohdan Tymkiv <bhdt@cypress.com>2018-08-10 11:31:29 +0300
committerTomas Vanek <vanekt@fbl.cz>2018-11-18 08:21:25 +0000
commit5b350bf05c7f9e092ae030e0ace9e63114224ddb (patch)
tree1de37a3303bbe6d10d7f1f471916c9736e183dfa /src/target/image.c
parent3da1b2e657233c7c19ea1e8952508f2030e8585b (diff)
downloadriscv-openocd-5b350bf05c7f9e092ae030e0ace9e63114224ddb.zip
riscv-openocd-5b350bf05c7f9e092ae030e0ace9e63114224ddb.tar.gz
riscv-openocd-5b350bf05c7f9e092ae030e0ace9e63114224ddb.tar.bz2
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>
Diffstat (limited to 'src/target/image.c')
-rw-r--r--src/target/image.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/target/image.c b/src/target/image.c
index 0d98c57..9bd8f6b 100644
--- a/src/target/image.c
+++ b/src/target/image.c
@@ -643,8 +643,8 @@ static int image_mot_buffer_complete_inner(struct image *image,
section[image->num_sections].size += 1;
full_address++;
}
- } else if (record_type == 5) {
- /* S5 is the data count record, we ignore it */
+ } else if (record_type == 5 || record_type == 6) {
+ /* S5 and S6 are the data count records, we ignore them */
uint32_t dummy;
while (count-- > 0) {