Add option to create metadata mount point
am: fe305ab286
Change-Id: If035ab553e75afd4ac6e07ee1c97d6218c3ce397
This commit is contained in:
commit
36bd69f826
2 changed files with 7 additions and 0 deletions
|
|
@ -93,6 +93,9 @@ ifdef BOARD_USES_PRODUCTIMAGE
|
|||
else
|
||||
LOCAL_POST_INSTALL_CMD += ; ln -sf /system/product $(TARGET_ROOT_OUT)/product
|
||||
endif
|
||||
ifdef BOARD_USES_METADATA_PARTITION
|
||||
LOCAL_POST_INSTALL_CMD += ; mkdir -p $(TARGET_ROOT_OUT)/metadata
|
||||
endif
|
||||
|
||||
# For /odm partition.
|
||||
LOCAL_POST_INSTALL_CMD += ; mkdir -p $(TARGET_ROOT_OUT)/odm
|
||||
|
|
|
|||
|
|
@ -372,6 +372,10 @@ on post-fs
|
|||
# create the lost+found directories, so as to enforce our permissions
|
||||
mkdir /cache/lost+found 0770 root root
|
||||
|
||||
restorecon_recursive /metadata
|
||||
mkdir /metadata/vold
|
||||
chmod 0700 /metadata/vold
|
||||
|
||||
on late-fs
|
||||
# Ensure that tracefs has the correct permissions.
|
||||
# This does not work correctly if it is called in post-fs.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue