|
19 | 19 | import os
|
20 | 20 | import subprocess
|
21 | 21 | import sys
|
22 |
| -import shutil |
23 | 22 |
|
24 |
| -sys.path.append(os.path.abspath(os.path.join(os.environ.get('ZEPHYR_BASE'), 'scripts/west_commands/runners'))) |
| 23 | +ZEPHYR_BASE = os.environ.get('ZEPHYR_BASE') |
| 24 | +if ZEPHYR_BASE is None: |
| 25 | + raise EnvironmentError("ZEPHYR_BASE environment variable is not set") |
| 26 | + |
| 27 | +sys.path.append(os.path.abspath(os.path.join(ZEPHYR_BASE, 'scripts/west_commands/runners'))) |
25 | 28 | from core import BuildConfiguration
|
26 | 29 |
|
27 |
| -def merge_binaries(input_file, output_file, offset): |
28 |
| - with open(input_file, 'rb') as infile, open(output_file, 'r+b') as outfile: |
29 |
| - outfile.seek(offset) |
30 |
| - outfile.write(infile.read()) |
| 30 | +def merge_binaries(input_file1, input_file2, output_file, offset): |
| 31 | + with open(output_file, 'r+b' if os.path.exists(output_file) else 'wb') as outfile: |
| 32 | + # Merge input_file1 at offset 0 |
| 33 | + with open(input_file1, 'rb') as infile1: |
| 34 | + outfile.seek(0) |
| 35 | + outfile.write(infile1.read()) |
| 36 | + |
| 37 | + # Fill gaps with 0xFF if necessary |
| 38 | + current_size = outfile.tell() |
| 39 | + if current_size < offset: |
| 40 | + outfile.write(bytearray([0xFF] * (offset - current_size))) |
| 41 | + |
| 42 | + # Merge input_file2 at the specified offset |
| 43 | + with open(input_file2, 'rb') as infile2: |
| 44 | + outfile.seek(offset) |
| 45 | + outfile.write(infile2.read()) |
31 | 46 |
|
32 |
| -# obtain build configuration |
| 47 | +# Obtain build configuration |
33 | 48 | build_conf = BuildConfiguration(os.path.join(os.getcwd(), os.pardir))
|
34 | 49 |
|
35 |
| -# merge N22 core binary |
| 50 | +# Telink W91 dual-core SoC binary operations |
36 | 51 | if build_conf.getboolean('CONFIG_SOC_SERIES_RISCV_TELINK_W91'):
|
37 | 52 | n22_partition_offset = build_conf['CONFIG_TELINK_W91_N22_PARTITION_ADDR']
|
38 | 53 | if build_conf.getboolean('CONFIG_BOOTLOADER_MCUBOOT'):
|
39 | 54 | n22_partition_offset -= build_conf['CONFIG_FLASH_LOAD_OFFSET']
|
40 | 55 |
|
41 |
| - with open('merged.bin', 'wb') as f: |
42 |
| - pass |
43 |
| - merge_binaries('zephyr.bin', 'merged.bin', 0) |
44 |
| - merge_binaries('n22.bin', 'merged.bin', n22_partition_offset) |
| 56 | + # Merge N22 core binary |
| 57 | + merge_binaries('zephyr.bin', 'n22.bin', 'merged.bin', n22_partition_offset) |
45 | 58 |
|
| 59 | + # Sign the image if MCUBoot is used |
46 | 60 | if build_conf.getboolean('CONFIG_BOOTLOADER_MCUBOOT'):
|
47 |
| - command = [ |
| 61 | + sign_command = [ |
48 | 62 | 'python3',
|
49 |
| - os.path.join(os.environ.get('ZEPHYR_BASE'), '../bootloader/mcuboot/scripts/imgtool.py'), |
| 63 | + os.path.join(ZEPHYR_BASE, '../bootloader/mcuboot/scripts/imgtool.py'), |
50 | 64 | 'sign',
|
51 | 65 | '--version', '0.0.0+0',
|
52 | 66 | '--align', '1',
|
53 | 67 | '--header-size', str(build_conf['CONFIG_ROM_START_OFFSET']),
|
54 | 68 | '--slot-size', str(build_conf['CONFIG_FLASH_LOAD_SIZE']),
|
55 |
| - '--key', os.path.join(os.environ.get('ZEPHYR_BASE'), '../', build_conf['CONFIG_MCUBOOT_SIGNATURE_KEY_FILE']), |
| 69 | + '--key', os.path.join(ZEPHYR_BASE, '../', build_conf['CONFIG_MCUBOOT_SIGNATURE_KEY_FILE']), |
56 | 70 | 'merged.bin',
|
57 | 71 | 'zephyr.signed.bin'
|
58 | 72 | ]
|
59 |
| - subprocess.run(command, check=True) |
| 73 | + try: |
| 74 | + subprocess.run(sign_command, check=True) |
| 75 | + os.remove('merged.bin') # Clean up merged.bin after signing |
| 76 | + except subprocess.CalledProcessError as e: |
| 77 | + raise RuntimeError(f"Error signing the image: {e}") |
60 | 78 |
|
61 |
| -# merge MCUboot binary |
| 79 | +# Merge MCUBoot binary if configured |
62 | 80 | if build_conf.getboolean('CONFIG_BOOTLOADER_MCUBOOT'):
|
63 |
| - merge_binaries('mcuboot.bin', 'merged.bin', 0) |
64 |
| - merge_binaries('zephyr.signed.bin', 'merged.bin', build_conf['CONFIG_FLASH_LOAD_OFFSET']) |
| 81 | + merge_binaries('mcuboot.bin', 'zephyr.signed.bin', 'merged.bin', build_conf['CONFIG_FLASH_LOAD_OFFSET']) |
65 | 82 |
|
66 |
| -# merge Factory Data binary |
| 83 | +# Merge Factory Data binary if configured |
67 | 84 | if build_conf.getboolean('CONFIG_CHIP_FACTORY_DATA_MERGE_WITH_FIRMWARE'):
|
68 |
| - merge_binaries('factory/factory_data.bin', 'merged.bin', build_conf['CONFIG_TELINK_FACTORY_DATA_PARTITION_ADDR']) |
| 85 | + merge_binaries('merged.bin', 'factory/factory_data.bin', 'merged.bin', build_conf['CONFIG_TELINK_FACTORY_DATA_PARTITION_ADDR']) |
0 commit comments