blob: 4ebb5483a7e610836caa62641bae4b8b5895695b [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
17updater_src_files := \
Tao Baoba9a42a2015-06-23 23:23:33 -070018 install.cpp \
19 blockimg.cpp \
20 updater.cpp
Doug Zongker9931f7f2009-06-10 14:11:53 -070021
22#
Doug Zongkerad3db092009-06-26 13:38:55 -070023# Build a statically-linked binary to include in OTA packages
Doug Zongker9931f7f2009-06-10 14:11:53 -070024#
25include $(CLEAR_VARS)
26
Doug Zongkerad3db092009-06-26 13:38:55 -070027# 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.)
30LOCAL_MODULE_TAGS := eng
31
Tao Bao80e46e02015-06-03 10:49:29 -070032LOCAL_CLANG := true
33
Doug Zongker9931f7f2009-06-10 14:11:53 -070034LOCAL_SRC_FILES := $(updater_src_files)
35
Sami Tolvanen0a7b4732015-06-25 10:25:36 +010036LOCAL_STATIC_LIBRARIES += libfec libfec_rs libext4_utils_static libsquashfs_utils libcrypto_static
37
Doug Zongker3d177d02010-07-01 09:18:44 -070038ifeq ($(TARGET_USERIMAGES_USE_EXT4), true)
39LOCAL_CFLAGS += -DUSE_EXT4
Doug Zongker0d32f252014-02-13 15:07:56 -080040LOCAL_CFLAGS += -Wno-unused-parameter
Doug Zongker3d177d02010-07-01 09:18:44 -070041LOCAL_C_INCLUDES += system/extras/ext4_utils
Joe Onorato6396e702012-05-31 23:21:46 -070042LOCAL_STATIC_LIBRARIES += \
Dees_Troyaf504492012-10-11 12:00:29 -040043 libext4_utils \
Joe Onorato6396e702012-05-31 23:21:46 -070044 libz
Dees_Troy43681d42013-02-22 21:26:35 +000045ifneq ($(wildcard system/core/libmincrypt/rsa_e_3.c),)
46LOCAL_STATIC_LIBRARIES = \
47 libext4_utils_static \
48 libsparse_static \
49 libz
50endif
Dees Troyce8d8932013-11-03 02:48:43 +000051ifneq ($(wildcard system/core/include/mincrypt/sha256.h),)
52LOCAL_STATIC_LIBRARIES = \
53 libext4_utils_static \
54 libsparse_static \
55 libz
56endif
Tom Marshall56fe5e72015-04-17 05:23:00 -070057ifneq ($(wildcard external/lz4/Android.mk),)
58 LOCAL_STATIC_LIBRARIES += liblz4-static
59endif
Stephen Smalley779701d2012-02-09 14:13:23 -050060endif
61
Doug Zongker3d177d02010-07-01 09:18:44 -070062LOCAL_STATIC_LIBRARIES += $(TARGET_RECOVERY_UPDATER_LIBS) $(TARGET_RECOVERY_UPDATER_EXTRA_LIBS)
Jed Estepf1fc48c2015-12-15 16:04:53 -080063LOCAL_STATIC_LIBRARIES += libapplypatch libbase libotafault libedify libmtdutils libminzip libz
Dees_Troy76a1d412013-04-20 13:54:35 +000064LOCAL_STATIC_LIBRARIES += libflashutils libmmcutils libbmlutils
Dees Troyce8d8932013-11-03 02:48:43 +000065LOCAL_STATIC_LIBRARIES += libmincrypttwrp libbz
Dan Alberte49a9e52015-05-19 11:33:18 -070066LOCAL_STATIC_LIBRARIES += libcutils liblog libc
Kenny Root7eb75672012-10-16 10:47:27 -070067LOCAL_STATIC_LIBRARIES += libselinux
Ethan Yonker34ae4832016-08-24 15:32:18 -050068
Doug Zongker9931f7f2009-06-10 14:11:53 -070069LOCAL_STATIC_LIBRARIES += libselinux
Michael Rungeb278c252014-11-21 00:12:28 -080070tune2fs_static_libraries := \
71 libext2_com_err \
72 libext2_blkid \
73 libext2_quota \
74 libext2_uuid_static \
75 libext2_e2p \
76 libext2fs
Ethan Yonker7e1b9862015-03-19 14:10:01 -050077ifneq ($(wildcard external/e2fsprogs/misc/tune2fs.h),)
78 LOCAL_STATIC_LIBRARIES += libtune2fs $(tune2fs_static_libraries)
79 LOCAL_CFLAGS += -DHAVE_LIBTUNE2FS
80endif
Michael Rungeb278c252014-11-21 00:12:28 -080081
82LOCAL_C_INCLUDES += external/e2fsprogs/misc
Doug Zongker9931f7f2009-06-10 14:11:53 -070083LOCAL_C_INCLUDES += $(LOCAL_PATH)/..
84
Doug Zongker2b0fdc62009-06-19 11:22:06 -070085# Each library in TARGET_RECOVERY_UPDATER_LIBS should have a function
86# named "Register_<libname>()". Here we emit a little C function that
87# gets #included by updater.c. It calls all those registration
88# functions.
89
90# Devices can also add libraries to TARGET_RECOVERY_UPDATER_EXTRA_LIBS.
91# These libs are also linked in with updater, but we don't try to call
92# any sort of registration function for these. Use this variable for
93# any subsidiary static libraries required for your registered
94# extension libs.
95
96inc := $(call intermediates-dir-for,PACKAGING,updater_extensions)/register.inc
97
Ying Wangeef790d2012-06-11 14:53:08 -070098# Encode the value of TARGET_RECOVERY_UPDATER_LIBS into the filename of the dependency.
99# So if TARGET_RECOVERY_UPDATER_LIBS is changed, a new dependency file will be generated.
100# Note that we have to remove any existing depency files before creating new one,
101# so no obsolete dependecy file gets used if you switch back to an old value.
102inc_dep_file := $(inc).dep.$(subst $(space),-,$(sort $(TARGET_RECOVERY_UPDATER_LIBS)))
103$(inc_dep_file): stem := $(inc).dep
104$(inc_dep_file) :
105 $(hide) mkdir -p $(dir $@)
106 $(hide) rm -f $(stem).*
107 $(hide) touch $@
Doug Zongker2b0fdc62009-06-19 11:22:06 -0700108
109$(inc) : libs := $(TARGET_RECOVERY_UPDATER_LIBS)
Ying Wangeef790d2012-06-11 14:53:08 -0700110$(inc) : $(inc_dep_file)
Doug Zongker2b0fdc62009-06-19 11:22:06 -0700111 $(hide) mkdir -p $(dir $@)
112 $(hide) echo "" > $@
Michael Ward6242a8b2011-07-14 15:06:12 -0700113 $(hide) $(foreach lib,$(libs),echo "extern void Register_$(lib)(void);" >> $@;)
Doug Zongker2b0fdc62009-06-19 11:22:06 -0700114 $(hide) echo "void RegisterDeviceExtensions() {" >> $@
Michael Ward6242a8b2011-07-14 15:06:12 -0700115 $(hide) $(foreach lib,$(libs),echo " Register_$(lib)();" >> $@;)
Doug Zongker2b0fdc62009-06-19 11:22:06 -0700116 $(hide) echo "}" >> $@
117
Bruce Beare4c3c7a92014-09-12 09:09:52 -0700118$(call intermediates-dir-for,EXECUTABLES,updater,,,$(TARGET_PREFER_32_BIT))/updater.o : $(inc)
Doug Zongker2b0fdc62009-06-19 11:22:06 -0700119LOCAL_C_INCLUDES += $(dir $(inc))
120
Ying Wangeef790d2012-06-11 14:53:08 -0700121inc :=
122inc_dep_file :=
123
Doug Zongker9931f7f2009-06-10 14:11:53 -0700124LOCAL_MODULE := updater
125
126LOCAL_FORCE_STATIC_EXECUTABLE := true
127
128include $(BUILD_EXECUTABLE)