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.
15 lines
360 B
Makefile
15 lines
360 B
Makefile
LOCAL_PATH := system/core/libsparse
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_SRC_FILES := simg2img.cpp \
|
|
sparse_crc32.cpp
|
|
LOCAL_MODULE := simg2img_twrp
|
|
LOCAL_MODULE_STEM := simg2img
|
|
LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/sbin
|
|
LOCAL_MODULE_TAGS := optional
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libsparse \
|
|
libz
|
|
LOCAL_CFLAGS := -Werror
|
|
include $(BUILD_EXECUTABLE)
|