This allows flame to boot TWRP. Still will need to work on super partition for vendor and system access. The plan will be to cherry-pick any updates to android-9.0 through gerrit.twrp.me to this branch as a WIP.
14 lines
340 B
Makefile
14 lines
340 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
ifeq ($(TW_INCLUDE_INJECTTWRP), true)
|
|
LOCAL_SRC_FILES:= \
|
|
injecttwrp.c
|
|
LOCAL_CFLAGS:= -g -c -W
|
|
LOCAL_MODULE:=injecttwrp
|
|
LOCAL_MODULE_TAGS:= optional
|
|
LOCAL_MODULE_CLASS := RECOVERY_EXECUTABLES
|
|
LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/sbin
|
|
include $(BUILD_EXECUTABLE)
|
|
endif
|