Skip to content

Commit

Permalink
init: Add support LLCON (tune bootanimation)
Browse files Browse the repository at this point in the history
  • Loading branch information
remittor committed May 11, 2016
1 parent 37de0f7 commit bb7caef
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions init/init_d10f.c
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,12 @@ void init_msm_properties(unsigned long msm_id, unsigned long msm_ver, char * boa

mount("rootfs", "/", "rootfs", MS_REMOUNT|0, NULL);

rc = property_get("ro.boot.llcon", value);
if (rc > 0) {
if (value[0] != '0')
property_set("debug.sf.nobootanimation", "1");
}

rc = property_get(PERSISTENT_PROPERTY_PLANNED_SWAP, value);
if (rc && atoi(value))
stor_swapped = 1;
Expand Down

0 comments on commit bb7caef

Please sign in to comment.