blob: 2c51f9990bbb8f1ca205f50ea947de7427adf020 [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
24LOCAL_STATIC_LIBRARIES += libext4_utils libz
Stephen Smalley1a114492012-01-13 07:59:51 -050025ifeq ($(HAVE_SELINUX), true)
26LOCAL_C_INCLUDES += external/libselinux/include
27LOCAL_STATIC_LIBRARIES += libselinux
28LOCAL_CFLAGS += -DHAVE_SELINUX
29endif # HAVE_SELINUX
Doug Zongker3d177d02010-07-01 09:18:44 -070030endif
31
32LOCAL_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
Hristo Bojinovdb314d62010-08-02 10:29:49 -070035LOCAL_STATIC_LIBRARIES += libminelf
Doug Zongker9931f7f2009-06-10 14:11:53 -070036LOCAL_STATIC_LIBRARIES += libcutils libstdc++ libc
37LOCAL_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
52# During the first pass of reading the makefiles, we dump the list of
53# extension libs to a temp file, then copy that to the ".list" file if
54# it is different than the existing .list (if any). The register.inc
55# file then uses the .list as a prerequisite, so it is only rebuilt
56# (and updater.o recompiled) when the list of extension libs changes.
57
58junk := $(shell mkdir -p $(dir $(inc));\
59 echo $(TARGET_RECOVERY_UPDATER_LIBS) > $(inc).temp;\
Ying Wangb4277c22010-07-20 17:31:04 -070060 diff -q $(inc).temp $(inc).list 2>/dev/null || cp -f $(inc).temp $(inc).list)
Doug Zongker2b0fdc62009-06-19 11:22:06 -070061
62$(inc) : libs := $(TARGET_RECOVERY_UPDATER_LIBS)
63$(inc) : $(inc).list
64 $(hide) mkdir -p $(dir $@)
65 $(hide) echo "" > $@
Michael Ward6242a8b2011-07-14 15:06:12 -070066 $(hide) $(foreach lib,$(libs),echo "extern void Register_$(lib)(void);" >> $@;)
Doug Zongker2b0fdc62009-06-19 11:22:06 -070067 $(hide) echo "void RegisterDeviceExtensions() {" >> $@
Michael Ward6242a8b2011-07-14 15:06:12 -070068 $(hide) $(foreach lib,$(libs),echo " Register_$(lib)();" >> $@;)
Doug Zongker2b0fdc62009-06-19 11:22:06 -070069 $(hide) echo "}" >> $@
70
71$(call intermediates-dir-for,EXECUTABLES,updater)/updater.o : $(inc)
72LOCAL_C_INCLUDES += $(dir $(inc))
73
Doug Zongker9931f7f2009-06-10 14:11:53 -070074LOCAL_MODULE := updater
75
76LOCAL_FORCE_STATIC_EXECUTABLE := true
77
78include $(BUILD_EXECUTABLE)