blob: 45f1a47b260dc1032d31927a326da7c9ce4697c0 [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
Ethan Yonkerb8e985c2016-08-31 13:42:11 -050036LOCAL_STATIC_LIBRARIES += libfec libfec_rs libsquashfs_utils libcrypto_static
Sami Tolvanen0a7b4732015-06-25 10:25:36 +010037
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
Ethan Yonkerb8e985c2016-08-31 13:42:11 -050042LOCAL_STATIC_LIBRARIES += libext4_utils_static libsparse_static
Tom Marshall56fe5e72015-04-17 05:23:00 -070043ifneq ($(wildcard external/lz4/Android.mk),)
Humberto Borba443af212016-08-30 18:06:30 -030044 LOCAL_STATIC_LIBRARIES += liblz4
Tom Marshall56fe5e72015-04-17 05:23:00 -070045endif
Stephen Smalley779701d2012-02-09 14:13:23 -050046endif
47
sndnvaps7dde36d2016-10-04 18:09:37 +080048ifeq ($(WITH_CRYPTO_UTILS), true)
49 LOCAL_STATIC_LIBRARIES += libcrypto_utils_static
50endif
51
Doug Zongker3d177d02010-07-01 09:18:44 -070052LOCAL_STATIC_LIBRARIES += $(TARGET_RECOVERY_UPDATER_LIBS) $(TARGET_RECOVERY_UPDATER_EXTRA_LIBS)
Jed Estepf1fc48c2015-12-15 16:04:53 -080053LOCAL_STATIC_LIBRARIES += libapplypatch libbase libotafault libedify libmtdutils libminzip libz
Dees_Troy76a1d412013-04-20 13:54:35 +000054LOCAL_STATIC_LIBRARIES += libflashutils libmmcutils libbmlutils
Ethan Yonkerb8e985c2016-08-31 13:42:11 -050055LOCAL_STATIC_LIBRARIES += libbz
Dan Alberte49a9e52015-05-19 11:33:18 -070056LOCAL_STATIC_LIBRARIES += libcutils liblog libc
Kenny Root7eb75672012-10-16 10:47:27 -070057LOCAL_STATIC_LIBRARIES += libselinux
Ethan Yonker34ae4832016-08-24 15:32:18 -050058
Doug Zongker9931f7f2009-06-10 14:11:53 -070059LOCAL_STATIC_LIBRARIES += libselinux
Michael Rungeb278c252014-11-21 00:12:28 -080060tune2fs_static_libraries := \
61 libext2_com_err \
62 libext2_blkid \
63 libext2_quota \
64 libext2_uuid_static \
65 libext2_e2p \
66 libext2fs
Ethan Yonker7e1b9862015-03-19 14:10:01 -050067ifneq ($(wildcard external/e2fsprogs/misc/tune2fs.h),)
68 LOCAL_STATIC_LIBRARIES += libtune2fs $(tune2fs_static_libraries)
69 LOCAL_CFLAGS += -DHAVE_LIBTUNE2FS
70endif
Michael Rungeb278c252014-11-21 00:12:28 -080071
72LOCAL_C_INCLUDES += external/e2fsprogs/misc
Doug Zongker9931f7f2009-06-10 14:11:53 -070073LOCAL_C_INCLUDES += $(LOCAL_PATH)/..
74
Doug Zongker2b0fdc62009-06-19 11:22:06 -070075# 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
86inc := $(call intermediates-dir-for,PACKAGING,updater_extensions)/register.inc
87
Ying Wangeef790d2012-06-11 14:53:08 -070088# 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.
92inc_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 Zongker2b0fdc62009-06-19 11:22:06 -070098
99$(inc) : libs := $(TARGET_RECOVERY_UPDATER_LIBS)
Ying Wangeef790d2012-06-11 14:53:08 -0700100$(inc) : $(inc_dep_file)
Doug Zongker2b0fdc62009-06-19 11:22:06 -0700101 $(hide) mkdir -p $(dir $@)
102 $(hide) echo "" > $@
Michael Ward6242a8b2011-07-14 15:06:12 -0700103 $(hide) $(foreach lib,$(libs),echo "extern void Register_$(lib)(void);" >> $@;)
Doug Zongker2b0fdc62009-06-19 11:22:06 -0700104 $(hide) echo "void RegisterDeviceExtensions() {" >> $@
Michael Ward6242a8b2011-07-14 15:06:12 -0700105 $(hide) $(foreach lib,$(libs),echo " Register_$(lib)();" >> $@;)
Doug Zongker2b0fdc62009-06-19 11:22:06 -0700106 $(hide) echo "}" >> $@
107
Bruce Beare4c3c7a92014-09-12 09:09:52 -0700108$(call intermediates-dir-for,EXECUTABLES,updater,,,$(TARGET_PREFER_32_BIT))/updater.o : $(inc)
Doug Zongker2b0fdc62009-06-19 11:22:06 -0700109LOCAL_C_INCLUDES += $(dir $(inc))
110
Ying Wangeef790d2012-06-11 14:53:08 -0700111inc :=
112inc_dep_file :=
113
Doug Zongker9931f7f2009-06-10 14:11:53 -0700114LOCAL_MODULE := updater
115
116LOCAL_FORCE_STATIC_EXECUTABLE := true
117
118include $(BUILD_EXECUTABLE)