Home | History | Annotate | Download | only in fs_mgr

Lines Matching refs:fstab

136 int fs_mgr_do_format(struct fstab_rec *fstab, bool crypt_footer)
140 LERROR << __FUNCTION__ << ": Format " << fstab->blk_device
141 << " as '" << fstab->fs_type << "'";
143 if (!strncmp(fstab->fs_type, "f2fs", 4)) {
144 rc = format_f2fs(fstab->blk_device, fstab->length, crypt_footer);
145 } else if (!strncmp(fstab->fs_type, "ext4", 4)) {
146 rc = format_ext4(fstab->blk_device, fstab->mount_point, crypt_footer);
148 LERROR << "File system type '" << fstab->fs_type << "' is not supported";