blob: 89f4b99ffc0f9367bdb1cf270a6e116ac7a91301 [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 \
7 updater.c
8
9#
Doug Zongkerad3db092009-06-26 13:38:55 -070010# Build a statically-linked binary to include in OTA packages
Doug Zongker9931f7f2009-06-10 14:11:53 -070011#
12include $(CLEAR_VARS)
13
Doug Zongkerad3db092009-06-26 13:38:55 -070014# Build only in eng, so we don't end up with a copy of this in /system
15# on user builds. (TODO: find a better way to build device binaries
16# needed only for OTA packages.)
17LOCAL_MODULE_TAGS := eng
18
Doug Zongker9931f7f2009-06-10 14:11:53 -070019LOCAL_SRC_FILES := $(updater_src_files)
20
Doug Zongker3d177d02010-07-01 09:18:44 -070021ifeq ($(TARGET_USERIMAGES_USE_EXT4), true)
22LOCAL_CFLAGS += -DUSE_EXT4
23LOCAL_C_INCLUDES += system/extras/ext4_utils
Joe Onorato6396e702012-05-31 23:21:46 -070024LOCAL_STATIC_LIBRARIES += \
Dees_Troyaf504492012-10-11 12:00:29 -040025 libext4_utils \
Joe Onorato6396e702012-05-31 23:21:46 -070026 libz
Dees_Troy43681d42013-02-22 21:26:35 +000027ifneq ($(wildcard system/core/libmincrypt/rsa_e_3.c),)
28LOCAL_STATIC_LIBRARIES = \
29 libext4_utils_static \
30 libsparse_static \
31 libz
32endif
Stephen Smalley779701d2012-02-09 14:13:23 -050033endif
34
Stephen Smalley1a114492012-01-13 07:59:51 -050035ifeq ($(HAVE_SELINUX), true)
36LOCAL_C_INCLUDES += external/libselinux/include
37LOCAL_STATIC_LIBRARIES += libselinux
38LOCAL_CFLAGS += -DHAVE_SELINUX
39endif # HAVE_SELINUX
Doug Zongker3d177d02010-07-01 09:18:44 -070040
41LOCAL_STATIC_LIBRARIES += $(TARGET_RECOVERY_UPDATER_LIBS) $(TARGET_RECOVERY_UPDATER_EXTRA_LIBS)
Doug Zongker2b0fdc62009-06-19 11:22:06 -070042LOCAL_STATIC_LIBRARIES += libapplypatch libedify libmtdutils libminzip libz
Doug Zongker8edb00c2009-06-11 17:21:44 -070043LOCAL_STATIC_LIBRARIES += libmincrypt libbz
Hristo Bojinovdb314d62010-08-02 10:29:49 -070044LOCAL_STATIC_LIBRARIES += libminelf
Doug Zongker9931f7f2009-06-10 14:11:53 -070045LOCAL_STATIC_LIBRARIES += libcutils libstdc++ libc
46LOCAL_C_INCLUDES += $(LOCAL_PATH)/..
47
Doug Zongker2b0fdc62009-06-19 11:22:06 -070048# Each library in TARGET_RECOVERY_UPDATER_LIBS should have a function
49# named "Register_<libname>()". Here we emit a little C function that
50# gets #included by updater.c. It calls all those registration
51# functions.
52
53# Devices can also add libraries to TARGET_RECOVERY_UPDATER_EXTRA_LIBS.
54# These libs are also linked in with updater, but we don't try to call
55# any sort of registration function for these. Use this variable for
56# any subsidiary static libraries required for your registered
57# extension libs.
58
59inc := $(call intermediates-dir-for,PACKAGING,updater_extensions)/register.inc
60
Ying Wangeef790d2012-06-11 14:53:08 -070061# Encode the value of TARGET_RECOVERY_UPDATER_LIBS into the filename of the dependency.
62# So if TARGET_RECOVERY_UPDATER_LIBS is changed, a new dependency file will be generated.
63# Note that we have to remove any existing depency files before creating new one,
64# so no obsolete dependecy file gets used if you switch back to an old value.
65inc_dep_file := $(inc).dep.$(subst $(space),-,$(sort $(TARGET_RECOVERY_UPDATER_LIBS)))
66$(inc_dep_file): stem := $(inc).dep
67$(inc_dep_file) :
68 $(hide) mkdir -p $(dir $@)
69 $(hide) rm -f $(stem).*
70 $(hide) touch $@
Doug Zongker2b0fdc62009-06-19 11:22:06 -070071
72$(inc) : libs := $(TARGET_RECOVERY_UPDATER_LIBS)
Ying Wangeef790d2012-06-11 14:53:08 -070073$(inc) : $(inc_dep_file)
Doug Zongker2b0fdc62009-06-19 11:22:06 -070074 $(hide) mkdir -p $(dir $@)
75 $(hide) echo "" > $@
Michael Ward6242a8b2011-07-14 15:06:12 -070076 $(hide) $(foreach lib,$(libs),echo "extern void Register_$(lib)(void);" >> $@;)
Doug Zongker2b0fdc62009-06-19 11:22:06 -070077 $(hide) echo "void RegisterDeviceExtensions() {" >> $@
Michael Ward6242a8b2011-07-14 15:06:12 -070078 $(hide) $(foreach lib,$(libs),echo " Register_$(lib)();" >> $@;)
Doug Zongker2b0fdc62009-06-19 11:22:06 -070079 $(hide) echo "}" >> $@
80
81$(call intermediates-dir-for,EXECUTABLES,updater)/updater.o : $(inc)
82LOCAL_C_INCLUDES += $(dir $(inc))
83
Ying Wangeef790d2012-06-11 14:53:08 -070084inc :=
85inc_dep_file :=
86
Doug Zongker9931f7f2009-06-10 14:11:53 -070087LOCAL_MODULE := updater
88
89LOCAL_FORCE_STATIC_EXECUTABLE := true
90
91include $(BUILD_EXECUTABLE)