Merge "init: Set permissions for dynamic partial update node"

This commit is contained in:
Linux Build Service Account 2014-11-30 13:18:12 -08:00 committed by Gerrit - the friendly Code Review server
commit 7bf1b42613
1 changed files with 4 additions and 0 deletions

View File

@ -179,6 +179,10 @@ void set_display_node_perms()
snprintf(tmp, sizeof(tmp), "%sfb0/dynamic_fps", sys_fb_path);
setPerms(tmp, 0664);
setOwners(tmp, AID_SYSTEM, AID_GRAPHICS);
// Set permissions for dynamic partial update
snprintf(tmp, sizeof(tmp), "%sfb0/dyn_pu", sys_fb_path);
setPerms(tmp, 0664);
setOwners(tmp, AID_SYSTEM, AID_GRAPHICS);
}
static int check_rlim_action()