diff options
author | Treehugger Robot <treehugger-gerrit@google.com> | 2017-11-14 02:49:26 +0100 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2017-11-14 02:49:26 +0100 |
commit | d4b6e25fdda0bd19d65ba3babbaac73a10cfeb8f (patch) | |
tree | fc072fe34d311e05b1d04671b6fa902797397762 /updater/install.cpp | |
parent | Merge "applypatch: Change the patch parameter to const Value& in Apply{BSDiff,Image}Patch." (diff) | |
parent | recovery: format f2fs with encrypt/quota (diff) | |
download | android_bootable_recovery-d4b6e25fdda0bd19d65ba3babbaac73a10cfeb8f.tar android_bootable_recovery-d4b6e25fdda0bd19d65ba3babbaac73a10cfeb8f.tar.gz android_bootable_recovery-d4b6e25fdda0bd19d65ba3babbaac73a10cfeb8f.tar.bz2 android_bootable_recovery-d4b6e25fdda0bd19d65ba3babbaac73a10cfeb8f.tar.lz android_bootable_recovery-d4b6e25fdda0bd19d65ba3babbaac73a10cfeb8f.tar.xz android_bootable_recovery-d4b6e25fdda0bd19d65ba3babbaac73a10cfeb8f.tar.zst android_bootable_recovery-d4b6e25fdda0bd19d65ba3babbaac73a10cfeb8f.zip |
Diffstat (limited to '')
-rw-r--r-- | updater/install.cpp | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/updater/install.cpp b/updater/install.cpp index b865081b4..a111f4b79 100644 --- a/updater/install.cpp +++ b/updater/install.cpp @@ -303,10 +303,16 @@ Value* FormatFn(const char* name, State* state, const std::vector<std::unique_pt std::string num_sectors = std::to_string(size / 512); const char* f2fs_path = "/sbin/mkfs.f2fs"; - const char* f2fs_argv[] = { - "mkfs.f2fs", "-t", "-d1", location.c_str(), (size < 512) ? nullptr : num_sectors.c_str(), - nullptr - }; + const char* f2fs_argv[] = { "mkfs.f2fs", + "-d1", + "-f", + "-O", + "encrypt", + "-O", + "quota", + location.c_str(), + (size < 512) ? nullptr : num_sectors.c_str(), + nullptr }; int status = exec_cmd(f2fs_path, const_cast<char**>(f2fs_argv)); if (status != 0) { LOG(ERROR) << name << ": mkfs.f2fs failed (" << status << ") on " << location; |