From 076ca210eabe85729cea915b85fe485a06a5a8af Mon Sep 17 00:00:00 2001 From: Denis 'GNUtoo' Carikli Date: Mon, 10 Jun 2019 13:44:46 +0200 Subject: init.smdk4x12.rc: Add mandatory vold.post_fs_data_done The device's init.rc has the following comment: # If there is no post-fs-data action in the init..rc file, you # must uncomment this line, otherwise encrypted filesystems # won't work. # Set indication (checked by vold) that we have finished this action #setprop vold.post_fs_data_done 1 So it's better to do it in init.smdk4x12.rc instead of having to override init.rc. Signed-off-by: Denis 'GNUtoo' Carikli --- init.smdk4x12.rc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/init.smdk4x12.rc b/init.smdk4x12.rc index ab9ee5a..9fb48ea 100644 --- a/init.smdk4x12.rc +++ b/init.smdk4x12.rc @@ -47,3 +47,6 @@ on init # Create mount-point for ConfigFS USB gadgets # Add standard gadget entries mount configfs none /config + +on post-fs-data + setprop vold.post_fs_data_done 1 -- cgit v1.2.3