@@ -201,17 +201,17 @@ def EigenFwDownload(self):
201
201
202
202
ap_application_addr = config .get ('File_1' , 'START_ADDR' )
203
203
ap_application_max = config .get ('File_1' , 'MAX_SIZE' )
204
- flexfile2 = ap_application_addr + " " + ap_application_max
204
+ flexfile2 = [ ap_application_addr , ap_application_max ]
205
205
extra ['flexfile2' ] = flexfile2
206
206
207
207
ap_updater_addr = config .get ('File_2' , 'START_ADDR' )
208
208
ap_updater_max = config .get ('File_2' , 'MAX_SIZE' )
209
- flexfile3 = ap_updater_addr + " " + ap_updater_max
209
+ flexfile3 = [ ap_updater_addr , ap_updater_max ]
210
210
extra ['flexfile3' ] = flexfile3
211
211
212
212
customer_fs_addr = config .get ('File_3' , 'START_ADDR' )
213
213
customer_fs_max = config .get ('File_3' , 'MAX_SIZE' )
214
- flexfile4 = customer_fs_addr + " " + customer_fs_max
214
+ flexfile4 = [ customer_fs_addr , customer_fs_max ]
215
215
extra ['flexfile4' ] = flexfile4
216
216
217
217
binpkg_config = configparser .ConfigParser (interpolation = None )
@@ -224,8 +224,7 @@ def EigenFwDownload(self):
224
224
binpkg_config .set ('system' , 'syspath' , str (Path (tmp_path ) / "sysloadskip = 0" ))
225
225
binpkg_config .set ('cp_system' , 'cp_syspath' , str (Path (tmp_path ) / "cp_sysloadskip = 0" ))
226
226
227
- binpkg_config .set ('flexfile2' , 'filepath' ,
228
- str (Path (tmp_path ) / "fw/ap_application.bin" ))
227
+ binpkg_config .set ('flexfile2' , 'filepath' , str (Path (tmp_path ) / "fw/ap_application.bin" ))
229
228
binpkg_config .set ('flexfile2' , 'burnaddr' , ap_application_addr )
230
229
231
230
binpkg_config .set ('flexfile3' , 'filepath' , str (Path (tmp_path ) / "fw/ap_updater.bin" ))
@@ -237,7 +236,7 @@ def EigenFwDownload(self):
237
236
if File_Count == 4 :
238
237
customer_backup_fs_addr = config .get ('File_4' , 'START_ADDR' )
239
238
customer_backup_fs_max = config .get ('File_4' , 'MAX_SIZE' )
240
- flexfile5 = customer_backup_fs_addr + " " + customer_backup_fs_max
239
+ flexfile5 = [ customer_backup_fs_addr , customer_backup_fs_max ]
241
240
extra ['flexfile5' ] = flexfile5
242
241
243
242
binpkg_config .set ('flexfile5' , 'filepath' ,
0 commit comments