diff options
| author | Alex Deymo <deymo@google.com> | 2016-08-12 18:07:07 +0000 |
|---|---|---|
| committer | android-build-merger <android-build-merger@google.com> | 2016-08-12 18:07:07 +0000 |
| commit | 2551f7859a4ec1d2b384ec1c729c62d90b21a9ff (patch) | |
| tree | 430c137020e3dcc26fa0064c1b5d48b85369d232 | |
| parent | 2a276b35e001423d09ac9d81fea6adb40f60ab98 (diff) | |
| parent | 8352159ddb0cced7075dbf8310ab621d28859fac (diff) | |
| download | platform_hardware_qcom_bootctrl-nougat-mr2.1-release.tar.gz platform_hardware_qcom_bootctrl-nougat-mr2.1-release.tar.bz2 platform_hardware_qcom_bootctrl-nougat-mr2.1-release.zip | |
Build a static copy of bootctrl for recovery.android-7.1.2_r9android-7.1.2_r8android-7.1.2_r6android-7.1.2_r5android-7.1.2_r4android-7.1.2_r39android-7.1.2_r38android-7.1.2_r37android-7.1.2_r36android-7.1.2_r33android-7.1.2_r32android-7.1.2_r30android-7.1.2_r3android-7.1.2_r29android-7.1.2_r28android-7.1.2_r27android-7.1.2_r25android-7.1.2_r24android-7.1.2_r23android-7.1.2_r2android-7.1.2_r19android-7.1.2_r18android-7.1.2_r17android-7.1.2_r16android-7.1.2_r15android-7.1.2_r14android-7.1.2_r13android-7.1.2_r12android-7.1.2_r11android-7.1.2_r10android-7.1.2_r1nougat-mr2.3-releasenougat-mr2.2-releasenougat-mr2.1-releasenougat-mr2-security-releasenougat-mr2-releasenougat-mr2-pixel-releasenougat-mr2-dev
am: 8352159ddb
Change-Id: I29296d3214e9ba5b4cda3fdb1d604ac3cb0269f2
| -rw-r--r-- | Android.mk | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -1,5 +1,7 @@ ifneq ($(filter msm8996,$(TARGET_BOARD_PLATFORM)),) LOCAL_PATH := $(call my-dir) + +# HAL Shared library for the target. Used by libhardware. include $(CLEAR_VARS) LOCAL_C_INCLUDES += hardware/libhardware/include LOCAL_C_INCLUDES += $(TARGET_OUT_HEADERS)/gpt-utils/inc @@ -9,4 +11,15 @@ LOCAL_SRC_FILES := boot_control.cpp LOCAL_MODULE_RELATIVE_PATH := hw LOCAL_MODULE := bootctrl.$(TARGET_BOARD_PLATFORM) include $(BUILD_SHARED_LIBRARY) + +# Static library for the target. Used by update_engine_sideload from recovery. +include $(CLEAR_VARS) +LOCAL_C_INCLUDES += hardware/libhardware/include +LOCAL_C_INCLUDES += $(TARGET_OUT_HEADERS)/gpt-utils/inc +LOCAL_CFLAGS += -Wall -Werror +LOCAL_SHARED_LIBRARIES += liblog librecovery_updater_msm libcutils +LOCAL_SRC_FILES := boot_control.cpp +LOCAL_MODULE := bootctrl.$(TARGET_BOARD_PLATFORM) +include $(BUILD_STATIC_LIBRARY) + endif |
