-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pull in most TWRP sources Stub out partition management code Make it compile -- probably will not boot Kind of a mess but have to start somewhere
- Loading branch information
Showing
757 changed files
with
165,707 additions
and
109 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
LOCAL_PATH := $(call my-dir) | ||
|
||
include $(CLEAR_VARS) | ||
|
||
BOARD_RECOVERY_DEFINES := BOARD_BML_BOOT BOARD_BML_RECOVERY | ||
|
||
$(foreach board_define,$(BOARD_RECOVERY_DEFINES), \ | ||
$(if $($(board_define)), \ | ||
$(eval LOCAL_CFLAGS += -D$(board_define)=\"$($(board_define))\") \ | ||
) \ | ||
) | ||
|
||
LOCAL_STATIC_LIBRARIES := libcrecovery | ||
LOCAL_C_INCLUDES := bootable/recovery/libcrecovery | ||
|
||
LOCAL_SRC_FILES := bmlutils.c | ||
LOCAL_MODULE := libbmlutils | ||
LOCAL_MODULE_TAGS := eng | ||
include $(BUILD_STATIC_LIBRARY) | ||
|
||
#Added for building TWRP dynamic: | ||
include $(CLEAR_VARS) | ||
|
||
BOARD_RECOVERY_DEFINES := BOARD_BML_BOOT BOARD_BML_RECOVERY | ||
|
||
$(foreach board_define,$(BOARD_RECOVERY_DEFINES), \ | ||
$(if $($(board_define)), \ | ||
$(eval LOCAL_CFLAGS += -D$(board_define)=\"$($(board_define))\") \ | ||
) \ | ||
) | ||
|
||
LOCAL_SRC_FILES := bmlutils.c | ||
LOCAL_MODULE := libbmlutils | ||
LOCAL_MODULE_TAGS := eng | ||
include $(BUILD_SHARED_LIBRARY) |
Oops, something went wrong.