summaryrefslogtreecommitdiffstats
path: root/fs_mgr/fs_mgr_fstab.c
diff options
context:
space:
mode:
authorNick Kralevich <nnk@google.com>2014-10-08 23:55:05 +0000
committerNick Kralevich <nnk@google.com>2014-10-08 23:55:05 +0000
commit152d2d4234ba89e0c20c4af13e291b6049a7bc33 (patch)
tree8d745843e930acd5412af7c7466b35205126edb5 /fs_mgr/fs_mgr_fstab.c
parentd4cea0bc16d1ad96cc6d6177232d7b339785460c (diff)
downloadsystem_core-152d2d4234ba89e0c20c4af13e291b6049a7bc33.tar.gz
system_core-152d2d4234ba89e0c20c4af13e291b6049a7bc33.tar.bz2
system_core-152d2d4234ba89e0c20c4af13e291b6049a7bc33.zip
Revert "Enable verity on userdebug, and add disable-verity to adb"
Build is broken. system/core/fs_mgr/fs_mgr_verity.c: In function 'fs_mgr_setup_verity': system/core/fs_mgr/fs_mgr_verity.c:103:20: error: 'verity_table_signature' may be used uninitialized in this function [-Werror=maybe-uninitialized] if (!RSA_verify(key, ^ system/core/fs_mgr/fs_mgr_verity.c:374:11: note: 'verity_table_signature' was declared here char *verity_table_signature; ^ cc1: all warnings being treated as errors make: *** [out/target/product/minnow/obj/STATIC_LIBRARIES/libfs_mgr_intermediates/fs_mgr_verity.o] Error 1 make: *** Waiting for unfinished jobs.... This reverts commit d4cea0bc16d1ad96cc6d6177232d7b339785460c. Change-Id: I6862cc79ef9d944a2472b6fb2e46dae514cea8ce
Diffstat (limited to 'fs_mgr/fs_mgr_fstab.c')
-rw-r--r--fs_mgr/fs_mgr_fstab.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/fs_mgr/fs_mgr_fstab.c b/fs_mgr/fs_mgr_fstab.c
index ab8f128ce..3f841792c 100644
--- a/fs_mgr/fs_mgr_fstab.c
+++ b/fs_mgr/fs_mgr_fstab.c
@@ -418,11 +418,6 @@ int fs_mgr_is_nonremovable(struct fstab_rec *fstab)
return fstab->fs_mgr_flags & MF_NONREMOVABLE;
}
-int fs_mgr_is_verified(struct fstab_rec *fstab)
-{
- return fstab->fs_mgr_flags & MF_VERIFY;
-}
-
int fs_mgr_is_encryptable(struct fstab_rec *fstab)
{
return fstab->fs_mgr_flags & (MF_CRYPT | MF_FORCECRYPT);