Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 1 | # Copyright 2009 The Android Open Source Project |
| 2 | |
| 3 | LOCAL_PATH := $(call my-dir) |
| 4 | |
| 5 | updater_src_files := \ |
| 6 | install.c \ |
Doug Zongker | bc7ffed | 2014-08-15 14:31:52 -0700 | [diff] [blame] | 7 | blockimg.c \ |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 8 | updater.c |
| 9 | |
| 10 | # |
Doug Zongker | ad3db09 | 2009-06-26 13:38:55 -0700 | [diff] [blame] | 11 | # Build a statically-linked binary to include in OTA packages |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 12 | # |
| 13 | include $(CLEAR_VARS) |
| 14 | |
Doug Zongker | ad3db09 | 2009-06-26 13:38:55 -0700 | [diff] [blame] | 15 | # 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.) |
| 18 | LOCAL_MODULE_TAGS := eng |
| 19 | |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 20 | LOCAL_SRC_FILES := $(updater_src_files) |
| 21 | |
Doug Zongker | 3d177d0 | 2010-07-01 09:18:44 -0700 | [diff] [blame] | 22 | ifeq ($(TARGET_USERIMAGES_USE_EXT4), true) |
| 23 | LOCAL_CFLAGS += -DUSE_EXT4 |
Doug Zongker | 0d32f25 | 2014-02-13 15:07:56 -0800 | [diff] [blame] | 24 | LOCAL_CFLAGS += -Wno-unused-parameter |
Doug Zongker | 3d177d0 | 2010-07-01 09:18:44 -0700 | [diff] [blame] | 25 | LOCAL_C_INCLUDES += system/extras/ext4_utils |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 26 | LOCAL_STATIC_LIBRARIES += \ |
| 27 | libext4_utils_static \ |
Joe Onorato | 4eeb379 | 2012-07-23 19:14:30 -0700 | [diff] [blame] | 28 | libsparse_static \ |
Joe Onorato | 6396e70 | 2012-05-31 23:21:46 -0700 | [diff] [blame] | 29 | libz |
Stephen Smalley | 779701d | 2012-02-09 14:13:23 -0500 | [diff] [blame] | 30 | endif |
| 31 | |
Doug Zongker | 3d177d0 | 2010-07-01 09:18:44 -0700 | [diff] [blame] | 32 | LOCAL_STATIC_LIBRARIES += $(TARGET_RECOVERY_UPDATER_LIBS) $(TARGET_RECOVERY_UPDATER_EXTRA_LIBS) |
Doug Zongker | 2b0fdc6 | 2009-06-19 11:22:06 -0700 | [diff] [blame] | 33 | LOCAL_STATIC_LIBRARIES += libapplypatch libedify libmtdutils libminzip libz |
Doug Zongker | 8edb00c | 2009-06-11 17:21:44 -0700 | [diff] [blame] | 34 | LOCAL_STATIC_LIBRARIES += libmincrypt libbz |
Ying Wang | 4e21482 | 2013-04-09 21:41:29 -0700 | [diff] [blame] | 35 | LOCAL_STATIC_LIBRARIES += libcutils liblog libstdc++ libc |
Kenny Root | 7eb7567 | 2012-10-16 10:47:27 -0700 | [diff] [blame] | 36 | LOCAL_STATIC_LIBRARIES += libselinux |
Michael Runge | b278c25 | 2014-11-21 00:12:28 -0800 | [diff] [blame] | 37 | tune2fs_static_libraries := \ |
| 38 | libext2_com_err \ |
| 39 | libext2_blkid \ |
| 40 | libext2_quota \ |
| 41 | libext2_uuid_static \ |
| 42 | libext2_e2p \ |
| 43 | libext2fs |
| 44 | LOCAL_STATIC_LIBRARIES += libtune2fs $(tune2fs_static_libraries) |
| 45 | |
| 46 | LOCAL_C_INCLUDES += external/e2fsprogs/misc |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 47 | LOCAL_C_INCLUDES += $(LOCAL_PATH)/.. |
| 48 | |
Doug Zongker | 2b0fdc6 | 2009-06-19 11:22:06 -0700 | [diff] [blame] | 49 | # Each library in TARGET_RECOVERY_UPDATER_LIBS should have a function |
| 50 | # named "Register_<libname>()". Here we emit a little C function that |
| 51 | # gets #included by updater.c. It calls all those registration |
| 52 | # functions. |
| 53 | |
| 54 | # Devices can also add libraries to TARGET_RECOVERY_UPDATER_EXTRA_LIBS. |
| 55 | # These libs are also linked in with updater, but we don't try to call |
| 56 | # any sort of registration function for these. Use this variable for |
| 57 | # any subsidiary static libraries required for your registered |
| 58 | # extension libs. |
| 59 | |
| 60 | inc := $(call intermediates-dir-for,PACKAGING,updater_extensions)/register.inc |
| 61 | |
Ying Wang | eef790d | 2012-06-11 14:53:08 -0700 | [diff] [blame] | 62 | # Encode the value of TARGET_RECOVERY_UPDATER_LIBS into the filename of the dependency. |
| 63 | # So if TARGET_RECOVERY_UPDATER_LIBS is changed, a new dependency file will be generated. |
| 64 | # Note that we have to remove any existing depency files before creating new one, |
| 65 | # so no obsolete dependecy file gets used if you switch back to an old value. |
| 66 | inc_dep_file := $(inc).dep.$(subst $(space),-,$(sort $(TARGET_RECOVERY_UPDATER_LIBS))) |
| 67 | $(inc_dep_file): stem := $(inc).dep |
| 68 | $(inc_dep_file) : |
| 69 | $(hide) mkdir -p $(dir $@) |
| 70 | $(hide) rm -f $(stem).* |
| 71 | $(hide) touch $@ |
Doug Zongker | 2b0fdc6 | 2009-06-19 11:22:06 -0700 | [diff] [blame] | 72 | |
| 73 | $(inc) : libs := $(TARGET_RECOVERY_UPDATER_LIBS) |
Ying Wang | eef790d | 2012-06-11 14:53:08 -0700 | [diff] [blame] | 74 | $(inc) : $(inc_dep_file) |
Doug Zongker | 2b0fdc6 | 2009-06-19 11:22:06 -0700 | [diff] [blame] | 75 | $(hide) mkdir -p $(dir $@) |
| 76 | $(hide) echo "" > $@ |
Michael Ward | 6242a8b | 2011-07-14 15:06:12 -0700 | [diff] [blame] | 77 | $(hide) $(foreach lib,$(libs),echo "extern void Register_$(lib)(void);" >> $@;) |
Doug Zongker | 2b0fdc6 | 2009-06-19 11:22:06 -0700 | [diff] [blame] | 78 | $(hide) echo "void RegisterDeviceExtensions() {" >> $@ |
Michael Ward | 6242a8b | 2011-07-14 15:06:12 -0700 | [diff] [blame] | 79 | $(hide) $(foreach lib,$(libs),echo " Register_$(lib)();" >> $@;) |
Doug Zongker | 2b0fdc6 | 2009-06-19 11:22:06 -0700 | [diff] [blame] | 80 | $(hide) echo "}" >> $@ |
| 81 | |
Bruce Beare | 4c3c7a9 | 2014-09-12 09:09:52 -0700 | [diff] [blame] | 82 | $(call intermediates-dir-for,EXECUTABLES,updater,,,$(TARGET_PREFER_32_BIT))/updater.o : $(inc) |
Doug Zongker | 2b0fdc6 | 2009-06-19 11:22:06 -0700 | [diff] [blame] | 83 | LOCAL_C_INCLUDES += $(dir $(inc)) |
| 84 | |
Ying Wang | eef790d | 2012-06-11 14:53:08 -0700 | [diff] [blame] | 85 | inc := |
| 86 | inc_dep_file := |
| 87 | |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 88 | LOCAL_MODULE := updater |
| 89 | |
| 90 | LOCAL_FORCE_STATIC_EXECUTABLE := true |
| 91 | |
| 92 | include $(BUILD_EXECUTABLE) |