diff options
author | Brian Carlstrom <bdc@google.com> | 2014-08-15 09:55:50 -0700 |
---|---|---|
committer | Brian Carlstrom <bdc@google.com> | 2014-08-15 09:57:55 -0700 |
commit | e18987efb5e39ca1bed15527b7b82bde55c99669 (patch) | |
tree | ba8acc7b5410a9c003c5f0d7c7948ffa1712446f /cmds/installd/commands.c | |
parent | 3b14e5b1f3fd1f3ef66696dc7ce4e53b6af3c309 (diff) | |
download | frameworks_native-e18987efb5e39ca1bed15527b7b82bde55c99669.zip frameworks_native-e18987efb5e39ca1bed15527b7b82bde55c99669.tar.gz frameworks_native-e18987efb5e39ca1bed15527b7b82bde55c99669.tar.bz2 |
Disable verification based on vold.decrypt. [frameworks/native]
Bug: 15165413
Change-Id: Ie70bf4e1348b7b8b2454cf9b498b272416d61c34
Diffstat (limited to 'cmds/installd/commands.c')
-rw-r--r-- | cmds/installd/commands.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/installd/commands.c b/cmds/installd/commands.c index f05ce61..26edb5f 100644 --- a/cmds/installd/commands.c +++ b/cmds/installd/commands.c @@ -755,7 +755,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); |