Lines Matching refs:fs_size
199 // format(fs_type, partition_type, location, fs_size, mount_point)
201 // fs_type="yaffs2" partition_type="MTD" location=partition fs_size=<bytes> mount_point=<location>
202 // fs_type="ext4" partition_type="EMMC" location=device fs_size=<bytes> mount_point=<location>
203 // if fs_size == 0, then make_ext4fs uses the entire partition.
204 // if fs_size > 0, that is the size to use
205 // if fs_size < 0, then reserve that many bytes at the end of the partition
214 char* fs_size;
217 if (ReadArgs(state, argv, 5, &fs_type, &partition_type, &location, &fs_size, &mount_point) < 0) {
269 int status = make_ext4fs(location, atoll(fs_size), mount_point, sehandle);