Files
android_bootable_recovery/simg2img/Android.mk
bigbiff ad58e1bfae repack: move sbin to /system ramdisk and update repacking
for android-10

This will support updating the ramdisk to a different
compression format and co-exist with magisk.

We are also cleaning up and removing non android-10
api makefile actions.

We are also moving twrp repacking to its own class. We
check the new ramdisk format and if it's different
we have magisk compress using the new ramdisk format.

Change-Id: I770030aae7797e75817178b2f0fccd9f39dc23af
2020-09-08 10:08:33 -04:00

15 lines
366 B
Makefile
Executable File

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)/system/bin
LOCAL_MODULE_TAGS := optional
LOCAL_SHARED_LIBRARIES := \
libsparse \
libz
LOCAL_CFLAGS := -Werror
include $(BUILD_EXECUTABLE)