summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Carlstrom <bdc@google.com>2014-08-15 17:21:47 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2014-08-15 05:40:22 +0000
commitca58175c831376bc052bde2e25d40798f0cf7ea9 (patch)
treeedda8e17c72a751c5d439e6e3a4084d1600e13ae
parenta0187a9c83cb042b4cb92dac59214247bb7affcf (diff)
parentf7765c4a175bda9f631e4c828539f4a169c7bca4 (diff)
downloadnative-ca58175c831376bc052bde2e25d40798f0cf7ea9.tar.gz
Merge "Disable verification based on vold.decrypt. [frameworks/native]"
-rw-r--r--cmds/installd/commands.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/installd/commands.c b/cmds/installd/commands.c
index f70ce1cf7c..a441370e35 100644
--- a/cmds/installd/commands.c
+++ b/cmds/installd/commands.c
@@ -744,7 +744,7 @@ static void run_dex2oat(int zip_fd, int oat_fd, const char* input_file_name,
sprintf(dex2oat_Xmx_arg, "-Xmx%s", dex2oat_Xmx_flag);
}
if (skip_compilation) {
- strcpy(dex2oat_compiler_filter_arg, "--compiler-filter=interpret-only");
+ strcpy(dex2oat_compiler_filter_arg, "--compiler-filter=verify-none");
have_dex2oat_compiler_filter_flag = true;
} else if (have_dex2oat_compiler_filter_flag) {
sprintf(dex2oat_compiler_filter_arg, "--compiler-filter=%s", dex2oat_compiler_filter_flag);