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 | |
Tao Bao | d80a998 | 2016-03-03 11:43:47 -0800 | [diff] [blame] | 17 | # updater (static executable) |
| 18 | # =============================== |
| 19 | # Build a statically-linked binary to include in OTA packages. |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 20 | include $(CLEAR_VARS) |
| 21 | |
Tao Bao | d80a998 | 2016-03-03 11:43:47 -0800 | [diff] [blame] | 22 | updater_src_files := \ |
| 23 | install.cpp \ |
| 24 | blockimg.cpp \ |
| 25 | updater.cpp |
Doug Zongker | ad3db09 | 2009-06-26 13:38:55 -0700 | [diff] [blame] | 26 | |
Tao Bao | 80e46e0 | 2015-06-03 10:49:29 -0700 | [diff] [blame] | 27 | LOCAL_CLANG := true |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 28 | LOCAL_SRC_FILES := $(updater_src_files) |
| 29 | |
Tao Bao | d80a998 | 2016-03-03 11:43:47 -0800 | [diff] [blame] | 30 | LOCAL_STATIC_LIBRARIES += \ |
| 31 | $(TARGET_RECOVERY_UPDATER_LIBS) \ |
| 32 | $(TARGET_RECOVERY_UPDATER_EXTRA_LIBS) \ |
| 33 | libfec \ |
| 34 | libfec_rs \ |
| 35 | libext4_utils_static \ |
| 36 | libsquashfs_utils \ |
Mattias Nissler | 452df6d | 2016-04-04 16:17:01 +0200 | [diff] [blame] | 37 | libcrypto_utils_static \ |
Tao Bao | d80a998 | 2016-03-03 11:43:47 -0800 | [diff] [blame] | 38 | libcrypto_static \ |
| 39 | libapplypatch \ |
| 40 | libbase \ |
| 41 | libotafault \ |
| 42 | libedify \ |
| 43 | libmtdutils \ |
| 44 | libminzip \ |
| 45 | libz \ |
| 46 | libbz \ |
| 47 | libcutils \ |
| 48 | liblog \ |
| 49 | libselinux |
| 50 | |
| 51 | tune2fs_static_libraries := \ |
| 52 | libext2_com_err \ |
| 53 | libext2_blkid \ |
| 54 | libext2_quota \ |
| 55 | libext2_uuid_static \ |
| 56 | libext2_e2p \ |
| 57 | libext2fs |
| 58 | |
| 59 | LOCAL_STATIC_LIBRARIES += \ |
| 60 | libtune2fs \ |
| 61 | $(tune2fs_static_libraries) |
Sami Tolvanen | 0a7b473 | 2015-06-25 10:25:36 +0100 | [diff] [blame] | 62 | |
Doug Zongker | 3d177d0 | 2010-07-01 09:18:44 -0700 | [diff] [blame] | 63 | ifeq ($(TARGET_USERIMAGES_USE_EXT4), true) |
| 64 | LOCAL_CFLAGS += -DUSE_EXT4 |
Doug Zongker | 0d32f25 | 2014-02-13 15:07:56 -0800 | [diff] [blame] | 65 | LOCAL_CFLAGS += -Wno-unused-parameter |
Doug Zongker | 3d177d0 | 2010-07-01 09:18:44 -0700 | [diff] [blame] | 66 | LOCAL_C_INCLUDES += system/extras/ext4_utils |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 67 | LOCAL_STATIC_LIBRARIES += \ |
Joe Onorato | 4eeb379 | 2012-07-23 19:14:30 -0700 | [diff] [blame] | 68 | libsparse_static \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 69 | libz |
Stephen Smalley | 779701d | 2012-02-09 14:13:23 -0500 | [diff] [blame] | 70 | endif |
| 71 | |
Michael Runge | b278c25 | 2014-11-21 00:12:28 -0800 | [diff] [blame] | 72 | LOCAL_C_INCLUDES += external/e2fsprogs/misc |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 73 | LOCAL_C_INCLUDES += $(LOCAL_PATH)/.. |
| 74 | |
Doug Zongker | 2b0fdc6 | 2009-06-19 11:22:06 -0700 | [diff] [blame] | 75 | # Each library in TARGET_RECOVERY_UPDATER_LIBS should have a function |
| 76 | # named "Register_<libname>()". Here we emit a little C function that |
| 77 | # gets #included by updater.c. It calls all those registration |
| 78 | # functions. |
| 79 | |
| 80 | # Devices can also add libraries to TARGET_RECOVERY_UPDATER_EXTRA_LIBS. |
| 81 | # These libs are also linked in with updater, but we don't try to call |
| 82 | # any sort of registration function for these. Use this variable for |
| 83 | # any subsidiary static libraries required for your registered |
| 84 | # extension libs. |
| 85 | |
| 86 | inc := $(call intermediates-dir-for,PACKAGING,updater_extensions)/register.inc |
| 87 | |
Ying Wang | eef790d | 2012-06-11 14:53:08 -0700 | [diff] [blame] | 88 | # Encode the value of TARGET_RECOVERY_UPDATER_LIBS into the filename of the dependency. |
| 89 | # So if TARGET_RECOVERY_UPDATER_LIBS is changed, a new dependency file will be generated. |
| 90 | # Note that we have to remove any existing depency files before creating new one, |
| 91 | # so no obsolete dependecy file gets used if you switch back to an old value. |
| 92 | inc_dep_file := $(inc).dep.$(subst $(space),-,$(sort $(TARGET_RECOVERY_UPDATER_LIBS))) |
| 93 | $(inc_dep_file): stem := $(inc).dep |
| 94 | $(inc_dep_file) : |
| 95 | $(hide) mkdir -p $(dir $@) |
| 96 | $(hide) rm -f $(stem).* |
| 97 | $(hide) touch $@ |
Doug Zongker | 2b0fdc6 | 2009-06-19 11:22:06 -0700 | [diff] [blame] | 98 | |
| 99 | $(inc) : libs := $(TARGET_RECOVERY_UPDATER_LIBS) |
Ying Wang | eef790d | 2012-06-11 14:53:08 -0700 | [diff] [blame] | 100 | $(inc) : $(inc_dep_file) |
Doug Zongker | 2b0fdc6 | 2009-06-19 11:22:06 -0700 | [diff] [blame] | 101 | $(hide) mkdir -p $(dir $@) |
| 102 | $(hide) echo "" > $@ |
Michael Ward | 6242a8b | 2011-07-14 15:06:12 -0700 | [diff] [blame] | 103 | $(hide) $(foreach lib,$(libs),echo "extern void Register_$(lib)(void);" >> $@;) |
Doug Zongker | 2b0fdc6 | 2009-06-19 11:22:06 -0700 | [diff] [blame] | 104 | $(hide) echo "void RegisterDeviceExtensions() {" >> $@ |
Michael Ward | 6242a8b | 2011-07-14 15:06:12 -0700 | [diff] [blame] | 105 | $(hide) $(foreach lib,$(libs),echo " Register_$(lib)();" >> $@;) |
Doug Zongker | 2b0fdc6 | 2009-06-19 11:22:06 -0700 | [diff] [blame] | 106 | $(hide) echo "}" >> $@ |
| 107 | |
Bruce Beare | 4c3c7a9 | 2014-09-12 09:09:52 -0700 | [diff] [blame] | 108 | $(call intermediates-dir-for,EXECUTABLES,updater,,,$(TARGET_PREFER_32_BIT))/updater.o : $(inc) |
Doug Zongker | 2b0fdc6 | 2009-06-19 11:22:06 -0700 | [diff] [blame] | 109 | LOCAL_C_INCLUDES += $(dir $(inc)) |
| 110 | |
Ying Wang | eef790d | 2012-06-11 14:53:08 -0700 | [diff] [blame] | 111 | inc := |
| 112 | inc_dep_file := |
| 113 | |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 114 | LOCAL_MODULE := updater |
| 115 | |
| 116 | LOCAL_FORCE_STATIC_EXECUTABLE := true |
| 117 | |
| 118 | include $(BUILD_EXECUTABLE) |