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
pull/8854/head
Lu 2018-11-23 21:00:46 +08:00
parent 7995e8beac
commit 3f7b235782
1 changed files with 1 additions and 1 deletions

View File

@ -176,7 +176,7 @@ def rtl8195a_elf2bin(t_self, image_elf, image_bin):
image_map = ".".join(image_name + ['map'])
ram1_bin = os.path.join(TOOLS_BOOTLOADERS, "REALTEK_RTL8195AM", "ram_1.bin")
ram2_bin = ".".join(image_name) + '-payload.bin'
ram2_bin = ".".join(image_name) + '_update.bin'
entry = find_symbol(t_self.name, image_map, "PLAT_Start")
segment = parse_load_segment(t_self.name, image_elf)