diff options
| author | Captain Throwback <captainthrowback@hotmail.com> | 2019-12-23 12:53:09 -0500 |
|---|---|---|
| committer | nebrassy <nebras30@gmail.com> | 2020-04-26 11:50:42 +0200 |
| commit | 3d317577d455ac00409f08d3ba8d1fb29b60e56f (patch) | |
| tree | 1d8a76e93221954aace8aac93021d9d618714a4b | |
| parent | 1de733f105a33f181b5ae8ba2c2a484518a6d8bf (diff) | |
magisk-prebuilt: add static resetprop binaries
- Built from Magisk source a/o 09-Mar-2020
Change-Id: I20b96443706a7b86b6632a9f7b4a7e45e7ac6d19
| -rw-r--r-- | Android.mk | 26 | ||||
| -rw-r--r-- | magiskboot_arm (renamed from magiskbootarm) | bin | 298672 -> 298672 bytes | |||
| -rw-r--r-- | magiskboot_x86 (renamed from magiskbootx86) | bin | 436232 -> 436232 bytes | |||
| -rw-r--r-- | resetprop_arm | bin | 0 -> 81456 bytes | |||
| -rw-r--r-- | resetprop_x86 | bin | 0 -> 169728 bytes |
5 files changed, 23 insertions, 3 deletions
@@ -1,11 +1,12 @@ LOCAL_PATH := $(call my-dir) -include $(CLEAR_VARS) +# magiskboot +include $(CLEAR_VARS) ifeq ($(TW_INCLUDE_REPACKTOOLS), true) ifneq (,$(filter $(TARGET_ARCH), x86 x86_64)) - MAGISKBOOT_TARGET := magiskbootx86 + MAGISKBOOT_TARGET := magiskboot_x86 else - MAGISKBOOT_TARGET := magiskbootarm + MAGISKBOOT_TARGET := magiskboot_arm endif #magiskboot prebuilt include $(CLEAR_VARS) @@ -17,3 +18,22 @@ ifeq ($(TW_INCLUDE_REPACKTOOLS), true) LOCAL_SRC_FILES := $(LOCAL_MODULE) include $(BUILD_PREBUILT) endif + +# resetprop +include $(CLEAR_VARS) +ifeq ($(TW_INCLUDE_RESETPROP), true) + ifneq (,$(filter $(TARGET_ARCH), x86 x86_64)) + RESETPROP_TARGET := resetprop_x86 + else + RESETPROP_TARGET := resetprop_arm + endif + #resetprop prebuilt + include $(CLEAR_VARS) + LOCAL_MODULE := $(RESETPROP_TARGET) + LOCAL_MODULE_STEM := resetprop + LOCAL_MODULE_TAGS := eng + LOCAL_MODULE_CLASS := RECOVERY_EXECUTABLES + LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/sbin + LOCAL_SRC_FILES := $(LOCAL_MODULE) + include $(BUILD_PREBUILT) +endif diff --git a/magiskbootarm b/magiskboot_arm Binary files differindex 23a379e..23a379e 100644 --- a/magiskbootarm +++ b/magiskboot_arm diff --git a/magiskbootx86 b/magiskboot_x86 Binary files differindex e8249c4..e8249c4 100644 --- a/magiskbootx86 +++ b/magiskboot_x86 diff --git a/resetprop_arm b/resetprop_arm Binary files differnew file mode 100644 index 0000000..72af4bf --- /dev/null +++ b/resetprop_arm diff --git a/resetprop_x86 b/resetprop_x86 Binary files differnew file mode 100644 index 0000000..aa5aebc --- /dev/null +++ b/resetprop_x86 |
