File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -833,7 +833,7 @@ def compile(*args): # NOQA
833
833
)
834
834
835
835
if partition_size == - 1 :
836
- p_size = 0x267000
836
+ p_size = 0x258000 # 0x259000
837
837
else :
838
838
p_size = partition_size
839
839
@@ -938,7 +938,9 @@ def compile(*args): # NOQA
938
938
939
939
if not skip_partition_resize and partition_size == - 1 :
940
940
if 'partition is too small ' in output :
941
- sys .stdout .write ('\n \033 [31;1m***** Resizing Partition *****\033 [0m\n ' )
941
+ sys .stdout .write (
942
+ '\n \033 [31;1m***** Resizing Partition *****\033 [0m\n '
943
+ )
942
944
sys .stdout .flush ()
943
945
944
946
end = output .split ('(overflow ' , 1 )[- 1 ]
@@ -967,6 +969,8 @@ def compile(*args): # NOQA
967
969
968
970
remaining = app_size - partition .get_app_size ()
969
971
972
+ app_size
973
+
970
974
if abs (remaining ) > 0x1000 :
971
975
sys .stdout .write (
972
976
'\n \033 [31;1m***** Resizing Partition *****\033 [0m\n '
You can’t perform that action at this time.
0 commit comments