diff options
author | Jaegeuk Kim <jaegeuk@google.com> | 2020-02-12 00:24:54 +0100 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk@google.com> | 2020-02-12 21:16:05 +0100 |
commit | a8d36e1ea913ddc88a3bd5ddc630188168e9b009 (patch) | |
tree | f6ecf20490452f4ab8dffe82fd54aca0e64c4ede /recovery_utils | |
parent | Merge "rm libbinderthreadstate" (diff) | |
download | android_bootable_recovery-a8d36e1ea913ddc88a3bd5ddc630188168e9b009.tar android_bootable_recovery-a8d36e1ea913ddc88a3bd5ddc630188168e9b009.tar.gz android_bootable_recovery-a8d36e1ea913ddc88a3bd5ddc630188168e9b009.tar.bz2 android_bootable_recovery-a8d36e1ea913ddc88a3bd5ddc630188168e9b009.tar.lz android_bootable_recovery-a8d36e1ea913ddc88a3bd5ddc630188168e9b009.tar.xz android_bootable_recovery-a8d36e1ea913ddc88a3bd5ddc630188168e9b009.tar.zst android_bootable_recovery-a8d36e1ea913ddc88a3bd5ddc630188168e9b009.zip |
Diffstat (limited to 'recovery_utils')
-rw-r--r-- | recovery_utils/roots.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/recovery_utils/roots.cpp b/recovery_utils/roots.cpp index 127039872..58a313973 100644 --- a/recovery_utils/roots.cpp +++ b/recovery_utils/roots.cpp @@ -202,6 +202,15 @@ int format_volume(const std::string& volume, const std::string& directory) { mke2fs_args.push_back("512"); } + if (v->fs_mgr_flags.ext_meta_csum) { + mke2fs_args.push_back("-O"); + mke2fs_args.push_back("metadata_csum"); + mke2fs_args.push_back("-O"); + mke2fs_args.push_back("64bit"); + mke2fs_args.push_back("-O"); + mke2fs_args.push_back("extent"); + } + int raid_stride = v->logical_blk_size / kBlockSize; int raid_stripe_width = v->erase_blk_size / kBlockSize; // stride should be the max of 8KB and logical block size |