diff options
author | Bulbul Dabi <bdabi@codeaurora.org> | 2017-08-28 13:45:42 +0530 |
---|---|---|
committer | Bulbul Dabi <bdabi@codeaurora.org> | 2017-08-28 13:48:22 +0530 |
commit | 8847debdfe3f453fb027b16ceaa09765098af661 (patch) | |
tree | 85dd2dc413c6cd54658d527943f9bb5449f3d436 /init.target.rc | |
parent | 93f7fa2de66cf2253625470dbf00d719a05639f7 (diff) |
Mount writable blocks with noatime option.
Mount writable blocks - /data, /persist and /cache with
noatime option so that atime information for read is not
updated.
Fix for CTS failure: testNoAtime.
Change-Id: I69ba74fb788f907fc1ad94ed231fa6f2298722a3
Diffstat (limited to 'init.target.rc')
-rw-r--r-- | init.target.rc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init.target.rc b/init.target.rc index 21fbfb7..db1415d 100644 --- a/init.target.rc +++ b/init.target.rc @@ -52,7 +52,7 @@ on fs # results in failure to launch late-start class. wait /dev/block/bootdevice/by-name/persist - mount ext4 /dev/block/bootdevice/by-name/persist /persist nosuid nodev barrier=1 + mount ext4 /dev/block/bootdevice/by-name/persist /persist nosuid nodev noatime barrier=1 mkdir /persist/data 0700 system system mkdir /persist/bms 0700 root system restorecon_recursive /persist |