@@ -749,7 +749,7 @@ def _generate_bootloader_build(self, rom_start, rom_size):
749
749
if start > rom_start + rom_size :
750
750
raise ConfigException ("Not enough memory on device to fit all "
751
751
"application regions" )
752
-
752
+
753
753
@staticmethod
754
754
def _find_sector (address , sectors ):
755
755
target_size = - 1
@@ -762,13 +762,13 @@ def _find_sector(address, sectors):
762
762
if (target_size < 0 ):
763
763
raise ConfigException ("No valid sector found" )
764
764
return target_start , target_size
765
-
765
+
766
766
@staticmethod
767
767
def _align_floor (address , sectors ):
768
768
target_start , target_size = Config ._find_sector (address , sectors )
769
769
sector_num = (address - target_start ) // target_size
770
770
return target_start + (sector_num * target_size )
771
-
771
+
772
772
@staticmethod
773
773
def _align_ceiling (address , sectors ):
774
774
target_start , target_size = Config ._find_sector (address , sectors )
@@ -778,7 +778,7 @@ def _align_ceiling(address, sectors):
778
778
@property
779
779
def report (self ):
780
780
return {'app_config' : self .app_config_location ,
781
- 'library_configs' : map (relpath , self .processed_configs .keys ())}
781
+ 'library_configs' : list ( map (relpath , self .processed_configs .keys () ))}
782
782
783
783
def _generate_linker_overrides (self , rom_start , rom_size ):
784
784
if self .target .mbed_app_start is not None :
0 commit comments