blob: c73cdc08379dab9a034327ad173e08cc367feb46 [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 += \
27 libext4_utils_static \
Joe Onorato4eeb3792012-07-23 19:14:30 -070028 libsparse_static \
Joe Onorato6396e702012-05-31 23:21:46 -070029 libz
Stephen Smalley779701d2012-02-09 14:13:23 -050030endif
31
Doug Zongker3d177d02010-07-01 09:18:44 -070032LOCAL_STATIC_LIBRARIES += $(TARGET_RECOVERY_UPDATER_LIBS) $(TARGET_RECOVERY_UPDATER_EXTRA_LIBS)
Doug Zongker2b0fdc62009-06-19 11:22:06 -070033LOCAL_STATIC_LIBRARIES += libapplypatch libedify libmtdutils libminzip libz
Doug Zongker8edb00c2009-06-11 17:21:44 -070034LOCAL_STATIC_LIBRARIES += libmincrypt libbz
Ying Wang4e214822013-04-09 21:41:29 -070035LOCAL_STATIC_LIBRARIES += libcutils liblog libstdc++ libc
Kenny Root7eb75672012-10-16 10:47:27 -070036LOCAL_STATIC_LIBRARIES += libselinux
Doug Zongker9931f7f2009-06-10 14:11:53 -070037LOCAL_C_INCLUDES += $(LOCAL_PATH)/..
38
Doug Zongker2b0fdc62009-06-19 11:22:06 -070039# Each library in TARGET_RECOVERY_UPDATER_LIBS should have a function
40# named "Register_<libname>()". Here we emit a little C function that
41# gets #included by updater.c. It calls all those registration
42# functions.
43
44# Devices can also add libraries to TARGET_RECOVERY_UPDATER_EXTRA_LIBS.
45# These libs are also linked in with updater, but we don't try to call
46# any sort of registration function for these. Use this variable for
47# any subsidiary static libraries required for your registered
48# extension libs.
49
50inc := $(call intermediates-dir-for,PACKAGING,updater_extensions)/register.inc
51
Ying Wangeef790d2012-06-11 14:53:08 -070052# Encode the value of TARGET_RECOVERY_UPDATER_LIBS into the filename of the dependency.
53# So if TARGET_RECOVERY_UPDATER_LIBS is changed, a new dependency file will be generated.
54# Note that we have to remove any existing depency files before creating new one,
55# so no obsolete dependecy file gets used if you switch back to an old value.
56inc_dep_file := $(inc).dep.$(subst $(space),-,$(sort $(TARGET_RECOVERY_UPDATER_LIBS)))
57$(inc_dep_file): stem := $(inc).dep
58$(inc_dep_file) :
59 $(hide) mkdir -p $(dir $@)
60 $(hide) rm -f $(stem).*
61 $(hide) touch $@
Doug Zongker2b0fdc62009-06-19 11:22:06 -070062
63$(inc) : libs := $(TARGET_RECOVERY_UPDATER_LIBS)
Ying Wangeef790d2012-06-11 14:53:08 -070064$(inc) : $(inc_dep_file)
Doug Zongker2b0fdc62009-06-19 11:22:06 -070065 $(hide) mkdir -p $(dir $@)
66 $(hide) echo "" > $@
Michael Ward6242a8b2011-07-14 15:06:12 -070067 $(hide) $(foreach lib,$(libs),echo "extern void Register_$(lib)(void);" >> $@;)
Doug Zongker2b0fdc62009-06-19 11:22:06 -070068 $(hide) echo "void RegisterDeviceExtensions() {" >> $@
Michael Ward6242a8b2011-07-14 15:06:12 -070069 $(hide) $(foreach lib,$(libs),echo " Register_$(lib)();" >> $@;)
Doug Zongker2b0fdc62009-06-19 11:22:06 -070070 $(hide) echo "}" >> $@
71
Bruce Beare4c3c7a92014-09-12 09:09:52 -070072$(call intermediates-dir-for,EXECUTABLES,updater,,,$(TARGET_PREFER_32_BIT))/updater.o : $(inc)
Doug Zongker2b0fdc62009-06-19 11:22:06 -070073LOCAL_C_INCLUDES += $(dir $(inc))
74
Ying Wangeef790d2012-06-11 14:53:08 -070075inc :=
76inc_dep_file :=
77
Doug Zongker9931f7f2009-06-10 14:11:53 -070078LOCAL_MODULE := updater
79
80LOCAL_FORCE_STATIC_EXECUTABLE := true
81
82include $(BUILD_EXECUTABLE)