Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 1 | # Copyright 2009 The Android Open Source Project |
Tao Bao | ba9a42a | 2015-06-23 23:23:33 -0700 | [diff] [blame] | 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 14 | |
| 15 | LOCAL_PATH := $(call my-dir) |
| 16 | |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 17 | ifneq ($(wildcard external/e2fsprogs/misc/tune2fs.h),) |
| 18 | tune2fs_static_libraries := \ |
| 19 | libext2_com_err \ |
| 20 | libext2_blkid \ |
| 21 | libext2_quota \ |
| 22 | libext2_uuid \ |
| 23 | libext2_e2p \ |
| 24 | libext2fs |
| 25 | LOCAL_CFLAGS += -DHAVE_LIBTUNE2FS |
| 26 | else |
| 27 | tune2fs_static_libraries := |
| 28 | endif |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 29 | |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 30 | updater_common_static_libraries := \ |
| 31 | libapplypatch \ |
Sen Jiang | 25c5697 | 2016-05-10 15:23:25 -0700 | [diff] [blame] | 32 | libbspatch \ |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 33 | libedify \ |
Tianjie Xu | 8cf5c8f | 2016-09-08 20:10:11 -0700 | [diff] [blame] | 34 | libziparchive \ |
| 35 | libotautil \ |
Tao Bao | bedf5fc | 2016-11-18 12:01:26 -0800 | [diff] [blame] | 36 | libbootloader_message \ |
Tianjie Xu | 8cf5c8f | 2016-09-08 20:10:11 -0700 | [diff] [blame] | 37 | libutils \ |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 38 | libmounts \ |
| 39 | libotafault \ |
Alex Deymo | 3165366 | 2017-01-11 14:02:13 -0800 | [diff] [blame] | 40 | libext4_utils \ |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 41 | libfec \ |
| 42 | libfec_rs \ |
Tao Bao | bedf5fc | 2016-11-18 12:01:26 -0800 | [diff] [blame] | 43 | libfs_mgr \ |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 44 | liblog \ |
| 45 | libselinux \ |
Alex Deymo | 67f3aa8 | 2017-01-11 14:38:20 -0800 | [diff] [blame] | 46 | libsparse \ |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 47 | libsquashfs_utils \ |
| 48 | libbz \ |
| 49 | libz \ |
| 50 | libbase \ |
| 51 | libcrypto \ |
| 52 | libcrypto_utils \ |
| 53 | libcutils \ |
Tao Bao | d80a998 | 2016-03-03 11:43:47 -0800 | [diff] [blame] | 54 | libtune2fs \ |
Tianjie Xu | 107a34f | 2017-06-29 17:04:21 -0700 | [diff] [blame] | 55 | libbrotli \ |
Tao Bao | d80a998 | 2016-03-03 11:43:47 -0800 | [diff] [blame] | 56 | $(tune2fs_static_libraries) |
Sami Tolvanen | 0a7b473 | 2015-06-25 10:25:36 +0100 | [diff] [blame] | 57 | |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 58 | # libupdater (static library) |
| 59 | # =============================== |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 60 | include $(CLEAR_VARS) |
| 61 | |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 62 | LOCAL_MODULE := libupdater |
Doug Zongker | ad3db09 | 2009-06-26 13:38:55 -0700 | [diff] [blame] | 63 | |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 64 | LOCAL_SRC_FILES := \ |
| 65 | install.cpp \ |
| 66 | blockimg.cpp |
Doug Zongker | 8edb00c | 2009-06-11 17:21:44 -0700 | [diff] [blame] | 67 | |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 68 | LOCAL_C_INCLUDES := \ |
| 69 | $(LOCAL_PATH)/.. \ |
| 70 | $(LOCAL_PATH)/include \ |
| 71 | external/e2fsprogs/misc |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 72 | |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 73 | LOCAL_CFLAGS := \ |
Tianjie Xu | c89d1e7 | 2017-08-28 14:15:07 -0700 | [diff] [blame] | 74 | -Wall \ |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 75 | -Werror |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 76 | |
andi34 | 0ef6492 | 2015-05-09 10:48:52 -0700 | [diff] [blame] | 77 | ifeq ($(BOARD_SUPPRESS_EMMC_WIPE),true) |
| 78 | LOCAL_CFLAGS += -DSUPPRESS_EMMC_WIPE |
| 79 | endif |
| 80 | |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 81 | LOCAL_EXPORT_C_INCLUDE_DIRS := \ |
| 82 | $(LOCAL_PATH)/include |
Stephen Smalley | 779701d | 2012-02-09 14:13:23 -0500 | [diff] [blame] | 83 | |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 84 | LOCAL_STATIC_LIBRARIES := \ |
| 85 | $(updater_common_static_libraries) |
sndnvaps | 7dde36d | 2016-10-04 18:09:37 +0800 | [diff] [blame] | 86 | |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 87 | include $(BUILD_STATIC_LIBRARY) |
Ethan Yonker | 34ae483 | 2016-08-24 15:32:18 -0500 | [diff] [blame] | 88 | |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 89 | # updater (static executable) |
| 90 | # =============================== |
| 91 | include $(CLEAR_VARS) |
Michael Runge | b278c25 | 2014-11-21 00:12:28 -0800 | [diff] [blame] | 92 | |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 93 | LOCAL_MODULE := updater |
| 94 | |
| 95 | LOCAL_SRC_FILES := \ |
| 96 | updater.cpp |
| 97 | |
| 98 | LOCAL_C_INCLUDES := \ |
| 99 | $(LOCAL_PATH)/.. \ |
| 100 | $(LOCAL_PATH)/include |
| 101 | |
| 102 | LOCAL_CFLAGS := \ |
Tianjie Xu | c89d1e7 | 2017-08-28 14:15:07 -0700 | [diff] [blame] | 103 | -Wall \ |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 104 | -Werror |
| 105 | |
| 106 | LOCAL_STATIC_LIBRARIES := \ |
| 107 | libupdater \ |
| 108 | $(TARGET_RECOVERY_UPDATER_LIBS) \ |
| 109 | $(TARGET_RECOVERY_UPDATER_EXTRA_LIBS) \ |
| 110 | $(updater_common_static_libraries) |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 111 | |
Doug Zongker | 2b0fdc6 | 2009-06-19 11:22:06 -0700 | [diff] [blame] | 112 | # Each library in TARGET_RECOVERY_UPDATER_LIBS should have a function |
| 113 | # named "Register_<libname>()". Here we emit a little C function that |
| 114 | # gets #included by updater.c. It calls all those registration |
| 115 | # functions. |
| 116 | |
| 117 | # Devices can also add libraries to TARGET_RECOVERY_UPDATER_EXTRA_LIBS. |
| 118 | # These libs are also linked in with updater, but we don't try to call |
| 119 | # any sort of registration function for these. Use this variable for |
| 120 | # any subsidiary static libraries required for your registered |
| 121 | # extension libs. |
| 122 | |
Dan Willemsen | edec27a | 2017-03-21 16:41:14 -0700 | [diff] [blame] | 123 | LOCAL_MODULE_CLASS := EXECUTABLES |
| 124 | inc := $(call local-generated-sources-dir)/register.inc |
Doug Zongker | 2b0fdc6 | 2009-06-19 11:22:06 -0700 | [diff] [blame] | 125 | |
| 126 | $(inc) : libs := $(TARGET_RECOVERY_UPDATER_LIBS) |
Dan Willemsen | edec27a | 2017-03-21 16:41:14 -0700 | [diff] [blame] | 127 | $(inc) : |
Doug Zongker | 2b0fdc6 | 2009-06-19 11:22:06 -0700 | [diff] [blame] | 128 | $(hide) mkdir -p $(dir $@) |
| 129 | $(hide) echo "" > $@ |
Michael Ward | 6242a8b | 2011-07-14 15:06:12 -0700 | [diff] [blame] | 130 | $(hide) $(foreach lib,$(libs),echo "extern void Register_$(lib)(void);" >> $@;) |
Doug Zongker | 2b0fdc6 | 2009-06-19 11:22:06 -0700 | [diff] [blame] | 131 | $(hide) echo "void RegisterDeviceExtensions() {" >> $@ |
Michael Ward | 6242a8b | 2011-07-14 15:06:12 -0700 | [diff] [blame] | 132 | $(hide) $(foreach lib,$(libs),echo " Register_$(lib)();" >> $@;) |
Doug Zongker | 2b0fdc6 | 2009-06-19 11:22:06 -0700 | [diff] [blame] | 133 | $(hide) echo "}" >> $@ |
| 134 | |
Dan Willemsen | edec27a | 2017-03-21 16:41:14 -0700 | [diff] [blame] | 135 | LOCAL_GENERATED_SOURCES := $(inc) |
Doug Zongker | 2b0fdc6 | 2009-06-19 11:22:06 -0700 | [diff] [blame] | 136 | |
Ying Wang | eef790d | 2012-06-11 14:53:08 -0700 | [diff] [blame] | 137 | inc := |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 138 | |
| 139 | LOCAL_FORCE_STATIC_EXECUTABLE := true |
| 140 | |
| 141 | include $(BUILD_EXECUTABLE) |