Skip to content

Commit a122186

Browse files
committed
[Telink] Fix issue with enabled Factory Data only
1 parent ce85f39 commit a122186

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

scripts/tools/telink/process_binaries.py

+6-2
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def merge_binaries(input_file1, input_file2, output_file, offset):
5858
# Obtain build configuration
5959
build_conf = BuildConfiguration(os.path.join(os.getcwd(), os.pardir))
6060

61-
# Clean up merged.bin from previuse build
61+
# Clean up merged.bin from previous build
6262
if os.path.exists('merged.bin'):
6363
os.remove('merged.bin')
6464

@@ -97,7 +97,11 @@ def merge_binaries(input_file1, input_file2, output_file, offset):
9797

9898
# Merge Factory Data binary if configured
9999
if build_conf.getboolean('CONFIG_CHIP_FACTORY_DATA_MERGE_WITH_FIRMWARE'):
100-
merge_binaries('merged.bin', 'factory/factory_data.bin', 'merged.bin', build_conf['CONFIG_TELINK_FACTORY_DATA_PARTITION_ADDR'])
100+
if os.path.exists('merged.bin'):
101+
merge_binaries('merged.bin', 'factory/factory_data.bin', 'merged.bin', build_conf['CONFIG_TELINK_FACTORY_DATA_PARTITION_ADDR'])
102+
else:
103+
# Initialize merged.bin with zephyr.bin since no base binary was created
104+
merge_binaries('zephyr.bin', 'factory/factory_data.bin', 'merged.bin', build_conf['CONFIG_TELINK_FACTORY_DATA_PARTITION_ADDR'])
101105

102106
# Check if merged.bin was created by any enabled feature, otherwise symlink zephyr.bin
103107
if not os.path.exists('merged.bin'):

0 commit comments

Comments
 (0)