summaryrefslogtreecommitdiffstats
path: root/cmds
diff options
context:
space:
mode:
authornebkat <nebkat@gmail.com>2011-09-27 11:18:28 +0100
committerHarsh Bhanvadia <harsh.slade@gmail.com>2012-02-16 02:18:23 +0100
commitb98591a79effbcb79fe344b2ddd7dd86c941dd73 (patch)
tree67199e779ca6bdb913952719fd65f7c0bd4b5b4f /cmds
parent824fd90cba372d794a6b93c5d2489e7841aaf363 (diff)
downloadframeworks_base-b98591a79effbcb79fe344b2ddd7dd86c941dd73.zip
frameworks_base-b98591a79effbcb79fe344b2ddd7dd86c941dd73.tar.gz
frameworks_base-b98591a79effbcb79fe344b2ddd7dd86c941dd73.tar.bz2
Preference to disable bootanimation for faster boot. (1/2 Framework)
Implemented in ICS On galaxys2 it went from 13s to 5s when enabled. Change-Id: I89bdbc11a939544b9fb3cfc48d49892da473ef92
Diffstat (limited to 'cmds')
-rw-r--r--cmds/bootanimation/bootanimation_main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/bootanimation/bootanimation_main.cpp b/cmds/bootanimation/bootanimation_main.cpp
index 5f8b744..161ba44 100644
--- a/cmds/bootanimation/bootanimation_main.cpp
+++ b/cmds/bootanimation/bootanimation_main.cpp
@@ -45,7 +45,7 @@ int main(int argc, char** argv)
#endif
char value[PROPERTY_VALUE_MAX];
- property_get("debug.sf.nobootanimation", value, "0");
+ property_get("persist.sys.nobootanimation", value, "0");
int noBootAnimation = atoi(value);
LOGI_IF(noBootAnimation, "boot animation disabled");
if (!noBootAnimation) {