system/core
Révision | 032afc1d52289f486538c9ed53f17b9889ea94df (tree) |
---|---|
l'heure | 2012-01-12 09:16:07 |
Auteur | James Dong <jdong@goog...> |
Commiter | Android (Google) Code Review |
Merge "Close a security hole - do not give world readable/writable access to /data/drm" into ics-mr1
@@ -175,8 +175,9 @@ on post-fs-data | ||
175 | 175 | # create the lost+found directories, so as to enforce our permissions |
176 | 176 | mkdir /data/lost+found 0770 root root |
177 | 177 | |
178 | - # create directory for DRM plug-ins | |
179 | - mkdir /data/drm 0774 drm drm | |
178 | + # create directory for DRM plug-ins - give drm the read/write access to | |
179 | + # the following directory. | |
180 | + mkdir /data/drm 0770 drm drm | |
180 | 181 | |
181 | 182 | # If there is no fs-post-data action in the init.<device>.rc file, you |
182 | 183 | # must uncomment this line, otherwise encrypted filesystems |