Merge "Populate `ro.boot.debug.sf.nobootanimation` from `android.bootanim`"

This commit is contained in:
Treehugger Robot 2021-04-08 17:42:18 +00:00 committed by Gerrit Code Review
commit a8b2ac4b30
1 changed files with 4 additions and 0 deletions

View File

@ -1200,6 +1200,10 @@ static void ProcessKernelCmdline() {
// emulator specific, should be retired once emulator migrates to
// androidboot.
InitPropertySet("ro.boot." + key, value);
} else if (key == "android.bootanim" && value == "0") {
// emulator specific, should be retired once emulator migrates to
// androidboot.
InitPropertySet("ro.boot.debug.sf.nobootanimation", "1");
}
});
}