summaryrefslogtreecommitdiffstats
path: root/updater
diff options
context:
space:
mode:
authorXin Li <delphij@google.com>2018-08-07 18:51:25 +0200
committerGerrit Code Review <noreply-gerritcodereview@google.com>2018-08-07 18:51:25 +0200
commit9791b21c1f9d068c6162e4c7e4571da79af32e5b (patch)
tree5b906d66a45e45d4b5bb90e11c7bb13f071f4010 /updater
parentMerge "ueventd is now at /system/bin/ueventd" (diff)
parentMerge Android Pie into master (diff)
downloadandroid_bootable_recovery-9791b21c1f9d068c6162e4c7e4571da79af32e5b.tar
android_bootable_recovery-9791b21c1f9d068c6162e4c7e4571da79af32e5b.tar.gz
android_bootable_recovery-9791b21c1f9d068c6162e4c7e4571da79af32e5b.tar.bz2
android_bootable_recovery-9791b21c1f9d068c6162e4c7e4571da79af32e5b.tar.lz
android_bootable_recovery-9791b21c1f9d068c6162e4c7e4571da79af32e5b.tar.xz
android_bootable_recovery-9791b21c1f9d068c6162e4c7e4571da79af32e5b.tar.zst
android_bootable_recovery-9791b21c1f9d068c6162e4c7e4571da79af32e5b.zip
Diffstat (limited to 'updater')
-rw-r--r--updater/install.cpp10
1 files changed, 4 insertions, 6 deletions
diff --git a/updater/install.cpp b/updater/install.cpp
index 088d24b31..f9333459b 100644
--- a/updater/install.cpp
+++ b/updater/install.cpp
@@ -497,12 +497,10 @@ Value* FormatFn(const char* name, State* state, const std::vector<std::unique_pt
const char* f2fs_argv[] = { "mkfs.f2fs",
"-d1",
"-f",
- "-O",
- "encrypt",
- "-O",
- "quota",
- "-w",
- "512",
+ "-O", "encrypt",
+ "-O", "quota",
+ "-O", "verity",
+ "-w", "512",
location.c_str(),
(size < 512) ? nullptr : num_sectors.c_str(),
nullptr };