From 00ef7d560ccd0dc197227af3daf6e7b554d611c0 Mon Sep 17 00:00:00 2001 From: Jaekyun Seok Date: Thu, 12 Apr 2018 08:16:31 +0900 Subject: [PATCH] Allow vendor-init-actionable for vold-related properties Bug: 75987246 Bug: 73871799 Test: succeeded building and tested with taimen Change-Id: Ifec879f07705a52501757b58b1562a97c668b8b0 Merged-In: Ifec879f07705a52501757b58b1562a97c668b8b0 (cherry picked from commit 65ce3b2cd879e39d75012798eef348283ad8b4f3) --- init/stable_properties.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/init/stable_properties.h b/init/stable_properties.h index cc256070c..05b2acb60 100644 --- a/init/stable_properties.h +++ b/init/stable_properties.h @@ -29,6 +29,7 @@ static constexpr const char* kPartnerPrefixes[] = { }; static const std::set kExportedActionableProperties = { + "dev.bootcomplete", "init.svc.console", "init.svc.mediadrm", "init.svc.surfaceflinger", @@ -39,6 +40,8 @@ static const std::set kExportedActionableProperties = { "ro.board.platform", "ro.bootmode", "ro.build.type", + "ro.crypto.state", + "ro.crypto.type", "ro.debuggable", "sys.boot_completed", "sys.boot_from_charger_mode", @@ -50,6 +53,8 @@ static const std::set kExportedActionableProperties = { "sys.usb.ffs.ready", "sys.user.0.ce_available", "sys.vdso", + "vold.decrypt", + "vold.post_fs_data_done", "vts.native_server.on", "wlan.driver.status", };