2017-07-18 05:38:54 +08:00
|
|
|
#! /usr/bin/env python3
|
2017-12-21 02:10:55 +08:00
|
|
|
#
|
|
|
|
# Copyright 2017 Linaro Limited
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
2017-07-18 05:38:54 +08:00
|
|
|
|
|
|
|
"""
|
|
|
|
Assemble multiple images into a single image that can be flashed on the device.
|
|
|
|
"""
|
|
|
|
|
|
|
|
import argparse
|
2017-07-21 02:15:31 +08:00
|
|
|
import errno
|
2017-07-18 05:38:54 +08:00
|
|
|
import io
|
|
|
|
import re
|
|
|
|
import os.path
|
|
|
|
|
|
|
|
def same_keys(a, b):
|
|
|
|
"""Determine if the dicts a and b have the same keys in them"""
|
|
|
|
for ak in a.keys():
|
|
|
|
if ak not in b:
|
|
|
|
return False
|
|
|
|
for bk in b.keys():
|
|
|
|
if bk not in a:
|
|
|
|
return False
|
|
|
|
return True
|
|
|
|
|
2019-09-05 21:57:00 +08:00
|
|
|
offset_re = re.compile(r"^#define DT_FLASH_AREA_([0-9A-Z_]+)_OFFSET(_0)?\s+(0x[0-9a-fA-F]+|[0-9]+)$")
|
|
|
|
size_re = re.compile(r"^#define DT_FLASH_AREA_([0-9A-Z_]+)_SIZE(_0)?\s+(0x[0-9a-fA-F]+|[0-9]+)$")
|
2017-07-18 05:38:54 +08:00
|
|
|
|
|
|
|
class Assembly():
|
|
|
|
def __init__(self, output, bootdir):
|
|
|
|
self.find_slots(bootdir)
|
2017-07-21 02:15:31 +08:00
|
|
|
try:
|
|
|
|
os.unlink(output)
|
|
|
|
except OSError as e:
|
|
|
|
if e.errno != errno.ENOENT:
|
|
|
|
raise
|
2017-07-18 05:38:54 +08:00
|
|
|
self.output = output
|
|
|
|
|
|
|
|
def find_slots(self, bootdir):
|
|
|
|
offsets = {}
|
|
|
|
sizes = {}
|
2020-01-13 19:06:44 +08:00
|
|
|
with open(os.path.join(bootdir, 'zephyr', 'include', 'generated', 'devicetree_unfixed.h'), 'r') as fd:
|
2017-07-18 05:38:54 +08:00
|
|
|
for line in fd:
|
|
|
|
m = offset_re.match(line)
|
|
|
|
if m is not None:
|
2018-05-28 20:40:16 +08:00
|
|
|
offsets[m.group(1)] = int(m.group(3), 0)
|
2017-07-18 05:38:54 +08:00
|
|
|
m = size_re.match(line)
|
|
|
|
if m is not None:
|
2018-05-28 20:40:16 +08:00
|
|
|
sizes[m.group(1)] = int(m.group(3), 0)
|
2017-07-18 05:38:54 +08:00
|
|
|
|
|
|
|
if not same_keys(offsets, sizes):
|
2020-01-13 19:06:44 +08:00
|
|
|
raise Exception("Inconsistent data in devicetree.h")
|
2017-07-18 05:38:54 +08:00
|
|
|
|
|
|
|
# We care about the MCUBOOT, IMAGE_0, and IMAGE_1 partitions.
|
|
|
|
if 'MCUBOOT' not in offsets:
|
|
|
|
raise Exception("Board partition table does not have mcuboot partition")
|
|
|
|
|
|
|
|
if 'IMAGE_0' not in offsets:
|
|
|
|
raise Exception("Board partition table does not have image-0 partition")
|
|
|
|
|
|
|
|
if 'IMAGE_1' not in offsets:
|
|
|
|
raise Exception("Board partition table does not have image-1 partition")
|
|
|
|
|
|
|
|
self.offsets = offsets
|
|
|
|
self.sizes = sizes
|
|
|
|
|
|
|
|
def add_image(self, source, partition):
|
|
|
|
with open(self.output, 'ab') as ofd:
|
|
|
|
pos = ofd.tell()
|
|
|
|
print("partition {}, pos={}, offset={}".format(partition, pos, self.offsets[partition]))
|
|
|
|
if pos > self.offsets[partition]:
|
|
|
|
raise Exception("Partitions not in order, unsupported")
|
|
|
|
if pos < self.offsets[partition]:
|
|
|
|
buf = b'\xFF' * (self.offsets[partition] - pos)
|
|
|
|
ofd.write(buf)
|
|
|
|
with open(source, 'rb') as rfd:
|
|
|
|
ibuf = rfd.read()
|
|
|
|
if len(ibuf) > self.sizes[partition]:
|
|
|
|
raise Exception("Image {} is too large for partition".format(source))
|
|
|
|
ofd.write(ibuf)
|
|
|
|
|
|
|
|
def main():
|
|
|
|
parser = argparse.ArgumentParser()
|
|
|
|
|
|
|
|
parser.add_argument('-b', '--bootdir', required=True,
|
|
|
|
help='Directory of built bootloader')
|
|
|
|
parser.add_argument('-p', '--primary', required=True,
|
|
|
|
help='Signed image file for primary image')
|
|
|
|
parser.add_argument('-s', '--secondary',
|
|
|
|
help='Signed image file for secondary image')
|
|
|
|
parser.add_argument('-o', '--output', required=True,
|
|
|
|
help='Filename to write full image to')
|
|
|
|
|
|
|
|
args = parser.parse_args()
|
|
|
|
output = Assembly(args.output, args.bootdir)
|
|
|
|
|
2019-09-05 21:57:00 +08:00
|
|
|
output.add_image(os.path.join(args.bootdir, 'zephyr', 'zephyr.bin'), 'MCUBOOT')
|
2017-07-18 05:38:54 +08:00
|
|
|
output.add_image(args.primary, "IMAGE_0")
|
|
|
|
if args.secondary is not None:
|
|
|
|
output.add_image(args.secondary, "IMAGE_1")
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|