diff options
author | Keun-young Park <keunyoung@google.com> | 2017-03-02 22:41:29 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2017-03-02 22:41:30 +0000 |
commit | 22cc398d76b8e0e305b74dbaf1f9fc4eded7791f (patch) | |
tree | fb4d67d6f60e5346b776c1212db13278449626cd | |
parent | 497cb085c786b2312aae3784c3969d68c1391c06 (diff) | |
parent | 404906d59add52c1345302e2d13c1f9c2fec8664 (diff) |
Merge "use ro.persistent_properties.ready for persistent props ready"
-rw-r--r-- | init/property_service.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/init/property_service.cpp b/init/property_service.cpp index decd6445c..d88b72e33 100644 --- a/init/property_service.cpp +++ b/init/property_service.cpp @@ -609,8 +609,7 @@ void load_persist_props(void) { load_override_properties(); /* Read persistent properties after all default values have been loaded. */ load_persistent_properties(); - uint64_t start_ns = boot_clock::now().time_since_epoch().count(); - property_set("ro.boottime.persistent_properties", StringPrintf("%" PRIu64, start_ns).c_str()); + property_set("ro.persistent_properties.ready", "true"); } void load_recovery_id_prop() { |