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 | 49df547 | 2020-10-19 11:13:53 -0400 | [diff] [blame] | 70 | ifeq ($(AB_OTA_UPDATER),true) |
| 71 | include $(CLEAR_VARS) |
| 72 | LOCAL_MODULE := android.hardware.boot@1.0-service.rc |
| 73 | LOCAL_MODULE_TAGS := optional |
bigbiff | 673c7ae | 2020-12-02 19:44:56 -0500 | [diff] [blame] | 74 | LOCAL_MODULE_CLASS := EXECUTABLES |
Captain Throwback | 49df547 | 2020-10-19 11:13:53 -0400 | [diff] [blame] | 75 | LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/system/etc/init |
| 76 | |
| 77 | LOCAL_SRC_FILES := init/$(LOCAL_MODULE) |
| 78 | include $(BUILD_PREBUILT) |
| 79 | endif |
| 80 | |
Captain Throwback | ddb0a40 | 2020-11-01 12:52:21 -0500 | [diff] [blame] | 81 | ifeq ($(PRODUCT_USE_DYNAMIC_PARTITIONS),true) |
| 82 | include $(CLEAR_VARS) |
| 83 | LOCAL_MODULE := android.hardware.health@2.0-service.rc |
| 84 | LOCAL_MODULE_TAGS := optional |
bigbiff | 673c7ae | 2020-12-02 19:44:56 -0500 | [diff] [blame] | 85 | LOCAL_MODULE_CLASS := EXECUTABLES |
Captain Throwback | ddb0a40 | 2020-11-01 12:52:21 -0500 | [diff] [blame] | 86 | LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/system/etc/init |
| 87 | |
| 88 | LOCAL_SRC_FILES := init/$(LOCAL_MODULE) |
| 89 | include $(BUILD_PREBUILT) |
| 90 | endif |
| 91 | |
Captain Throwback | 49df547 | 2020-10-19 11:13:53 -0400 | [diff] [blame] | 92 | ifneq ($(TW_INCLUDE_CRYPTO),) |
| 93 | include $(CLEAR_VARS) |
Captain Throwback | ddb0a40 | 2020-11-01 12:52:21 -0500 | [diff] [blame] | 94 | LOCAL_MODULE := hwservicemanager.rc |
| 95 | LOCAL_MODULE_TAGS := optional |
bigbiff | 673c7ae | 2020-12-02 19:44:56 -0500 | [diff] [blame] | 96 | LOCAL_MODULE_CLASS := EXECUTABLES |
Captain Throwback | ddb0a40 | 2020-11-01 12:52:21 -0500 | [diff] [blame] | 97 | LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/system/etc/init |
| 98 | |
| 99 | LOCAL_SRC_FILES := init/$(LOCAL_MODULE) |
| 100 | include $(BUILD_PREBUILT) |
| 101 | |
| 102 | include $(CLEAR_VARS) |
Captain Throwback | 49df547 | 2020-10-19 11:13:53 -0400 | [diff] [blame] | 103 | LOCAL_MODULE := vndservicemanager.rc |
| 104 | LOCAL_MODULE_TAGS := optional |
bigbiff | 673c7ae | 2020-12-02 19:44:56 -0500 | [diff] [blame] | 105 | LOCAL_MODULE_CLASS := EXECUTABLES |
Captain Throwback | 49df547 | 2020-10-19 11:13:53 -0400 | [diff] [blame] | 106 | LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/system/etc/init |
| 107 | |
| 108 | LOCAL_SRC_FILES := init/$(LOCAL_MODULE) |
| 109 | include $(BUILD_PREBUILT) |
Captain Throwback | ddb0a40 | 2020-11-01 12:52:21 -0500 | [diff] [blame] | 110 | |
| 111 | ifneq ($(TW_INCLUDE_CRYPTO_FBE),) |
| 112 | include $(CLEAR_VARS) |
| 113 | LOCAL_MODULE := servicemanager.rc |
| 114 | LOCAL_MODULE_TAGS := optional |
bigbiff | 673c7ae | 2020-12-02 19:44:56 -0500 | [diff] [blame] | 115 | LOCAL_MODULE_CLASS := EXECUTABLES |
Captain Throwback | ddb0a40 | 2020-11-01 12:52:21 -0500 | [diff] [blame] | 116 | LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/system/etc/init |
| 117 | |
| 118 | LOCAL_SRC_FILES := init/$(LOCAL_MODULE) |
| 119 | include $(BUILD_PREBUILT) |
| 120 | endif |
Captain Throwback | 49df547 | 2020-10-19 11:13:53 -0400 | [diff] [blame] | 121 | endif |
| 122 | |
Ethan Yonker | e5a288c | 2016-02-15 09:23:57 -0600 | [diff] [blame] | 123 | ifeq ($(TWRP_INCLUDE_LOGCAT), true) |
| 124 | ifeq ($(TARGET_USES_LOGD), true) |
Captain Throwback | 1f12775 | 2016-01-19 17:30:20 -0500 | [diff] [blame] | 125 | |
Ethan Yonker | e5a288c | 2016-02-15 09:23:57 -0600 | [diff] [blame] | 126 | include $(CLEAR_VARS) |
| 127 | LOCAL_MODULE := init.recovery.logd.rc |
bigbiff | d58ba18 | 2020-03-23 10:02:29 -0400 | [diff] [blame] | 128 | LOCAL_MODULE_TAGS := optional |
bigbiff | 673c7ae | 2020-12-02 19:44:56 -0500 | [diff] [blame] | 129 | LOCAL_MODULE_CLASS := EXECUTABLES |
Captain Throwback | 1f12775 | 2016-01-19 17:30:20 -0500 | [diff] [blame] | 130 | |
Ethan Yonker | e5a288c | 2016-02-15 09:23:57 -0600 | [diff] [blame] | 131 | # Cannot send to TARGET_RECOVERY_ROOT_OUT since build system wipes init*.rc |
| 132 | # during ramdisk creation and only allows init.recovery.*.rc files to be copied |
| 133 | # from TARGET_ROOT_OUT thereafter |
| 134 | LOCAL_MODULE_PATH := $(TARGET_ROOT_OUT) |
Captain Throwback | 1f12775 | 2016-01-19 17:30:20 -0500 | [diff] [blame] | 135 | |
Ethan Yonker | e5a288c | 2016-02-15 09:23:57 -0600 | [diff] [blame] | 136 | LOCAL_SRC_FILES := $(LOCAL_MODULE) |
| 137 | include $(BUILD_PREBUILT) |
| 138 | endif |
Captain Throwback | 1f12775 | 2016-01-19 17:30:20 -0500 | [diff] [blame] | 139 | endif |
Captain Throwback | 5ab5964 | 2019-02-07 17:22:49 -0500 | [diff] [blame] | 140 | |
| 141 | ifeq ($(TW_USE_TOOLBOX), true) |
| 142 | include $(CLEAR_VARS) |
| 143 | LOCAL_MODULE := init.recovery.mksh.rc |
bigbiff | d58ba18 | 2020-03-23 10:02:29 -0400 | [diff] [blame] | 144 | LOCAL_MODULE_TAGS := optional |
bigbiff | 673c7ae | 2020-12-02 19:44:56 -0500 | [diff] [blame] | 145 | LOCAL_MODULE_CLASS := EXECUTABLES |
Captain Throwback | 5ab5964 | 2019-02-07 17:22:49 -0500 | [diff] [blame] | 146 | |
| 147 | # Cannot send to TARGET_RECOVERY_ROOT_OUT since build system wipes init*.rc |
| 148 | # during ramdisk creation and only allows init.recovery.*.rc files to be copied |
| 149 | # from TARGET_ROOT_OUT thereafter |
| 150 | LOCAL_MODULE_PATH := $(TARGET_ROOT_OUT) |
| 151 | |
| 152 | LOCAL_SRC_FILES := $(LOCAL_MODULE) |
| 153 | include $(BUILD_PREBUILT) |
| 154 | endif |