Skip to content

Commit 3f7b235

Browse files
committed
This PR modifies the name of the bin file generated for SMCC FOTA feature
This PR modifies the name of the bin file generated for SMCC FOTA feature Description Modify name of the bin file from '-payload.bin' to '_update.bin' in REALTEK_RTL8195AM.py file to adapt the manifest tool requirment for the SMCC FOTA feature. Pull request type [ ] Fix [ ] Refactor [x] Target update [ ] Functionality change [ ] Docs update [ ] Test update [ ] Breaking change
1 parent 7995e8b commit 3f7b235

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/targets/REALTEK_RTL8195AM.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ def rtl8195a_elf2bin(t_self, image_elf, image_bin):
176176
image_map = ".".join(image_name + ['map'])
177177

178178
ram1_bin = os.path.join(TOOLS_BOOTLOADERS, "REALTEK_RTL8195AM", "ram_1.bin")
179-
ram2_bin = ".".join(image_name) + '-payload.bin'
179+
ram2_bin = ".".join(image_name) + '_update.bin'
180180

181181
entry = find_symbol(t_self.name, image_map, "PLAT_Start")
182182
segment = parse_load_segment(t_self.name, image_elf)

0 commit comments

Comments
 (0)