summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorChung-yih Wang <cywang@google.com>2009-06-08 20:01:48 -0700
committerThe Android Open Source Project <initial-contribution@android.com>2009-06-08 20:01:48 -0700
commit50900772ed37826e2320716a4fa0aa92e903a9b1 (patch)
tree2e5d1cb79635e7873ff46916a43b421b8f079760 /include
parentce51b3b55f3facfce5dccebc73bd1903e163103e (diff)
parent1f75d709c10f49d2e2390b888e766bcfd17da860 (diff)
downloadsystem_core-50900772ed37826e2320716a4fa0aa92e903a9b1.zip
system_core-50900772ed37826e2320716a4fa0aa92e903a9b1.tar.gz
system_core-50900772ed37826e2320716a4fa0aa92e903a9b1.tar.bz2
am 1f75d709: Add VPN and Keystore services and data directories.
Merge commit '1f75d709c10f49d2e2390b888e766bcfd17da860' * commit '1f75d709c10f49d2e2390b888e766bcfd17da860': Add VPN and Keystore services and data directories.
Diffstat (limited to 'include')
-rw-r--r--include/private/android_filesystem_config.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/private/android_filesystem_config.h b/include/private/android_filesystem_config.h
index a4351ac..4590626 100644
--- a/include/private/android_filesystem_config.h
+++ b/include/private/android_filesystem_config.h
@@ -50,6 +50,7 @@
#define AID_DHCP 1014 /* dhcp client */
#define AID_SDCARD_RW 1015 /* external storage write access */
#define AID_VPN 1016 /* vpn system */
+#define AID_KEYSTORE 1017 /* keystore subsystem */
#define AID_SHELL 2000 /* adb and debug shell user */
#define AID_CACHE 2001 /* cache access */
@@ -97,7 +98,8 @@ static struct android_id_info android_ids[] = {
{ "net_bt", AID_NET_BT, },
{ "sdcard_rw", AID_SDCARD_RW, },
{ "vpn", AID_VPN, },
- { "inet", AID_INET, },
+ { "keystore", AID_KEYSTORE, },
+ { "inet", AID_INET, },
{ "net_raw", AID_NET_RAW, },
{ "misc", AID_MISC, },
{ "nobody", AID_NOBODY, },