Matt Mower | ec009e8 | 2015-01-30 13:00:49 -0600 | [diff] [blame] | 1 | # Copyright (C) 2015 TeamWin Recovery Project |
| 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. |
| 14 | |
Matt Mower | ec009e8 | 2015-01-30 13:00:49 -0600 | [diff] [blame] | 15 | LOCAL_PATH := $(call my-dir) |
| 16 | |
Captain Throwback | 1f12775 | 2016-01-19 17:30:20 -0500 | [diff] [blame] | 17 | ifneq ($(TW_EXCLUDE_DEFAULT_USB_INIT), true) |
| 18 | |
Matt Mower | ec009e8 | 2015-01-30 13:00:49 -0600 | [diff] [blame] | 19 | include $(CLEAR_VARS) |
| 20 | LOCAL_MODULE := init.recovery.usb.rc |
bigbiff | d58ba18 | 2020-03-23 10:02:29 -0400 | [diff] [blame] | 21 | LOCAL_MODULE_TAGS := optional |
bigbiff | 673c7ae | 2020-12-02 19:44:56 -0500 | [diff] [blame] | 22 | LOCAL_MODULE_CLASS := EXECUTABLES |
Matt Mower | ec009e8 | 2015-01-30 13:00:49 -0600 | [diff] [blame] | 23 | |
| 24 | # Cannot send to TARGET_RECOVERY_ROOT_OUT since build system wipes init*.rc |
| 25 | # during ramdisk creation and only allows init.recovery.*.rc files to be copied |
| 26 | # from TARGET_ROOT_OUT thereafter |
| 27 | LOCAL_MODULE_PATH := $(TARGET_ROOT_OUT) |
| 28 | |
| 29 | LOCAL_SRC_FILES := $(LOCAL_MODULE) |
| 30 | include $(BUILD_PREBUILT) |
| 31 | |
| 32 | endif |
Captain Throwback | 1f12775 | 2016-01-19 17:30:20 -0500 | [diff] [blame] | 33 | |
bigbiff | ad58e1b | 2020-07-06 20:24:34 -0400 | [diff] [blame] | 34 | include $(CLEAR_VARS) |
| 35 | LOCAL_MODULE := init.recovery.service.rc |
| 36 | LOCAL_MODULE_TAGS := optional |
bigbiff | 673c7ae | 2020-12-02 19:44:56 -0500 | [diff] [blame] | 37 | LOCAL_MODULE_CLASS := EXECUTABLES |
bigbiff | ad58e1b | 2020-07-06 20:24:34 -0400 | [diff] [blame] | 38 | LOCAL_MODULE_PATH := $(TARGET_ROOT_OUT) |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 39 | |
bigbiff | ad58e1b | 2020-07-06 20:24:34 -0400 | [diff] [blame] | 40 | LOCAL_SRC_FILES := init.recovery.service22.rc |
| 41 | include $(BUILD_PREBUILT) |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 42 | |
bigbiff | ad58e1b | 2020-07-06 20:24:34 -0400 | [diff] [blame] | 43 | include $(CLEAR_VARS) |
| 44 | LOCAL_MODULE := init.recovery.hlthchrg.rc |
| 45 | LOCAL_MODULE_TAGS := optional |
bigbiff | 673c7ae | 2020-12-02 19:44:56 -0500 | [diff] [blame] | 46 | LOCAL_MODULE_CLASS := EXECUTABLES |
bigbiff | ad58e1b | 2020-07-06 20:24:34 -0400 | [diff] [blame] | 47 | LOCAL_MODULE_PATH := $(TARGET_ROOT_OUT) |
Ethan Yonker | f117962 | 2016-08-25 15:32:21 -0500 | [diff] [blame] | 48 | |
bigbiff | ad58e1b | 2020-07-06 20:24:34 -0400 | [diff] [blame] | 49 | LOCAL_SRC_FILES := init.recovery.hlthchrg26.rc |
| 50 | include $(BUILD_PREBUILT) |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 51 | |
bigbiff | ad58e1b | 2020-07-06 20:24:34 -0400 | [diff] [blame] | 52 | include $(CLEAR_VARS) |
| 53 | LOCAL_MODULE := init.recovery.ldconfig.rc |
| 54 | LOCAL_MODULE_TAGS := optional |
bigbiff | 673c7ae | 2020-12-02 19:44:56 -0500 | [diff] [blame] | 55 | LOCAL_MODULE_CLASS := EXECUTABLES |
bigbiff | ad58e1b | 2020-07-06 20:24:34 -0400 | [diff] [blame] | 56 | LOCAL_MODULE_PATH := $(TARGET_ROOT_OUT) |
Captain Throwback | 170964d | 2019-10-21 19:42:50 -0400 | [diff] [blame] | 57 | |
bigbiff | ad58e1b | 2020-07-06 20:24:34 -0400 | [diff] [blame] | 58 | LOCAL_SRC_FILES := init.recovery.ldconfig.rc |
| 59 | include $(BUILD_PREBUILT) |
Ethan Yonker | 8373cfe | 2017-09-08 06:50:54 -0500 | [diff] [blame] | 60 | |
nebrassy | 5078965 | 2021-02-12 23:36:44 +0100 | [diff] [blame] | 61 | include $(CLEAR_VARS) |
| 62 | LOCAL_MODULE := nano.rc |
| 63 | LOCAL_MODULE_TAGS := optional |
bigbiff | 98203ce | 2021-03-03 20:39:52 -0500 | [diff] [blame] | 64 | LOCAL_MODULE_CLASS := EXECUTABLES |
nebrassy | 5078965 | 2021-02-12 23:36:44 +0100 | [diff] [blame] | 65 | LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/system/etc/init |
| 66 | |
| 67 | LOCAL_SRC_FILES := init/$(LOCAL_MODULE) |
| 68 | include $(BUILD_PREBUILT) |
| 69 | |
Captain Throwback | b326961 | 2021-09-04 10:59:26 -0400 | [diff] [blame] | 70 | ifneq ($(filter $(AB_OTA_UPDATER) $(PRODUCT_USE_DYNAMIC_PARTITIONS) $(TW_INCLUDE_CRYPTO), true),) |
Mohd Faraz | 29cab7f | 2021-04-17 11:35:09 +0200 | [diff] [blame] | 71 | include $(CLEAR_VARS) |
| 72 | LOCAL_MODULE := hwservicemanager.rc |
| 73 | LOCAL_MODULE_TAGS := optional |
| 74 | LOCAL_MODULE_CLASS := EXECUTABLES |
| 75 | LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/system/etc/init |
| 76 | |
| 77 | LOCAL_SRC_FILES := init/$(LOCAL_MODULE) |
| 78 | include $(BUILD_PREBUILT) |
| 79 | |
| 80 | include $(CLEAR_VARS) |
| 81 | LOCAL_MODULE := vndservicemanager.rc |
| 82 | LOCAL_MODULE_TAGS := optional |
| 83 | LOCAL_MODULE_CLASS := EXECUTABLES |
| 84 | LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/system/etc/init |
| 85 | |
| 86 | LOCAL_SRC_FILES := init/$(LOCAL_MODULE) |
| 87 | include $(BUILD_PREBUILT) |
bigbiff | df53b6c | 2022-01-17 19:31:52 -0500 | [diff] [blame] | 88 | |
| 89 | include $(CLEAR_VARS) |
| 90 | LOCAL_MODULE := keystore2.rc |
| 91 | LOCAL_MODULE_TAGS := optional |
| 92 | LOCAL_MODULE_CLASS := EXECUTABLES |
| 93 | LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/system/etc/init |
| 94 | |
| 95 | LOCAL_SRC_FILES := init/$(LOCAL_MODULE) |
| 96 | include $(BUILD_PREBUILT) |
| 97 | |
| 98 | include $(CLEAR_VARS) |
| 99 | LOCAL_MODULE := android.system.keystore2-service.xml |
| 100 | LOCAL_MODULE_TAGS := optional |
| 101 | LOCAL_MODULE_CLASS := EXECUTABLES |
| 102 | LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/system/etc/vintf/manifest |
| 103 | LOCAL_SRC_FILES := init/$(LOCAL_MODULE) |
| 104 | include $(BUILD_PREBUILT) |
Mohd Faraz | 29cab7f | 2021-04-17 11:35:09 +0200 | [diff] [blame] | 105 | endif |
| 106 | |
Captain Throwback | 49df547 | 2020-10-19 11:13:53 -0400 | [diff] [blame] | 107 | ifeq ($(AB_OTA_UPDATER),true) |
| 108 | include $(CLEAR_VARS) |
| 109 | LOCAL_MODULE := android.hardware.boot@1.0-service.rc |
| 110 | LOCAL_MODULE_TAGS := optional |
bigbiff | 673c7ae | 2020-12-02 19:44:56 -0500 | [diff] [blame] | 111 | LOCAL_MODULE_CLASS := EXECUTABLES |
Captain Throwback | 49df547 | 2020-10-19 11:13:53 -0400 | [diff] [blame] | 112 | LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/system/etc/init |
bigbiff | e2eae2f | 2021-03-07 18:47:06 -0500 | [diff] [blame] | 113 | LOCAL_SRC_FILES := init/$(LOCAL_MODULE) |
| 114 | include $(BUILD_PREBUILT) |
Captain Throwback | 49df547 | 2020-10-19 11:13:53 -0400 | [diff] [blame] | 115 | |
bigbiff | e2eae2f | 2021-03-07 18:47:06 -0500 | [diff] [blame] | 116 | include $(CLEAR_VARS) |
| 117 | LOCAL_MODULE := android.hardware.boot@1.1-service.rc |
| 118 | LOCAL_MODULE_TAGS := optional |
| 119 | LOCAL_MODULE_CLASS := EXECUTABLES |
| 120 | LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/system/etc/init |
| 121 | LOCAL_SRC_FILES := init/$(LOCAL_MODULE) |
| 122 | include $(BUILD_PREBUILT) |
| 123 | |
| 124 | include $(CLEAR_VARS) |
| 125 | LOCAL_MODULE := android.hardware.boot@1.1.xml |
| 126 | LOCAL_MODULE_TAGS := optional |
| 127 | LOCAL_MODULE_CLASS := EXECUTABLES |
| 128 | LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/vendor/etc/vintf/manifest |
Captain Throwback | 49df547 | 2020-10-19 11:13:53 -0400 | [diff] [blame] | 129 | LOCAL_SRC_FILES := init/$(LOCAL_MODULE) |
| 130 | include $(BUILD_PREBUILT) |
tnakamur | 217c05e | 2022-05-13 08:57:04 +0900 | [diff] [blame] | 131 | |
| 132 | include $(CLEAR_VARS) |
| 133 | LOCAL_MODULE := android.hardware.boot@1.2-service.rc |
| 134 | LOCAL_MODULE_TAGS := optional |
| 135 | LOCAL_MODULE_CLASS := EXECUTABLES |
| 136 | LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/system/etc/init |
| 137 | LOCAL_SRC_FILES := init/$(LOCAL_MODULE) |
| 138 | include $(BUILD_PREBUILT) |
| 139 | |
| 140 | include $(CLEAR_VARS) |
| 141 | LOCAL_MODULE := android.hardware.boot@1.2.xml |
| 142 | LOCAL_MODULE_TAGS := optional |
| 143 | LOCAL_MODULE_CLASS := EXECUTABLES |
| 144 | LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/vendor/etc/vintf/manifest |
| 145 | LOCAL_SRC_FILES := init/$(LOCAL_MODULE) |
| 146 | include $(BUILD_PREBUILT) |
Captain Throwback | 49df547 | 2020-10-19 11:13:53 -0400 | [diff] [blame] | 147 | endif |
| 148 | |
Mohd Faraz | a37d930 | 2023-09-18 06:24:08 +0000 | [diff] [blame^] | 149 | include $(CLEAR_VARS) |
| 150 | LOCAL_MODULE := android.hardware.health@2.1-service.rc |
| 151 | LOCAL_MODULE_TAGS := optional |
| 152 | LOCAL_MODULE_CLASS := EXECUTABLES |
| 153 | LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/system/etc/init |
| 154 | LOCAL_SRC_FILES := init/$(LOCAL_MODULE) |
| 155 | include $(BUILD_PREBUILT) |
| 156 | |
| 157 | include $(CLEAR_VARS) |
| 158 | LOCAL_MODULE := android.hardware.health@2.1.xml |
| 159 | LOCAL_MODULE_TAGS := optional |
| 160 | LOCAL_MODULE_CLASS := EXECUTABLES |
| 161 | LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/vendor/etc/vintf/manifest |
| 162 | LOCAL_SRC_FILES := init/$(LOCAL_MODULE) |
| 163 | include $(BUILD_PREBUILT) |
| 164 | |
| 165 | include $(CLEAR_VARS) |
| 166 | LOCAL_MODULE := android.hardware.health@2.0-service.rc |
| 167 | LOCAL_MODULE_TAGS := optional |
| 168 | LOCAL_MODULE_CLASS := EXECUTABLES |
| 169 | LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/system/etc/init |
| 170 | LOCAL_SRC_FILES := init/$(LOCAL_MODULE) |
| 171 | include $(BUILD_PREBUILT) |
| 172 | |
Captain Throwback | ddb0a40 | 2020-11-01 12:52:21 -0500 | [diff] [blame] | 173 | ifeq ($(PRODUCT_USE_DYNAMIC_PARTITIONS),true) |
| 174 | include $(CLEAR_VARS) |
bigbiff | 5c083cc | 2021-06-10 19:55:18 -0400 | [diff] [blame] | 175 | LOCAL_MODULE := lpdumpd.rc |
| 176 | LOCAL_MODULE_TAGS := optional |
| 177 | LOCAL_MODULE_CLASS := EXECUTABLES |
| 178 | LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/system/etc/init |
| 179 | LOCAL_SRC_FILES := init/$(LOCAL_MODULE) |
| 180 | include $(BUILD_PREBUILT) |
Captain Throwback | ddb0a40 | 2020-11-01 12:52:21 -0500 | [diff] [blame] | 181 | endif |
| 182 | |
Captain Throwback | 49df547 | 2020-10-19 11:13:53 -0400 | [diff] [blame] | 183 | ifneq ($(TW_INCLUDE_CRYPTO),) |
Captain Throwback | ddb0a40 | 2020-11-01 12:52:21 -0500 | [diff] [blame] | 184 | ifneq ($(TW_INCLUDE_CRYPTO_FBE),) |
| 185 | include $(CLEAR_VARS) |
| 186 | LOCAL_MODULE := servicemanager.rc |
| 187 | LOCAL_MODULE_TAGS := optional |
bigbiff | 673c7ae | 2020-12-02 19:44:56 -0500 | [diff] [blame] | 188 | LOCAL_MODULE_CLASS := EXECUTABLES |
Captain Throwback | ddb0a40 | 2020-11-01 12:52:21 -0500 | [diff] [blame] | 189 | LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/system/etc/init |
| 190 | |
| 191 | LOCAL_SRC_FILES := init/$(LOCAL_MODULE) |
| 192 | include $(BUILD_PREBUILT) |
| 193 | endif |
Captain Throwback | 49df547 | 2020-10-19 11:13:53 -0400 | [diff] [blame] | 194 | endif |
| 195 | |
Ethan Yonker | e5a288c | 2016-02-15 09:23:57 -0600 | [diff] [blame] | 196 | ifeq ($(TWRP_INCLUDE_LOGCAT), true) |
| 197 | ifeq ($(TARGET_USES_LOGD), true) |
Captain Throwback | 1f12775 | 2016-01-19 17:30:20 -0500 | [diff] [blame] | 198 | |
Ethan Yonker | e5a288c | 2016-02-15 09:23:57 -0600 | [diff] [blame] | 199 | include $(CLEAR_VARS) |
| 200 | LOCAL_MODULE := init.recovery.logd.rc |
bigbiff | d58ba18 | 2020-03-23 10:02:29 -0400 | [diff] [blame] | 201 | LOCAL_MODULE_TAGS := optional |
bigbiff | 673c7ae | 2020-12-02 19:44:56 -0500 | [diff] [blame] | 202 | LOCAL_MODULE_CLASS := EXECUTABLES |
Captain Throwback | 1f12775 | 2016-01-19 17:30:20 -0500 | [diff] [blame] | 203 | |
Ethan Yonker | e5a288c | 2016-02-15 09:23:57 -0600 | [diff] [blame] | 204 | # Cannot send to TARGET_RECOVERY_ROOT_OUT since build system wipes init*.rc |
| 205 | # during ramdisk creation and only allows init.recovery.*.rc files to be copied |
| 206 | # from TARGET_ROOT_OUT thereafter |
| 207 | LOCAL_MODULE_PATH := $(TARGET_ROOT_OUT) |
Captain Throwback | 1f12775 | 2016-01-19 17:30:20 -0500 | [diff] [blame] | 208 | |
Ethan Yonker | e5a288c | 2016-02-15 09:23:57 -0600 | [diff] [blame] | 209 | LOCAL_SRC_FILES := $(LOCAL_MODULE) |
| 210 | include $(BUILD_PREBUILT) |
| 211 | endif |
Captain Throwback | 1f12775 | 2016-01-19 17:30:20 -0500 | [diff] [blame] | 212 | endif |
Captain Throwback | 5ab5964 | 2019-02-07 17:22:49 -0500 | [diff] [blame] | 213 | |
| 214 | ifeq ($(TW_USE_TOOLBOX), true) |
| 215 | include $(CLEAR_VARS) |
| 216 | LOCAL_MODULE := init.recovery.mksh.rc |
bigbiff | d58ba18 | 2020-03-23 10:02:29 -0400 | [diff] [blame] | 217 | LOCAL_MODULE_TAGS := optional |
bigbiff | 673c7ae | 2020-12-02 19:44:56 -0500 | [diff] [blame] | 218 | LOCAL_MODULE_CLASS := EXECUTABLES |
Captain Throwback | 5ab5964 | 2019-02-07 17:22:49 -0500 | [diff] [blame] | 219 | |
| 220 | # Cannot send to TARGET_RECOVERY_ROOT_OUT since build system wipes init*.rc |
| 221 | # during ramdisk creation and only allows init.recovery.*.rc files to be copied |
| 222 | # from TARGET_ROOT_OUT thereafter |
| 223 | LOCAL_MODULE_PATH := $(TARGET_ROOT_OUT) |
| 224 | |
| 225 | LOCAL_SRC_FILES := $(LOCAL_MODULE) |
| 226 | include $(BUILD_PREBUILT) |
| 227 | endif |