blob: e4d73a45aeefff0ada60bde1f5611aac1919478e [file] [log] [blame]
Doug Zongker9931f7f2009-06-10 14:11:53 -07001# Copyright 2009 The Android Open Source Project
Tao Baoba9a42a2015-06-23 23:23:33 -07002#
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 Zongker9931f7f2009-06-10 14:11:53 -070014
15LOCAL_PATH := $(call my-dir)
16
Tao Baod80a9982016-03-03 11:43:47 -080017# updater (static executable)
18# ===============================
19# Build a statically-linked binary to include in OTA packages.
Doug Zongker9931f7f2009-06-10 14:11:53 -070020include $(CLEAR_VARS)
21
Tao Baod80a9982016-03-03 11:43:47 -080022updater_src_files := \
23 install.cpp \
24 blockimg.cpp \
25 updater.cpp
Doug Zongkerad3db092009-06-26 13:38:55 -070026
Tao Bao80e46e02015-06-03 10:49:29 -070027LOCAL_CLANG := true
Doug Zongker9931f7f2009-06-10 14:11:53 -070028LOCAL_SRC_FILES := $(updater_src_files)
29
Tao Baod80a9982016-03-03 11:43:47 -080030LOCAL_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 \
Josh Gao073164f2016-08-05 15:59:05 -070037 libcrypto_utils \
38 libcrypto \
Tao Baod80a9982016-03-03 11:43:47 -080039 libapplypatch \
Tao Baod80a9982016-03-03 11:43:47 -080040 libotafault \
41 libedify \
Tao Baod80a9982016-03-03 11:43:47 -080042 libminzip \
Elliott Hughes63a31922016-06-09 17:41:22 -070043 libmounts \
Tao Baod80a9982016-03-03 11:43:47 -080044 libz \
45 libbz \
46 libcutils \
47 liblog \
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -070048 libselinux \
49 libbase \
50 liblog
Tao Baod80a9982016-03-03 11:43:47 -080051
52tune2fs_static_libraries := \
53 libext2_com_err \
54 libext2_blkid \
55 libext2_quota \
56 libext2_uuid_static \
57 libext2_e2p \
58 libext2fs
59
60LOCAL_STATIC_LIBRARIES += \
61 libtune2fs \
62 $(tune2fs_static_libraries)
Sami Tolvanen0a7b4732015-06-25 10:25:36 +010063
Doug Zongker0d32f252014-02-13 15:07:56 -080064LOCAL_CFLAGS += -Wno-unused-parameter
Doug Zongker3d177d02010-07-01 09:18:44 -070065LOCAL_C_INCLUDES += system/extras/ext4_utils
Joe Onorato6396e702012-05-31 23:21:46 -070066LOCAL_STATIC_LIBRARIES += \
Joe Onorato4eeb3792012-07-23 19:14:30 -070067 libsparse_static \
Joe Onorato6396e702012-05-31 23:21:46 -070068 libz
Stephen Smalley779701d2012-02-09 14:13:23 -050069
Michael Rungeb278c252014-11-21 00:12:28 -080070LOCAL_C_INCLUDES += external/e2fsprogs/misc
Doug Zongker9931f7f2009-06-10 14:11:53 -070071LOCAL_C_INCLUDES += $(LOCAL_PATH)/..
72
Doug Zongker2b0fdc62009-06-19 11:22:06 -070073# Each library in TARGET_RECOVERY_UPDATER_LIBS should have a function
74# named "Register_<libname>()". Here we emit a little C function that
75# gets #included by updater.c. It calls all those registration
76# functions.
77
78# Devices can also add libraries to TARGET_RECOVERY_UPDATER_EXTRA_LIBS.
79# These libs are also linked in with updater, but we don't try to call
80# any sort of registration function for these. Use this variable for
81# any subsidiary static libraries required for your registered
82# extension libs.
83
84inc := $(call intermediates-dir-for,PACKAGING,updater_extensions)/register.inc
85
Ying Wangeef790d2012-06-11 14:53:08 -070086# Encode the value of TARGET_RECOVERY_UPDATER_LIBS into the filename of the dependency.
87# So if TARGET_RECOVERY_UPDATER_LIBS is changed, a new dependency file will be generated.
88# Note that we have to remove any existing depency files before creating new one,
89# so no obsolete dependecy file gets used if you switch back to an old value.
90inc_dep_file := $(inc).dep.$(subst $(space),-,$(sort $(TARGET_RECOVERY_UPDATER_LIBS)))
91$(inc_dep_file): stem := $(inc).dep
92$(inc_dep_file) :
93 $(hide) mkdir -p $(dir $@)
94 $(hide) rm -f $(stem).*
95 $(hide) touch $@
Doug Zongker2b0fdc62009-06-19 11:22:06 -070096
97$(inc) : libs := $(TARGET_RECOVERY_UPDATER_LIBS)
Ying Wangeef790d2012-06-11 14:53:08 -070098$(inc) : $(inc_dep_file)
Doug Zongker2b0fdc62009-06-19 11:22:06 -070099 $(hide) mkdir -p $(dir $@)
100 $(hide) echo "" > $@
Michael Ward6242a8b2011-07-14 15:06:12 -0700101 $(hide) $(foreach lib,$(libs),echo "extern void Register_$(lib)(void);" >> $@;)
Doug Zongker2b0fdc62009-06-19 11:22:06 -0700102 $(hide) echo "void RegisterDeviceExtensions() {" >> $@
Michael Ward6242a8b2011-07-14 15:06:12 -0700103 $(hide) $(foreach lib,$(libs),echo " Register_$(lib)();" >> $@;)
Doug Zongker2b0fdc62009-06-19 11:22:06 -0700104 $(hide) echo "}" >> $@
105
Bruce Beare4c3c7a92014-09-12 09:09:52 -0700106$(call intermediates-dir-for,EXECUTABLES,updater,,,$(TARGET_PREFER_32_BIT))/updater.o : $(inc)
Doug Zongker2b0fdc62009-06-19 11:22:06 -0700107LOCAL_C_INCLUDES += $(dir $(inc))
108
Ying Wangeef790d2012-06-11 14:53:08 -0700109inc :=
110inc_dep_file :=
111
Doug Zongker9931f7f2009-06-10 14:11:53 -0700112LOCAL_MODULE := updater
113
114LOCAL_FORCE_STATIC_EXECUTABLE := true
115
116include $(BUILD_EXECUTABLE)