Skip to content

Commit 0fd5447

Browse files
author
Cruz Monrreal
authored
Merge pull request #6885 from theotherjimmy/fix-startaddr-conflict
BL mode: Prevent jump address conflicts
2 parents 9fd04c4 + 4ad8ce0 commit 0fd5447

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

tools/build_api.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -438,6 +438,7 @@ def merge_region_list(region_list, destination, notify, padding=b'\xFF'):
438438
if region.filename:
439439
notify.info(" Filling region %s with %s" % (region.name, region.filename))
440440
part = intelhex_offset(region.filename, offset=region.start)
441+
part.start_addr = None
441442
part_size = (part.maxaddr() - part.minaddr()) + 1
442443
if part_size > region.size:
443444
raise ToolException("Contents of region %s does not fit"

0 commit comments

Comments
 (0)