diff options
| author | Michael Bestas <mkbestas@lineageos.org> | 2018-05-08 09:17:18 +0200 |
|---|---|---|
| committer | Kelly Craft <mushroomhead52e@gmail.com> | 2018-07-07 15:32:36 +0200 |
| commit | 456e5682c9bc6c6c10abc8d1fd0ebb59353729c6 (patch) | |
| tree | 2d4791d6aeeecbba31bbc7fe2054acdd0286a27e | |
| parent | bdbcc0ad4ef8be0cde6898fa2fca9d95a1dbc359 (diff) | |
ls990: set /system mount as recoveryonly
* Mounting /system partition is handled in kernel now, however
removing the entry from fstab caused issues building the OTA. Simply
setting the recoveryonly flag does the trick because those are then
ignored during a normal Android boot.
Change-Id: I5404cfba184600a1a6cbf02cbfe952523980a6bb
| -rw-r--r-- | rootdir/etc/fstab.g3 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rootdir/etc/fstab.g3 b/rootdir/etc/fstab.g3 index 2863d29..38bf41e 100644 --- a/rootdir/etc/fstab.g3 +++ b/rootdir/etc/fstab.g3 @@ -6,7 +6,7 @@ # Currently we dont have e2fsck compiled. So fs check would failed. #<src> <mnt_point> <type> <mnt_flags and options> <fs_mgr_flags> -/dev/block/platform/msm_sdcc.1/by-name/system /system ext4 ro,barrier=1,noatime wait +/dev/block/platform/msm_sdcc.1/by-name/system /system ext4 ro,barrier=1,noatime wait,recoveryonly /dev/block/platform/msm_sdcc.1/by-name/userdata /data f2fs rw,nosuid,nodev,noatime,nodiratime,inline_xattr wait,check,formattable,encryptable=/dev/block/platform/msm_sdcc.1/by-name/encrypt /dev/block/platform/msm_sdcc.1/by-name/userdata /data ext4 noatime,nosuid,nodev,barrier=1,noatime,noauto_da_alloc,errors=continue,journal_async_commit wait,check,formattable,encryptable=/dev/block/platform/msm_sdcc.1/by-name/encrypt /dev/block/platform/msm_sdcc.1/by-name/cache /cache f2fs rw,nosuid,nodev,noatime,nodiratime,inline_xattr wait,check,formattable |
