Skip to content

Commit

Permalink
Preference to disable bootanimation for faster boot. (1/2 Framework)
Browse files Browse the repository at this point in the history
Implemented in ICS

On galaxys2 it went from 13s to 5s when enabled.

Change-Id: I89bdbc11a939544b9fb3cfc48d49892da473ef92
  • Loading branch information
nebkat authored and hyperb1iss committed Jul 12, 2012
1 parent 88b6d0d commit 3a41423
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmds/bootanimation/bootanimation_main.cpp
Expand Up @@ -43,7 +43,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);
ALOGI_IF(noBootAnimation, "boot animation disabled");
if (!noBootAnimation) {
Expand Down

0 comments on commit 3a41423

Please sign in to comment.