@@ -201,17 +201,17 @@ def EigenFwDownload(self):
201201
202202 ap_application_addr = config .get ('File_1' , 'START_ADDR' )
203203 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 ]
205205 extra ['flexfile2' ] = flexfile2
206206
207207 ap_updater_addr = config .get ('File_2' , 'START_ADDR' )
208208 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 ]
210210 extra ['flexfile3' ] = flexfile3
211211
212212 customer_fs_addr = config .get ('File_3' , 'START_ADDR' )
213213 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 ]
215215 extra ['flexfile4' ] = flexfile4
216216
217217 binpkg_config = configparser .ConfigParser (interpolation = None )
@@ -224,8 +224,7 @@ def EigenFwDownload(self):
224224 binpkg_config .set ('system' , 'syspath' , str (Path (tmp_path ) / "sysloadskip = 0" ))
225225 binpkg_config .set ('cp_system' , 'cp_syspath' , str (Path (tmp_path ) / "cp_sysloadskip = 0" ))
226226
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" ))
229228 binpkg_config .set ('flexfile2' , 'burnaddr' , ap_application_addr )
230229
231230 binpkg_config .set ('flexfile3' , 'filepath' , str (Path (tmp_path ) / "fw/ap_updater.bin" ))
@@ -237,7 +236,7 @@ def EigenFwDownload(self):
237236 if File_Count == 4 :
238237 customer_backup_fs_addr = config .get ('File_4' , 'START_ADDR' )
239238 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 ]
241240 extra ['flexfile5' ] = flexfile5
242241
243242 binpkg_config .set ('flexfile5' , 'filepath' ,
0 commit comments