Move init.recovery.qcom.rc and init.recovery.usb.rc from PRODUCT_COPY_FILES to proper prebuilt_etc modules. This aligns recovery configuration with Soong-only builds, ensures correct installation under /recovery/root, and improves maintainability going forward.
21 lines
444 B
Plaintext
21 lines
444 B
Plaintext
//
|
|
// Copyright (C) 2026 The LineageOS Project
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
prebuilt_etc {
|
|
name: "init.recovery.qcom.rc",
|
|
src: "init.recovery.qcom.rc",
|
|
sub_dir: "recovery/root",
|
|
filename: "init.recovery.qcom.rc",
|
|
installable: true,
|
|
}
|
|
|
|
prebuilt_etc {
|
|
name: "init.recovery.usb.rc",
|
|
src: "init.recovery.usb.rc",
|
|
sub_dir: "recovery/root",
|
|
filename: "init.recovery.usb.rc",
|
|
installable: true,
|
|
}
|