diff options
author | TheStrix <parthbhatia@lineageos.org> | 2017-02-22 00:18:25 +0100 |
---|---|---|
committer | Dees Troy <dees_troy@teamw.in> | 2017-03-06 17:06:56 +0100 |
commit | 09e8693b7a4f329ee929b0a3754ab07d49ceaebd (patch) | |
tree | 918fbfd06148d63a9f81309452abec992f5349e2 /prebuilt | |
parent | ADBBU: Cleanup string usage/namespace (diff) | |
download | android_bootable_recovery-09e8693b7a4f329ee929b0a3754ab07d49ceaebd.tar android_bootable_recovery-09e8693b7a4f329ee929b0a3754ab07d49ceaebd.tar.gz android_bootable_recovery-09e8693b7a4f329ee929b0a3754ab07d49ceaebd.tar.bz2 android_bootable_recovery-09e8693b7a4f329ee929b0a3754ab07d49ceaebd.tar.lz android_bootable_recovery-09e8693b7a4f329ee929b0a3754ab07d49ceaebd.tar.xz android_bootable_recovery-09e8693b7a4f329ee929b0a3754ab07d49ceaebd.tar.zst android_bootable_recovery-09e8693b7a4f329ee929b0a3754ab07d49ceaebd.zip |
Diffstat (limited to 'prebuilt')
-rw-r--r-- | prebuilt/Android.mk | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/prebuilt/Android.mk b/prebuilt/Android.mk index 887ed5cd3..e34889e23 100644 --- a/prebuilt/Android.mk +++ b/prebuilt/Android.mk @@ -204,6 +204,9 @@ ifeq ($(TARGET_USERIMAGES_USE_F2FS), true) ifeq ($(shell test $(CM_PLATFORM_SDK_VERSION) -ge 4; echo $$?),0) RELINK_SOURCE_FILES += $(TARGET_OUT_EXECUTABLES)/mkfs.f2fs RELINK_SOURCE_FILES += $(TARGET_OUT_SHARED_LIBRARIES)/libf2fs.so + else ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 24; echo $$?),0) + RELINK_SOURCE_FILES += $(TARGET_OUT_EXECUTABLES)/mkfs.f2fs + RELINK_SOURCE_FILES += $(TARGET_OUT_SHARED_LIBRARIES)/libf2fs.so else ifeq ($(shell test $(PLATFORM_SDK_VERSION) -eq 23; echo $$?),0) RELINK_SOURCE_FILES += $(TARGET_RECOVERY_ROOT_OUT)/sbin/mkfs.f2fs else ifneq (,$(filter $(PLATFORM_SDK_VERSION), 21 22)) |