summaryrefslogtreecommitdiff
path: root/fastboot/fs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'fastboot/fs.cpp')
-rw-r--r--fastboot/fs.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/fastboot/fs.cpp b/fastboot/fs.cpp
index d268a502c..458a7a184 100644
--- a/fastboot/fs.cpp
+++ b/fastboot/fs.cpp
@@ -143,13 +143,6 @@ static int generate_ext4_image(const char* fileName, long long partSize,
mke2fs_args.push_back("512");
}
- if (fsOptions & (1 << FS_OPT_CASEFOLD)) {
- mke2fs_args.push_back("-O");
- mke2fs_args.push_back("casefold");
- mke2fs_args.push_back("-E");
- mke2fs_args.push_back("encoding=utf8");
- }
-
mke2fs_args.push_back(fileName);
std::string size_str = std::to_string(partSize / block_size);