Lines Matching full:system
87 { 00755, AID_ROOT, AID_SHELL, 0, "system/bin" },
88 { 00755, AID_ROOT, AID_ROOT, 0, "system/etc/ppp" },
89 { 00755, AID_ROOT, AID_SHELL, 0, "system/vendor" },
90 { 00755, AID_ROOT, AID_SHELL, 0, "system/xbin" },
104 static const char sys_conf_dir[] = "/system/etc/fs_config_dirs";
105 static const char sys_conf_file[] = "/system/etc/fs_config_files";
106 // No restrictions are placed on the vendor and oem file-system config files,
108 // oem/ file-system since the intent is to provide support for customized
110 // customization can also land on /system/vendor, /system/oem or /system/odm.
131 // See https://source.android.com/devices/tech/config/filesystem#using-file-system-capabilities
144 { 00600, AID_ROOT, AID_ROOT, 0, "system/etc/prop.default" },
153 { 00755, AID_ROOT, AID_SHELL, 0, "system/bin/crash_dump32" },
154 { 00755, AID_ROOT, AID_SHELL, 0, "system/bin/crash_dump64" },
155 { 00755, AID_ROOT, AID_SHELL, 0, "system/bin/debuggerd" },
156 { 00750, AID_ROOT, AID_ROOT, 0, "system/bin/install-recovery.sh" },
157 { 00700, AID_ROOT, AID_ROOT, 0, "system/bin/secilc" },
158 { 00750, AID_ROOT, AID_ROOT, 0, "system/bin/uncrypt" },
159 { 00600, AID_ROOT, AID_ROOT, 0, "system/build.prop" },
162 { 00440, AID_ROOT, AID_SHELL, 0, "system/etc/init.goldfish.rc" },
163 { 00550, AID_ROOT, AID_SHELL, 0, "system/etc/init.goldfish.sh" },
164 { 00550, AID_ROOT, AID_SHELL, 0, "system/etc/init.ril" },
165 { 00555, AID_ROOT, AID_ROOT, 0, "system/etc/ppp/*" },
166 { 00555, AID_ROOT, AID_ROOT, 0, "system/etc/rc.*" },
167 { 00440, AID_ROOT, AID_ROOT, 0, "system/etc/recovery.img" },
175 { 06755, AID_ROOT, AID_ROOT, 0, "system/xbin/procmem" },
176 { 04750, AID_ROOT, AID_SHELL, 0, "system/xbin/su" },
181 "system/bin/inputflinger" },
185 "system/bin/logd" },
187 "system/bin/bootstat" },
190 "system/bin/run-as" },
194 "system/bin/surfaceflinger" },
201 { 00755, AID_ROOT, AID_SHELL, 0, "system/bin/*" },
202 { 00755, AID_ROOT, AID_ROOT, 0, "system/lib/valgrind/*" },
203 { 00755, AID_ROOT, AID_ROOT, 0, "system/lib64/valgrind/*" },
204 { 00755, AID_ROOT, AID_SHELL, 0, "system/xbin/*" },
225 // system partition but as we cannot guarantee it ends with '/system'
230 len = strip(target_out_path, len, "/system");
259 // alias prefixes of "<partition>/<stuff>" to "system/<partition>/<stuff>" or
260 // "system/<partition>/<stuff>" to "<partition>/<stuff>"
271 static const char system[] = "system/";
272 if (!strncmp(path, system, strlen(system))) {
273 path += strlen(system);
274 plen -= strlen(system);
275 } else if (len <= strlen(system)) {
277 } else if (strncmp(prefix, system, strlen(system))) {
280 prefix += strlen(system);
281 len -= strlen(system);