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