Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 1 | # Copyright 2009 The Android Open Source Project |
Tao Bao | ba9a42a | 2015-06-23 23:23:33 -0700 | [diff] [blame] | 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 14 | |
| 15 | LOCAL_PATH := $(call my-dir) |
| 16 | |
Tao Bao | d80a998 | 2016-03-03 11:43:47 -0800 | [diff] [blame] | 17 | tune2fs_static_libraries := \ |
| 18 | libext2_com_err \ |
| 19 | libext2_blkid \ |
| 20 | libext2_quota \ |
Alex Deymo | 7c5dbd6 | 2017-01-13 17:32:20 -0800 | [diff] [blame] | 21 | libext2_uuid \ |
Tao Bao | d80a998 | 2016-03-03 11:43:47 -0800 | [diff] [blame] | 22 | libext2_e2p \ |
| 23 | libext2fs |
| 24 | |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 25 | updater_common_static_libraries := \ |
| 26 | libapplypatch \ |
Tao Bao | bedf5fc | 2016-11-18 12:01:26 -0800 | [diff] [blame] | 27 | libbootloader_message \ |
Tao Bao | 673bb6f | 2018-08-03 20:56:25 -0700 | [diff] [blame] | 28 | libbspatch \ |
Tao Bao | 9a319f0 | 2018-01-04 13:19:11 -0800 | [diff] [blame] | 29 | libedify \ |
Tao Bao | 9a319f0 | 2018-01-04 13:19:11 -0800 | [diff] [blame] | 30 | libotautil \ |
Alex Deymo | 3165366 | 2017-01-11 14:02:13 -0800 | [diff] [blame] | 31 | libext4_utils \ |
Yifan Hong | 8ff84d7 | 2018-12-19 16:21:55 -0800 | [diff] [blame] | 32 | libdm \ |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 33 | libfec \ |
| 34 | libfec_rs \ |
Tianjie Xu | 2bb374a | 2019-11-22 13:46:19 -0800 | [diff] [blame] | 35 | libavb \ |
Tianjie Xu | 69ffa15 | 2018-08-01 16:40:00 -0700 | [diff] [blame] | 36 | libverity_tree \ |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 37 | liblog \ |
Yifan Hong | 8ff84d7 | 2018-12-19 16:21:55 -0800 | [diff] [blame] | 38 | liblp \ |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 39 | libselinux \ |
Alex Deymo | 67f3aa8 | 2017-01-11 14:38:20 -0800 | [diff] [blame] | 40 | libsparse \ |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 41 | libsquashfs_utils \ |
Tao Bao | 673bb6f | 2018-08-03 20:56:25 -0700 | [diff] [blame] | 42 | libbrotli \ |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 43 | libbz \ |
Tao Bao | 673bb6f | 2018-08-03 20:56:25 -0700 | [diff] [blame] | 44 | libziparchive \ |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 45 | libz \ |
| 46 | libbase \ |
Colin Cross | 0e643e4 | 2019-09-18 11:05:34 -0700 | [diff] [blame] | 47 | libcrypto_static \ |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 48 | libcrypto_utils \ |
| 49 | libcutils \ |
Tianjie Xu | c1a5e26 | 2019-05-22 14:34:12 -0700 | [diff] [blame] | 50 | libutils |
| 51 | |
| 52 | |
| 53 | # Each library in TARGET_RECOVERY_UPDATER_LIBS should have a function |
| 54 | # named "Register_<libname>()". Here we emit a little C function that |
| 55 | # gets #included by updater.cpp. It calls all those registration |
| 56 | # functions. |
| 57 | # $(1): the path to the register.inc file |
| 58 | # $(2): a list of TARGET_RECOVERY_UPDATER_LIBS |
| 59 | define generate-register-inc |
| 60 | $(hide) mkdir -p $(dir $(1)) |
| 61 | $(hide) echo "" > $(1) |
| 62 | $(hide) $(foreach lib,$(2),echo "extern void Register_$(lib)(void);" >> $(1);) |
| 63 | $(hide) echo "void RegisterDeviceExtensions() {" >> $(1) |
| 64 | $(hide) $(foreach lib,$(2),echo " Register_$(lib)();" >> $(1);) |
| 65 | $(hide) echo "}" >> $(1) |
| 66 | endef |
| 67 | |
Sami Tolvanen | 0a7b473 | 2015-06-25 10:25:36 +0100 | [diff] [blame] | 68 | |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 69 | # updater (static executable) |
| 70 | # =============================== |
| 71 | include $(CLEAR_VARS) |
| 72 | |
| 73 | LOCAL_MODULE := updater |
Bob Badour | 29be3f6 | 2021-02-12 18:00:57 -0800 | [diff] [blame] | 74 | LOCAL_LICENSE_KINDS := SPDX-license-identifier-Apache-2.0 |
| 75 | LOCAL_LICENSE_CONDITIONS := notice |
| 76 | LOCAL_NOTICE_FILE := $(LOCAL_PATH)/../NOTICE |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 77 | |
| 78 | LOCAL_SRC_FILES := \ |
Tianjie Xu | 58d5912 | 2019-05-03 01:05:04 -0700 | [diff] [blame] | 79 | updater_main.cpp |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 80 | |
| 81 | LOCAL_C_INCLUDES := \ |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 82 | $(LOCAL_PATH)/include |
| 83 | |
| 84 | LOCAL_CFLAGS := \ |
Tianjie Xu | c89d1e7 | 2017-08-28 14:15:07 -0700 | [diff] [blame] | 85 | -Wall \ |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 86 | -Werror |
| 87 | |
| 88 | LOCAL_STATIC_LIBRARIES := \ |
Tianjie Xu | c1a5e26 | 2019-05-22 14:34:12 -0700 | [diff] [blame] | 89 | libupdater_device \ |
| 90 | libupdater_core \ |
Tao Bao | 0c7839a | 2016-10-10 15:48:37 -0700 | [diff] [blame] | 91 | $(TARGET_RECOVERY_UPDATER_LIBS) \ |
| 92 | $(TARGET_RECOVERY_UPDATER_EXTRA_LIBS) \ |
Tianjie Xu | c1a5e26 | 2019-05-22 14:34:12 -0700 | [diff] [blame] | 93 | $(updater_common_static_libraries) \ |
| 94 | libfs_mgr \ |
| 95 | libtune2fs \ |
| 96 | $(tune2fs_static_libraries) |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 97 | |
Elliott Hughes | a85d7a0 | 2021-04-20 11:58:05 -0700 | [diff] [blame] | 98 | LOCAL_HEADER_LIBRARIES := libgtest_prod_headers |
| 99 | |
Tianjie Xu | c1a5e26 | 2019-05-22 14:34:12 -0700 | [diff] [blame] | 100 | LOCAL_MODULE_CLASS := EXECUTABLES |
| 101 | inc := $(call local-generated-sources-dir)/register.inc |
Doug Zongker | 2b0fdc6 | 2009-06-19 11:22:06 -0700 | [diff] [blame] | 102 | |
| 103 | # Devices can also add libraries to TARGET_RECOVERY_UPDATER_EXTRA_LIBS. |
| 104 | # These libs are also linked in with updater, but we don't try to call |
| 105 | # any sort of registration function for these. Use this variable for |
| 106 | # any subsidiary static libraries required for your registered |
| 107 | # extension libs. |
Doug Zongker | 2b0fdc6 | 2009-06-19 11:22:06 -0700 | [diff] [blame] | 108 | $(inc) : libs := $(TARGET_RECOVERY_UPDATER_LIBS) |
Dan Willemsen | edec27a | 2017-03-21 16:41:14 -0700 | [diff] [blame] | 109 | $(inc) : |
Tianjie Xu | c1a5e26 | 2019-05-22 14:34:12 -0700 | [diff] [blame] | 110 | $(call generate-register-inc,$@,$(libs)) |
Doug Zongker | 2b0fdc6 | 2009-06-19 11:22:06 -0700 | [diff] [blame] | 111 | |
Dan Willemsen | edec27a | 2017-03-21 16:41:14 -0700 | [diff] [blame] | 112 | LOCAL_GENERATED_SOURCES := $(inc) |
Doug Zongker | 2b0fdc6 | 2009-06-19 11:22:06 -0700 | [diff] [blame] | 113 | |
Ying Wang | eef790d | 2012-06-11 14:53:08 -0700 | [diff] [blame] | 114 | inc := |
Ying Wang | eef790d | 2012-06-11 14:53:08 -0700 | [diff] [blame] | 115 | |
Doug Zongker | 9931f7f | 2009-06-10 14:11:53 -0700 | [diff] [blame] | 116 | LOCAL_FORCE_STATIC_EXECUTABLE := true |
| 117 | |
| 118 | include $(BUILD_EXECUTABLE) |