diff options
author | big biff <bigbiff@teamw.in> | 2019-03-08 00:52:21 +0100 |
---|---|---|
committer | Gerrit Code Review <gerrit2@gerrit.omnirom.org> | 2019-03-08 00:52:21 +0100 |
commit | 7812dd49e1156c3d4a83ceb3e278d4ad4418a7ad (patch) | |
tree | 70ca2b17095575fd8e186902af151f08247c2ed1 /prebuilt | |
parent | mksh: add mkshrc when using TW_USE_TOOLBOX (diff) | |
parent | vold_decrypt: Add android 9.0 support (diff) | |
download | android_bootable_recovery-7812dd49e1156c3d4a83ceb3e278d4ad4418a7ad.tar android_bootable_recovery-7812dd49e1156c3d4a83ceb3e278d4ad4418a7ad.tar.gz android_bootable_recovery-7812dd49e1156c3d4a83ceb3e278d4ad4418a7ad.tar.bz2 android_bootable_recovery-7812dd49e1156c3d4a83ceb3e278d4ad4418a7ad.tar.lz android_bootable_recovery-7812dd49e1156c3d4a83ceb3e278d4ad4418a7ad.tar.xz android_bootable_recovery-7812dd49e1156c3d4a83ceb3e278d4ad4418a7ad.tar.zst android_bootable_recovery-7812dd49e1156c3d4a83ceb3e278d4ad4418a7ad.zip |
Diffstat (limited to 'prebuilt')
-rw-r--r-- | prebuilt/Android.mk | 15 | ||||
-rwxr-xr-x | prebuilt/vdc_pie-arm | bin | 0 -> 46588 bytes | |||
-rwxr-xr-x | prebuilt/vdc_pie-arm64 | bin | 0 -> 69824 bytes |
3 files changed, 15 insertions, 0 deletions
diff --git a/prebuilt/Android.mk b/prebuilt/Android.mk index 933326292..5dc110e91 100644 --- a/prebuilt/Android.mk +++ b/prebuilt/Android.mk @@ -511,3 +511,18 @@ LOCAL_MODULE_CLASS := RECOVERY_EXECUTABLES LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/sbin LOCAL_SRC_FILES := $(LOCAL_MODULE) include $(BUILD_PREBUILT) + +ifeq ($(TW_INCLUDE_CRYPTO), true) + ifneq ($(TW_CRYPTO_USE_SYSTEM_VOLD),) + ifneq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0) + # Prebuilt vdc_pie for pre-Pie SDK Platforms + include $(CLEAR_VARS) + LOCAL_MODULE := vdc_pie + LOCAL_MODULE_TAGS := eng + LOCAL_MODULE_CLASS := RECOVERY_EXECUTABLES + LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/sbin + LOCAL_SRC_FILES := vdc_pie-$(TARGET_ARCH) + include $(BUILD_PREBUILT) + endif + endif +endif diff --git a/prebuilt/vdc_pie-arm b/prebuilt/vdc_pie-arm Binary files differnew file mode 100755 index 000000000..cf05cad53 --- /dev/null +++ b/prebuilt/vdc_pie-arm diff --git a/prebuilt/vdc_pie-arm64 b/prebuilt/vdc_pie-arm64 Binary files differnew file mode 100755 index 000000000..46231402f --- /dev/null +++ b/prebuilt/vdc_pie-arm64 |