summaryrefslogtreecommitdiff
path: root/cmds/installd/installd.cpp
diff options
context:
space:
mode:
author Jeff Sharkey <jsharkey@android.com> 2016-01-29 09:47:22 -0700
committer Jeff Sharkey <jsharkey@android.com> 2016-01-29 10:18:49 -0700
commite37d62803210f258ddb843c7d8d0494127069342 (patch)
tree5e85bf3d138e6880e40b6c1da016d528acc15317 /cmds/installd/installd.cpp
parent0b53106639154710039fc4185662f2b4101e8e91 (diff)
Remove "updatecmds" feature.
This feature is very old and hasn't been used in many releases. In addition, it was never taught about multi-user layouts, and it would be incredibly hard to maintain in the new FBE world where CE keys may not appear until several reboots after an OTA. Bug: 26854442 Change-Id: Ibd8660e2a727469cd5ae41dab5e1014a9cfb6748
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 09f2c26d58..02e96015cc 100644
--- a/cmds/installd/installd.cpp
+++ b/cmds/installd/installd.cpp
@@ -274,11 +274,6 @@ static int do_rm_user(char **arg, char reply[REPLY_MAX] ATTRIBUTE_UNUSED)
return delete_user(parse_null(arg[0]), atoi(arg[1])); /* uuid, userid */
}
-static int do_movefiles(char **arg ATTRIBUTE_UNUSED, char reply[REPLY_MAX] ATTRIBUTE_UNUSED)
-{
- return movefiles();
-}
-
static int do_linklib(char **arg, char reply[REPLY_MAX] ATTRIBUTE_UNUSED)
{
return linklib(parse_null(arg[0]), arg[1], arg[2], atoi(arg[3]));
@@ -327,7 +322,6 @@ struct cmdinfo cmds[] = {
{ "markbootcomplete", 1, do_mark_boot_complete },
{ "rmdex", 2, do_rm_dex },
{ "freecache", 2, do_free_cache },
- { "movefiles", 0, do_movefiles },
{ "linklib", 4, do_linklib },
{ "mkuserconfig", 1, do_mk_user_config },
{ "rmuser", 2, do_rm_user },