blob: 23ba592a813726c75c625eaaf1de3818c4bb3052 [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
Doug Zongker3d177d02010-07-01 09:18:44 -070048LOCAL_STATIC_LIBRARIES += $(TARGET_RECOVERY_UPDATER_LIBS) $(TARGET_RECOVERY_UPDATER_EXTRA_LIBS)
Jed Estepf1fc48c2015-12-15 16:04:53 -080049LOCAL_STATIC_LIBRARIES += libapplypatch libbase libotafault libedify libmtdutils libminzip libz
Dees_Troy76a1d412013-04-20 13:54:35 +000050LOCAL_STATIC_LIBRARIES += libflashutils libmmcutils libbmlutils
Ethan Yonkerb8e985c2016-08-31 13:42:11 -050051LOCAL_STATIC_LIBRARIES += libbz
Dan Alberte49a9e52015-05-19 11:33:18 -070052LOCAL_STATIC_LIBRARIES += libcutils liblog libc
Kenny Root7eb75672012-10-16 10:47:27 -070053LOCAL_STATIC_LIBRARIES += libselinux
Ethan Yonker34ae4832016-08-24 15:32:18 -050054
Doug Zongker9931f7f2009-06-10 14:11:53 -070055LOCAL_STATIC_LIBRARIES += libselinux
Michael Rungeb278c252014-11-21 00:12:28 -080056tune2fs_static_libraries := \
57 libext2_com_err \
58 libext2_blkid \
59 libext2_quota \
60 libext2_uuid_static \
61 libext2_e2p \
62 libext2fs
Ethan Yonker7e1b9862015-03-19 14:10:01 -050063ifneq ($(wildcard external/e2fsprogs/misc/tune2fs.h),)
64 LOCAL_STATIC_LIBRARIES += libtune2fs $(tune2fs_static_libraries)
65 LOCAL_CFLAGS += -DHAVE_LIBTUNE2FS
66endif
Michael Rungeb278c252014-11-21 00:12:28 -080067
68LOCAL_C_INCLUDES += external/e2fsprogs/misc
Doug Zongker9931f7f2009-06-10 14:11:53 -070069LOCAL_C_INCLUDES += $(LOCAL_PATH)/..
70
Doug Zongker2b0fdc62009-06-19 11:22:06 -070071# Each library in TARGET_RECOVERY_UPDATER_LIBS should have a function
72# named "Register_<libname>()". Here we emit a little C function that
73# gets #included by updater.c. It calls all those registration
74# functions.
75
76# Devices can also add libraries to TARGET_RECOVERY_UPDATER_EXTRA_LIBS.
77# These libs are also linked in with updater, but we don't try to call
78# any sort of registration function for these. Use this variable for
79# any subsidiary static libraries required for your registered
80# extension libs.
81
82inc := $(call intermediates-dir-for,PACKAGING,updater_extensions)/register.inc
83
Ying Wangeef790d2012-06-11 14:53:08 -070084# Encode the value of TARGET_RECOVERY_UPDATER_LIBS into the filename of the dependency.
85# So if TARGET_RECOVERY_UPDATER_LIBS is changed, a new dependency file will be generated.
86# Note that we have to remove any existing depency files before creating new one,
87# so no obsolete dependecy file gets used if you switch back to an old value.
88inc_dep_file := $(inc).dep.$(subst $(space),-,$(sort $(TARGET_RECOVERY_UPDATER_LIBS)))
89$(inc_dep_file): stem := $(inc).dep
90$(inc_dep_file) :
91 $(hide) mkdir -p $(dir $@)
92 $(hide) rm -f $(stem).*
93 $(hide) touch $@
Doug Zongker2b0fdc62009-06-19 11:22:06 -070094
95$(inc) : libs := $(TARGET_RECOVERY_UPDATER_LIBS)
Ying Wangeef790d2012-06-11 14:53:08 -070096$(inc) : $(inc_dep_file)
Doug Zongker2b0fdc62009-06-19 11:22:06 -070097 $(hide) mkdir -p $(dir $@)
98 $(hide) echo "" > $@
Michael Ward6242a8b2011-07-14 15:06:12 -070099 $(hide) $(foreach lib,$(libs),echo "extern void Register_$(lib)(void);" >> $@;)
Doug Zongker2b0fdc62009-06-19 11:22:06 -0700100 $(hide) echo "void RegisterDeviceExtensions() {" >> $@
Michael Ward6242a8b2011-07-14 15:06:12 -0700101 $(hide) $(foreach lib,$(libs),echo " Register_$(lib)();" >> $@;)
Doug Zongker2b0fdc62009-06-19 11:22:06 -0700102 $(hide) echo "}" >> $@
103
Bruce Beare4c3c7a92014-09-12 09:09:52 -0700104$(call intermediates-dir-for,EXECUTABLES,updater,,,$(TARGET_PREFER_32_BIT))/updater.o : $(inc)
Doug Zongker2b0fdc62009-06-19 11:22:06 -0700105LOCAL_C_INCLUDES += $(dir $(inc))
106
Ying Wangeef790d2012-06-11 14:53:08 -0700107inc :=
108inc_dep_file :=
109
Doug Zongker9931f7f2009-06-10 14:11:53 -0700110LOCAL_MODULE := updater
111
112LOCAL_FORCE_STATIC_EXECUTABLE := true
113
114include $(BUILD_EXECUTABLE)