From 7890c2af5181f134cc20153978c757ed8a55c43e Mon Sep 17 00:00:00 2001 From: Fyodor Kupolov Date: Mon, 12 Dec 2016 12:41:16 -0800 Subject: [PATCH] init.start was renamed to ro.boottime.init Test: manual Bug: 32780225 Change-Id: I07e593d5c1edab62e937a77916ab207ec17e8639 --- services/java/com/android/server/SystemServer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/java/com/android/server/SystemServer.java b/services/java/com/android/server/SystemServer.java index 02dc5fb6f5d1a..6ec25c53726b9 100644 --- a/services/java/com/android/server/SystemServer.java +++ b/services/java/com/android/server/SystemServer.java @@ -273,7 +273,7 @@ public final class SystemServer { EventLog.writeEvent(EventLogTags.BOOT_PROGRESS_SYSTEM_RUN, uptimeMillis); MetricsLogger.histogram(null, "boot_system_server_init", uptimeMillis); // Also report when first stage of init has started - long initStartNs = SystemProperties.getLong("init.start", -1); + long initStartNs = SystemProperties.getLong("ro.boottime.init", -1); if (initStartNs >= 0) { MetricsLogger.histogram(null, "boot_android_init", (int)(initStartNs / 1000000)); }