Changeset e621fd9 in rtems-tools
- Timestamp:
- 02/11/21 16:23:16 (2 years ago)
- Branches:
- 5
- Children:
- 0a5d205
- Parents:
- 4f5485e
- git-author:
- Andre Nahrwold <andre.nahrwold@…> (02/11/21 16:23:16)
- git-committer:
- Chris Johns <chrisj@…> (02/16/21 05:22:36)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
misc/tools/mkimage.py
r4f5485e re621fd9 122 122 inputcrc = 0; 123 123 124 if options.type in 'script': 125 126 filler_struct = Struct("!II") 127 inputblock = filler_struct.pack(inputsize, 0) 128 129 inputcrc = binascii.crc32(inputblock, inputcrc) 130 outputfile.write(inputblock) 131 132 inputsize = inputsize + 8 133 124 134 while True: 125 135 inputblock = inputfile.read(4096)
Note: See TracChangeset
for help on using the changeset viewer.