Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cc81fdf0 authored by Ricardo Cerqueira's avatar Ricardo Cerqueira Committed by Steve Kondik
Browse files

Explicitly add the theme manager's AID to fs config

SELinux failed to set the theme manager's context since the
app has a fixed non-user ID, and it didn't map to a pseudo-username.

Change-Id: I287dc0dd02abc164fe22e14c9f3f505c3dcb938d
parent b49bad80
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -74,6 +74,8 @@
#define AID_MEDIA_DRM     1031  /* MediaDrm plugins */
#define AID_AUDIT         1032  /* audit daemon */

#define AID_THEMEMAN      1300  /* theme manager */

#define AID_SHELL         2000  /* adb and debug shell user */
#define AID_CACHE         2001  /* cache access */
#define AID_DIAG          2002  /* access to diagnostic resources */
@@ -188,6 +190,7 @@ static const struct android_id_info android_ids[] = {
    { "nobody",    AID_NOBODY, },
    { "clat",      AID_CLAT, },
    { "mediadrm",  AID_MEDIA_DRM, },
    { "theme_man", AID_THEMEMAN },
    { "audit",      AID_AUDIT, },
};