diff options
author | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2019-06-10 13:44:46 +0200 |
---|---|---|
committer | Denis 'GNUtoo' Carikli <GNUtoo@no-log.org> | 2019-06-13 01:06:39 +0200 |
commit | 076ca210eabe85729cea915b85fe485a06a5a8af (patch) | |
tree | ea05b235ca54c8a1f44012db689481b02c8ee6bf | |
parent | f1d0b85cbc01b2422586a31a35d6341213a3ff71 (diff) | |
download | device_samsung_i9300-076ca210eabe85729cea915b85fe485a06a5a8af.tar.gz device_samsung_i9300-076ca210eabe85729cea915b85fe485a06a5a8af.tar.bz2 device_samsung_i9300-076ca210eabe85729cea915b85fe485a06a5a8af.zip |
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.<device>.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 <GNUtoo@cyberdimension.org>
-rw-r--r-- | init.smdk4x12.rc | 3 |
1 files changed, 3 insertions, 0 deletions
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 |