diff options
Diffstat (limited to 'Android.mk')
-rw-r--r-- | Android.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk index ed32528d5..dab1b1705 100644 --- a/Android.mk +++ b/Android.mk @@ -17,15 +17,20 @@ LOCAL_PATH := $(call my-dir) ifdef project-path-for ifeq ($(LOCAL_PATH),$(call project-path-for,recovery)) PROJECT_PATH_AGREES := true + BOARD_SEPOLICY_DIRS += bootable/recovery-twrp/sepolicy endif else ifeq ($(LOCAL_PATH),bootable/recovery) PROJECT_PATH_AGREES := true + BOARD_SEPOLICY_DIRS += bootable/recovery/sepolicy endif endif ifeq ($(PROJECT_PATH_AGREES),true) +# Make recovery domain permissive for TWRP +BOARD_SEPOLICY_UNION += twrp.te + include $(CLEAR_VARS) TWRES_PATH := "/twres/" |