blob: d27b5dca38d516cdf422ae3bac10903e2ef4d20a [file] [log] [blame]
Nahhk01babc72025-03-19 08:42:03 -05001//
2// Copyright (C) 2025 The LineageOS Project
3//
4// SPDX-License-Identifier: Apache-2.0
5//
6
7// fstab
8prebuilt_etc {
9 name: "fstab.qcom",
10 src: "etc/fstab.qcom",
11 vendor: true,
12 vendor_ramdisk_available: true,
13}
14
15// zram
16prebuilt_etc {
17 name: "init.recovery.qcom.rc",
18 src: "etc/init.recovery.qcom.rc",
19 sub_dir: "init",
20 recovery: true,
21}
ReStranger3d63ad72025-09-30 04:05:06 +030022
23// Init configuration files
24prebuilt_etc {
25 name: "init.qcom.rc",
26 src: "etc/init.qcom.rc",
27 sub_dir: "init/hw",
28 vendor: true,
29}
30
31prebuilt_etc {
32 name: "init.qti.kernel.rc",
33 src: "etc/init.qti.kernel.rc",
34 sub_dir: "init/hw",
35 vendor: true,
36}
37
38prebuilt_etc {
39 name: "init.recovery.qcom.rc",
40 src: "etc/init.recovery.qcom.rc",
41 sub_dir: "init",
42 recovery: true,
43}
44
45prebuilt_etc {
46 name: "init.target.rc",
47 src: "etc/init.target.rc",
48 sub_dir: "init/hw",
49 vendor: true,
50}
51
52prebuilt_etc {
53 name: "ueventd.qcom.rc",
54 filename: "ueventd.rc",
55 src: "etc/ueventd.qcom.rc",
56 vendor: true,
57}
58
59// Init scripts
60sh_binary {
61 name: "init.class_main.sh",
62 src: "bin/init.class_main.sh",
63 vendor: true,
64}
65
66sh_binary {
67 name: "init.kernel.post_boot-bengal.sh",
68 src: "bin/init.kernel.post_boot-bengal.sh",
69 vendor: true,
70}
71
72sh_binary {
73 name: "init.kernel.post_boot-bengal-iot.sh",
74 src: "bin/init.kernel.post_boot-bengal-iot.sh",
75 vendor: true,
76}
77
78sh_binary {
79 name: "init.kernel.post_boot.sh",
80 src: "bin/init.kernel.post_boot.sh",
81 vendor: true,
82}
83
84sh_binary {
85 name: "init.qcom.class_core.sh",
86 src: "bin/init.qcom.class_core.sh",
87 vendor: true,
88}
89
90sh_binary {
91 name: "init.qcom.early_boot.sh",
92 src: "bin/init.qcom.early_boot.sh",
93 vendor: true,
94}
95
96sh_binary {
97 name: "init.qcom.sh",
98 src: "bin/init.qcom.sh",
99 vendor: true,
100}
101
102sh_binary {
103 name: "init.qti.dcvs.sh",
104 src: "bin/init.qti.dcvs.sh",
105 vendor: true,
106}
107
108sh_binary {
109 name: "init.qti.early_init.sh",
110 src: "bin/init.qti.early_init.sh",
111 vendor: true,
112}
113
114sh_binary {
115 name: "init.qti.kernel.sh",
116 src: "bin/init.qti.kernel.sh",
117 vendor: true,
118}
119
120sh_binary {
121 name: "init.qti.write.sh",
122 src: "bin/init.qti.write.sh",
123 vendor: true,
124}
125
126sh_binary {
127 name: "system_dlkm_modprobe.sh",
128 src: "bin/system_dlkm_modprobe.sh",
129 vendor: true,
130}
131
132sh_binary {
133 name: "vendor_modprobe.sh",
134 src: "bin/vendor_modprobe.sh",
135 vendor: true,
136}