summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDees_Troy <dees_troy@teamw.in>2013-01-07 22:08:04 +0100
committerGerrit Code Review <gerrit@5.9.244.119>2013-01-07 22:08:04 +0100
commit35a0cc383003268a9e97f6ca0b8740000b4f86ca (patch)
tree810f0adfd37d0e908659c80270677b68941c96df
parentMerge "Work around MEMERASE ioctl for rk3066 compatibility" into jb-wip (diff)
parentFix up libmincrypt rules for Android 4.2 (diff)
downloadandroid_bootable_recovery-35a0cc383003268a9e97f6ca0b8740000b4f86ca.tar
android_bootable_recovery-35a0cc383003268a9e97f6ca0b8740000b4f86ca.tar.gz
android_bootable_recovery-35a0cc383003268a9e97f6ca0b8740000b4f86ca.tar.bz2
android_bootable_recovery-35a0cc383003268a9e97f6ca0b8740000b4f86ca.tar.lz
android_bootable_recovery-35a0cc383003268a9e97f6ca0b8740000b4f86ca.tar.xz
android_bootable_recovery-35a0cc383003268a9e97f6ca0b8740000b4f86ca.tar.zst
android_bootable_recovery-35a0cc383003268a9e97f6ca0b8740000b4f86ca.zip
-rw-r--r--twmincrypt/Android.mk5
1 files changed, 5 insertions, 0 deletions
diff --git a/twmincrypt/Android.mk b/twmincrypt/Android.mk
index 0e1fbfd9a..38c805683 100644
--- a/twmincrypt/Android.mk
+++ b/twmincrypt/Android.mk
@@ -8,4 +8,9 @@ include $(CLEAR_VARS)
LOCAL_MODULE_TAGS:= eng
LOCAL_MODULE := libmincrypt
LOCAL_SRC_FILES := ../../../system/core/libmincrypt/rsa.c ../../../system/core/libmincrypt/sha.c
+
+ifneq ($(wildcard system/core/libmincrypt/rsa_e_3.c),)
+LOCAL_SRC_FILES += ../../../system/core/libmincrypt/rsa_e_3.c ../../../system/core/libmincrypt/rsa_e_f4.c
+endif
+
include $(BUILD_SHARED_LIBRARY)