Skip to content

Commit 12a5259

Browse files
gen_partition: set default GROW_LAST_PARTITION_TO_FILL_DISK to false
The parameter --grow-last-partition does not accept any argument and it supposed to be used to set GROW_LAST_PARTITION_TO_FILL_DISK to true, but since GROW_LAST_PARTITION_TO_FILL_DISK is already true by default, there is no current way to set it to false. Since all current machines are using --grow-last-partition at their partitions.conf definition, switch GROW_LAST_PARTITION_TO_FILL_DISK default to false. Signed-off-by: Ricardo Salveti <[email protected]>
1 parent 543fdc4 commit 12a5259

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gen_partition.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def usage():
4545
"size": "",
4646
"SECTOR_SIZE_IN_BYTES": "512",
4747
"WRITE_PROTECT_BOUNDARY_IN_KB": "65536",
48-
"GROW_LAST_PARTITION_TO_FILL_DISK": "true",
48+
"GROW_LAST_PARTITION_TO_FILL_DISK": "false",
4949
"ALIGN_PARTITIONS_TO_PERFORMANCE_BOUNDARY": "true",
5050
"PERFORMANCE_BOUNDARY_IN_KB": "4"
5151
})

0 commit comments

Comments
 (0)