Merge "Populate `ro.boot.debug.sf.nobootanimation` from `android.bootanim`"
diff --git a/init/property_service.cpp b/init/property_service.cpp
index 0dc8159..d1ba3c7 100644
--- a/init/property_service.cpp
+++ b/init/property_service.cpp
@@ -1200,6 +1200,10 @@
             // 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");
         }
     });
 }