blob: 5c28969632868ad9c528277d2f39ab81edd2b287 [file] [log] [blame]
Doug Zongker9931f7f2009-06-10 14:11:53 -07001# Copyright 2009 The Android Open Source Project
2
3LOCAL_PATH := $(call my-dir)
4
5updater_src_files := \
6 install.c \
Doug Zongkerbc7ffed2014-08-15 14:31:52 -07007 blockimg.c \
Doug Zongker9931f7f2009-06-10 14:11:53 -07008 updater.c
9
10#
Doug Zongkerad3db092009-06-26 13:38:55 -070011# Build a statically-linked binary to include in OTA packages
Doug Zongker9931f7f2009-06-10 14:11:53 -070012#
13include $(CLEAR_VARS)
14
Doug Zongkerad3db092009-06-26 13:38:55 -070015# Build only in eng, so we don't end up with a copy of this in /system
16# on user builds. (TODO: find a better way to build device binaries
17# needed only for OTA packages.)
18LOCAL_MODULE_TAGS := eng
19
Doug Zongker9931f7f2009-06-10 14:11:53 -070020LOCAL_SRC_FILES := $(updater_src_files)
21
Doug Zongker3d177d02010-07-01 09:18:44 -070022ifeq ($(TARGET_USERIMAGES_USE_EXT4), true)
23LOCAL_CFLAGS += -DUSE_EXT4
Doug Zongker0d32f252014-02-13 15:07:56 -080024LOCAL_CFLAGS += -Wno-unused-parameter
Doug Zongker3d177d02010-07-01 09:18:44 -070025LOCAL_C_INCLUDES += system/extras/ext4_utils
Joe Onorato6396e702012-05-31 23:21:46 -070026LOCAL_STATIC_LIBRARIES += \
Dees_Troyaf504492012-10-11 12:00:29 -040027 libext4_utils \
Joe Onorato6396e702012-05-31 23:21:46 -070028 libz
Dees_Troy43681d42013-02-22 21:26:35 +000029ifneq ($(wildcard system/core/libmincrypt/rsa_e_3.c),)
30LOCAL_STATIC_LIBRARIES = \
31 libext4_utils_static \
32 libsparse_static \
33 libz
34endif
Dees Troyce8d8932013-11-03 02:48:43 +000035ifneq ($(wildcard system/core/include/mincrypt/sha256.h),)
36LOCAL_STATIC_LIBRARIES = \
37 libext4_utils_static \
38 libsparse_static \
39 libz
40endif
Stephen Smalley779701d2012-02-09 14:13:23 -050041endif
42
Doug Zongker3d177d02010-07-01 09:18:44 -070043LOCAL_STATIC_LIBRARIES += $(TARGET_RECOVERY_UPDATER_LIBS) $(TARGET_RECOVERY_UPDATER_EXTRA_LIBS)
Doug Zongker2b0fdc62009-06-19 11:22:06 -070044LOCAL_STATIC_LIBRARIES += libapplypatch libedify libmtdutils libminzip libz
Dees_Troy76a1d412013-04-20 13:54:35 +000045LOCAL_STATIC_LIBRARIES += libflashutils libmmcutils libbmlutils
Dees Troyce8d8932013-11-03 02:48:43 +000046LOCAL_STATIC_LIBRARIES += libmincrypttwrp libbz
Hristo Bojinovdb314d62010-08-02 10:29:49 -070047LOCAL_STATIC_LIBRARIES += libminelf
Ying Wang4e214822013-04-09 21:41:29 -070048LOCAL_STATIC_LIBRARIES += libcutils liblog libstdc++ libc
Kenny Root7eb75672012-10-16 10:47:27 -070049LOCAL_STATIC_LIBRARIES += libselinux
Doug Zongker9931f7f2009-06-10 14:11:53 -070050LOCAL_C_INCLUDES += $(LOCAL_PATH)/..
51
Doug Zongker2b0fdc62009-06-19 11:22:06 -070052# Each library in TARGET_RECOVERY_UPDATER_LIBS should have a function
53# named "Register_<libname>()". Here we emit a little C function that
54# gets #included by updater.c. It calls all those registration
55# functions.
56
57# Devices can also add libraries to TARGET_RECOVERY_UPDATER_EXTRA_LIBS.
58# These libs are also linked in with updater, but we don't try to call
59# any sort of registration function for these. Use this variable for
60# any subsidiary static libraries required for your registered
61# extension libs.
62
63inc := $(call intermediates-dir-for,PACKAGING,updater_extensions)/register.inc
64
Ying Wangeef790d2012-06-11 14:53:08 -070065# Encode the value of TARGET_RECOVERY_UPDATER_LIBS into the filename of the dependency.
66# So if TARGET_RECOVERY_UPDATER_LIBS is changed, a new dependency file will be generated.
67# Note that we have to remove any existing depency files before creating new one,
68# so no obsolete dependecy file gets used if you switch back to an old value.
69inc_dep_file := $(inc).dep.$(subst $(space),-,$(sort $(TARGET_RECOVERY_UPDATER_LIBS)))
70$(inc_dep_file): stem := $(inc).dep
71$(inc_dep_file) :
72 $(hide) mkdir -p $(dir $@)
73 $(hide) rm -f $(stem).*
74 $(hide) touch $@
Doug Zongker2b0fdc62009-06-19 11:22:06 -070075
76$(inc) : libs := $(TARGET_RECOVERY_UPDATER_LIBS)
Ying Wangeef790d2012-06-11 14:53:08 -070077$(inc) : $(inc_dep_file)
Doug Zongker2b0fdc62009-06-19 11:22:06 -070078 $(hide) mkdir -p $(dir $@)
79 $(hide) echo "" > $@
Michael Ward6242a8b2011-07-14 15:06:12 -070080 $(hide) $(foreach lib,$(libs),echo "extern void Register_$(lib)(void);" >> $@;)
Doug Zongker2b0fdc62009-06-19 11:22:06 -070081 $(hide) echo "void RegisterDeviceExtensions() {" >> $@
Michael Ward6242a8b2011-07-14 15:06:12 -070082 $(hide) $(foreach lib,$(libs),echo " Register_$(lib)();" >> $@;)
Doug Zongker2b0fdc62009-06-19 11:22:06 -070083 $(hide) echo "}" >> $@
84
85$(call intermediates-dir-for,EXECUTABLES,updater)/updater.o : $(inc)
86LOCAL_C_INCLUDES += $(dir $(inc))
87
Ying Wangeef790d2012-06-11 14:53:08 -070088inc :=
89inc_dep_file :=
90
Doug Zongker9931f7f2009-06-10 14:11:53 -070091LOCAL_MODULE := updater
92
93LOCAL_FORCE_STATIC_EXECUTABLE := true
94
95include $(BUILD_EXECUTABLE)