summaryrefslogtreecommitdiff
path: root/cmds/installd/installd.cpp
diff options
context:
space:
mode:
author Jeff Sharkey <jsharkey@android.com> 2015-11-09 13:10:36 -0800
committer Jeff Sharkey <jsharkey@android.com> 2015-11-11 09:49:40 -0800
commit63ec2d64196144b2d15d2baffedccfa011d6494f (patch)
tree70fe5630745c6f10d32b5254bb3da252cfd570f5 /cmds/installd/installd.cpp
parent43ec13d13a695166a55c85fc3baeb30b2d5beac0 (diff)
Create device-encrypted directories for apps.
When device has FBE, create device-encrypted storage location when installing apps. Also remove "renamepkg" unused command. Bug: 22358539 Change-Id: Ic56eeecdc64bdaa7429b93426727a243a4e45f47
Diffstat (limited to 'cmds/installd/installd.cpp')
-rw-r--r--cmds/installd/installd.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/cmds/installd/installd.cpp b/cmds/installd/installd.cpp
index 7a161504ec..52f7b9cb5e 100644
--- a/cmds/installd/installd.cpp
+++ b/cmds/installd/installd.cpp
@@ -72,11 +72,6 @@ static int do_remove(char **arg, char reply[REPLY_MAX] __unused)
return uninstall(parse_null(arg[0]), arg[1], atoi(arg[2])); /* uuid, pkgname, userid */
}
-static int do_rename(char **arg, char reply[REPLY_MAX] __unused)
-{
- return renamepkg(arg[0], arg[1]); /* oldpkgname, newpkgname */
-}
-
static int do_fixuid(char **arg, char reply[REPLY_MAX] __unused)
{
return fix_uid(parse_null(arg[0]), arg[1], atoi(arg[2]), atoi(arg[3])); /* uuid, pkgname, uid, gid */
@@ -198,7 +193,6 @@ struct cmdinfo cmds[] = {
{ "movedex", 3, do_move_dex },
{ "rmdex", 2, do_rm_dex },
{ "remove", 3, do_remove },
- { "rename", 2, do_rename },
{ "fixuid", 4, do_fixuid },
{ "freecache", 2, do_free_cache },
{ "rmcache", 3, do_rm_cache },