Pull in most TWRP sources Stub out partition management code Make it compile -- probably will not boot Kind of a mess but have to start somewhere
14 lines
247 B
Makefile
14 lines
247 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
ifneq ($(TARGET_SIMULATOR),true)
|
|
ifeq ($(TARGET_ARCH),arm)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_SRC_FILES := system.c popen.c
|
|
LOCAL_MODULE := libcrecovery
|
|
LOCAL_MODULE_TAGS := eng
|
|
include $(BUILD_STATIC_LIBRARY)
|
|
|
|
endif
|
|
endif
|