Skip to content

Commit 5a25323

Browse files
committed
[Telink] Improve process binaries script
1 parent 0c59baf commit 5a25323

File tree

1 file changed

+38
-21
lines changed

1 file changed

+38
-21
lines changed

scripts/tools/telink/process_binaries.py

+38-21
Original file line numberDiff line numberDiff line change
@@ -19,50 +19,67 @@
1919
import os
2020
import subprocess
2121
import sys
22-
import shutil
2322

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')))
2528
from core import BuildConfiguration
2629

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())
3146

32-
# obtain build configuration
47+
# Obtain build configuration
3348
build_conf = BuildConfiguration(os.path.join(os.getcwd(), os.pardir))
3449

35-
# merge N22 core binary
50+
# Telink W91 dual-core SoC binary operations
3651
if build_conf.getboolean('CONFIG_SOC_SERIES_RISCV_TELINK_W91'):
3752
n22_partition_offset = build_conf['CONFIG_TELINK_W91_N22_PARTITION_ADDR']
3853
if build_conf.getboolean('CONFIG_BOOTLOADER_MCUBOOT'):
3954
n22_partition_offset -= build_conf['CONFIG_FLASH_LOAD_OFFSET']
4055

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)
4558

59+
# Sign the image if MCUBoot is used
4660
if build_conf.getboolean('CONFIG_BOOTLOADER_MCUBOOT'):
47-
command = [
61+
sign_command = [
4862
'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'),
5064
'sign',
5165
'--version', '0.0.0+0',
5266
'--align', '1',
5367
'--header-size', str(build_conf['CONFIG_ROM_START_OFFSET']),
5468
'--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']),
5670
'merged.bin',
5771
'zephyr.signed.bin'
5872
]
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}")
6078

61-
# merge MCUboot binary
79+
# Merge MCUBoot binary if configured
6280
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'])
6582

66-
# merge Factory Data binary
83+
# Merge Factory Data binary if configured
6784
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

Comments
 (0)