Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/osm0sis/mkbootfs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosh Gao <jmgao@google.com>2016-10-19 04:17:52 +0300
committerosm0sis <osm0sis@outlook.com>2017-08-05 02:26:12 +0300
commit5211bd9159e1fdfc1bb1609380d9d3a8566dbc7e (patch)
tree95e8d7eeadaa6e08c92a1d670696f98a03d0d868
parent16d4aac0c453773eb8987207aa295228b4f923d9 (diff)
debuggerd: advance our amazing bet.
Remove debuggerd in favor of a helper process that gets execed by crashing processes. Bug: http://b/30705528 Test: debuggerd_test Change-Id: I9906c69473989cbf7fe5ea6cccf9a9c563d75906 Conflicts: include/private/android_filesystem_config.h libcutils/fs_config.c Resolution: Correct path and backport changes from fs_config.c
-rw-r--r--private/android_filesystem_config.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/private/android_filesystem_config.h b/private/android_filesystem_config.h
index db82fbda..fd1ddef4 100644
--- a/private/android_filesystem_config.h
+++ b/private/android_filesystem_config.h
@@ -127,6 +127,7 @@
#define AID_MEDIA_AUDIO 1055 /* GID for audio files on internal media storage */
#define AID_MEDIA_VIDEO 1056 /* GID for video files on internal media storage */
#define AID_MEDIA_IMAGE 1057 /* GID for image files on internal media storage */
+#define AID_TOMBSTONED 1058 /* tombstoned user */
/* Changes to this file must be made in AOSP, *not* in internal branches. */
#define AID_THEMEMAN 1300 /* theme manager */
@@ -372,6 +373,9 @@ static const struct fs_path_config android_files[] = {
CAP_MASK_LONG(CAP_SETPCAP),
"system/bin/webview_zygote64" },
+ { 00755, AID_ROOT, AID_SHELL, 0, "system/bin/crash_dump32" },
+ { 00755, AID_ROOT, AID_SHELL, 0, "system/bin/crash_dump64" },
+ { 00755, AID_ROOT, AID_SHELL, 0, "system/bin/debuggerd" },
{ 00750, AID_ROOT, AID_ROOT, 0, "system/bin/uncrypt" },
{ 00750, AID_ROOT, AID_ROOT, 0, "system/bin/install-recovery.sh" },
{ 00755, AID_ROOT, AID_SHELL, 0, "system/bin/*" },