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) |
| 88 | endif |
| 89 | |
Captain Throwback | 49df547 | 2020-10-19 11:13:53 -0400 | [diff] [blame] | 90 | ifeq ($(AB_OTA_UPDATER),true) |
| 91 | include $(CLEAR_VARS) |
| 92 | LOCAL_MODULE := android.hardware.boot@1.0-service.rc |
| 93 | LOCAL_MODULE_TAGS := optional |
bigbiff | 673c7ae | 2020-12-02 19:44:56 -0500 | [diff] [blame] | 94 | LOCAL_MODULE_CLASS := EXECUTABLES |
Captain Throwback | 49df547 | 2020-10-19 11:13:53 -0400 | [diff] [blame] | 95 | LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/system/etc/init |
bigbiff | e2eae2f | 2021-03-07 18:47:06 -0500 | [diff] [blame] | 96 | LOCAL_SRC_FILES := init/$(LOCAL_MODULE) |
| 97 | include $(BUILD_PREBUILT) |
Captain Throwback | 49df547 | 2020-10-19 11:13:53 -0400 | [diff] [blame] | 98 | |
bigbiff | e2eae2f | 2021-03-07 18:47:06 -0500 | [diff] [blame] | 99 | include $(CLEAR_VARS) |
| 100 | LOCAL_MODULE := android.hardware.boot@1.1-service.rc |
| 101 | LOCAL_MODULE_TAGS := optional |
| 102 | LOCAL_MODULE_CLASS := EXECUTABLES |
| 103 | LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/system/etc/init |
| 104 | LOCAL_SRC_FILES := init/$(LOCAL_MODULE) |
| 105 | include $(BUILD_PREBUILT) |
| 106 | |
| 107 | include $(CLEAR_VARS) |
| 108 | LOCAL_MODULE := android.hardware.boot@1.1.xml |
| 109 | LOCAL_MODULE_TAGS := optional |
| 110 | LOCAL_MODULE_CLASS := EXECUTABLES |
| 111 | LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/vendor/etc/vintf/manifest |
Captain Throwback | 49df547 | 2020-10-19 11:13:53 -0400 | [diff] [blame] | 112 | LOCAL_SRC_FILES := init/$(LOCAL_MODULE) |
| 113 | include $(BUILD_PREBUILT) |
| 114 | endif |
| 115 | |
Captain Throwback | ddb0a40 | 2020-11-01 12:52:21 -0500 | [diff] [blame] | 116 | ifeq ($(PRODUCT_USE_DYNAMIC_PARTITIONS),true) |
| 117 | include $(CLEAR_VARS) |
nebrassy | 9c1709b | 2021-04-18 23:31:36 +0200 | [diff] [blame] | 118 | LOCAL_MODULE := android.hardware.health@2.1-service.rc |
Captain Throwback | ddb0a40 | 2020-11-01 12:52:21 -0500 | [diff] [blame] | 119 | LOCAL_MODULE_TAGS := optional |
bigbiff | 673c7ae | 2020-12-02 19:44:56 -0500 | [diff] [blame] | 120 | LOCAL_MODULE_CLASS := EXECUTABLES |
Captain Throwback | ddb0a40 | 2020-11-01 12:52:21 -0500 | [diff] [blame] | 121 | LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/system/etc/init |
nebrassy | 9c1709b | 2021-04-18 23:31:36 +0200 | [diff] [blame] | 122 | LOCAL_SRC_FILES := init/$(LOCAL_MODULE) |
| 123 | include $(BUILD_PREBUILT) |
Captain Throwback | ddb0a40 | 2020-11-01 12:52:21 -0500 | [diff] [blame] | 124 | |
nebrassy | 9c1709b | 2021-04-18 23:31:36 +0200 | [diff] [blame] | 125 | include $(CLEAR_VARS) |
| 126 | LOCAL_MODULE := android.hardware.health@2.1.xml |
| 127 | LOCAL_MODULE_TAGS := optional |
| 128 | LOCAL_MODULE_CLASS := EXECUTABLES |
| 129 | LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/vendor/etc/vintf/manifest |
Captain Throwback | ddb0a40 | 2020-11-01 12:52:21 -0500 | [diff] [blame] | 130 | LOCAL_SRC_FILES := init/$(LOCAL_MODULE) |
| 131 | include $(BUILD_PREBUILT) |
bigbiff | 477006a | 2021-05-14 19:51:26 -0400 | [diff] [blame] | 132 | |
| 133 | include $(CLEAR_VARS) |
| 134 | LOCAL_MODULE := android.hardware.health@2.0-service.rc |
| 135 | LOCAL_MODULE_TAGS := optional |
| 136 | LOCAL_MODULE_CLASS := EXECUTABLES |
| 137 | LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/system/etc/init |
| 138 | LOCAL_SRC_FILES := init/$(LOCAL_MODULE) |
| 139 | include $(BUILD_PREBUILT) |
bigbiff | 5c083cc | 2021-06-10 19:55:18 -0400 | [diff] [blame] | 140 | |
| 141 | include $(CLEAR_VARS) |
| 142 | LOCAL_MODULE := lpdumpd.rc |
| 143 | LOCAL_MODULE_TAGS := optional |
| 144 | LOCAL_MODULE_CLASS := EXECUTABLES |
| 145 | LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/system/etc/init |
| 146 | LOCAL_SRC_FILES := init/$(LOCAL_MODULE) |
| 147 | include $(BUILD_PREBUILT) |
Captain Throwback | ddb0a40 | 2020-11-01 12:52:21 -0500 | [diff] [blame] | 148 | endif |
| 149 | |
Captain Throwback | 49df547 | 2020-10-19 11:13:53 -0400 | [diff] [blame] | 150 | ifneq ($(TW_INCLUDE_CRYPTO),) |
Captain Throwback | ddb0a40 | 2020-11-01 12:52:21 -0500 | [diff] [blame] | 151 | ifneq ($(TW_INCLUDE_CRYPTO_FBE),) |
| 152 | include $(CLEAR_VARS) |
| 153 | LOCAL_MODULE := servicemanager.rc |
| 154 | LOCAL_MODULE_TAGS := optional |
bigbiff | 673c7ae | 2020-12-02 19:44:56 -0500 | [diff] [blame] | 155 | LOCAL_MODULE_CLASS := EXECUTABLES |
Captain Throwback | ddb0a40 | 2020-11-01 12:52:21 -0500 | [diff] [blame] | 156 | LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/system/etc/init |
| 157 | |
| 158 | LOCAL_SRC_FILES := init/$(LOCAL_MODULE) |
| 159 | include $(BUILD_PREBUILT) |
| 160 | endif |
Captain Throwback | 49df547 | 2020-10-19 11:13:53 -0400 | [diff] [blame] | 161 | endif |
| 162 | |
Ethan Yonker | e5a288c | 2016-02-15 09:23:57 -0600 | [diff] [blame] | 163 | ifeq ($(TWRP_INCLUDE_LOGCAT), true) |
| 164 | ifeq ($(TARGET_USES_LOGD), true) |
Captain Throwback | 1f12775 | 2016-01-19 17:30:20 -0500 | [diff] [blame] | 165 | |
Ethan Yonker | e5a288c | 2016-02-15 09:23:57 -0600 | [diff] [blame] | 166 | include $(CLEAR_VARS) |
| 167 | LOCAL_MODULE := init.recovery.logd.rc |
bigbiff | d58ba18 | 2020-03-23 10:02:29 -0400 | [diff] [blame] | 168 | LOCAL_MODULE_TAGS := optional |
bigbiff | 673c7ae | 2020-12-02 19:44:56 -0500 | [diff] [blame] | 169 | LOCAL_MODULE_CLASS := EXECUTABLES |
Captain Throwback | 1f12775 | 2016-01-19 17:30:20 -0500 | [diff] [blame] | 170 | |
Ethan Yonker | e5a288c | 2016-02-15 09:23:57 -0600 | [diff] [blame] | 171 | # Cannot send to TARGET_RECOVERY_ROOT_OUT since build system wipes init*.rc |
| 172 | # during ramdisk creation and only allows init.recovery.*.rc files to be copied |
| 173 | # from TARGET_ROOT_OUT thereafter |
| 174 | LOCAL_MODULE_PATH := $(TARGET_ROOT_OUT) |
Captain Throwback | 1f12775 | 2016-01-19 17:30:20 -0500 | [diff] [blame] | 175 | |
Ethan Yonker | e5a288c | 2016-02-15 09:23:57 -0600 | [diff] [blame] | 176 | LOCAL_SRC_FILES := $(LOCAL_MODULE) |
| 177 | include $(BUILD_PREBUILT) |
| 178 | endif |
Captain Throwback | 1f12775 | 2016-01-19 17:30:20 -0500 | [diff] [blame] | 179 | endif |
Captain Throwback | 5ab5964 | 2019-02-07 17:22:49 -0500 | [diff] [blame] | 180 | |
| 181 | ifeq ($(TW_USE_TOOLBOX), true) |
| 182 | include $(CLEAR_VARS) |
| 183 | LOCAL_MODULE := init.recovery.mksh.rc |
bigbiff | d58ba18 | 2020-03-23 10:02:29 -0400 | [diff] [blame] | 184 | LOCAL_MODULE_TAGS := optional |
bigbiff | 673c7ae | 2020-12-02 19:44:56 -0500 | [diff] [blame] | 185 | LOCAL_MODULE_CLASS := EXECUTABLES |
Captain Throwback | 5ab5964 | 2019-02-07 17:22:49 -0500 | [diff] [blame] | 186 | |
| 187 | # Cannot send to TARGET_RECOVERY_ROOT_OUT since build system wipes init*.rc |
| 188 | # during ramdisk creation and only allows init.recovery.*.rc files to be copied |
| 189 | # from TARGET_ROOT_OUT thereafter |
| 190 | LOCAL_MODULE_PATH := $(TARGET_ROOT_OUT) |
| 191 | |
| 192 | LOCAL_SRC_FILES := $(LOCAL_MODULE) |
| 193 | include $(BUILD_PREBUILT) |
| 194 | endif |