diff options
author | Nick Kralevich <nnk@google.com> | 2014-11-10 17:42:57 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2014-11-10 17:42:58 +0000 |
commit | 65a83bdf2ea1643449294a23a450e5a8a5b5058c (patch) | |
tree | d5ca8990fb2f8adb0447b5a9654477fca6fe2692 | |
parent | f02c7972560bc512552830c8110d026136a3a87f (diff) | |
parent | 60ac6364ec5c0432701d5e01aa7c507019769f9c (diff) | |
download | system_core-65a83bdf2ea1643449294a23a450e5a8a5b5058c.zip system_core-65a83bdf2ea1643449294a23a450e5a8a5b5058c.tar.gz system_core-65a83bdf2ea1643449294a23a450e5a8a5b5058c.tar.bz2 |
Merge "Reserve some AIDs for OEMs"
-rw-r--r-- | include/private/android_filesystem_config.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/private/android_filesystem_config.h b/include/private/android_filesystem_config.h index 5d9c3ea..b2f91a5 100644 --- a/include/private/android_filesystem_config.h +++ b/include/private/android_filesystem_config.h @@ -83,6 +83,11 @@ #define AID_CACHE 2001 /* cache access */ #define AID_DIAG 2002 /* access to diagnostic resources */ +/* The range 2900-2999 is reserved for OEM, and must never be + * used here */ +#define AID_OEM_RESERVED_START 2900 +#define AID_OEM_RESERVED_END 2999 + /* The 3000 series are intended for use as supplemental group id's only. * They indicate special Android capabilities that the kernel is aware of. */ #define AID_NET_BT_ADMIN 3001 /* bluetooth: create any socket */ |