From 3327570246b6ec0e1949ba44b25badf5f0eb63b5 Mon Sep 17 00:00:00 2001 From: Kazumasa Mitsunari Date: Tue, 8 Nov 2016 11:49:02 +0900 Subject: Enable aglglobalapp to render 1. Enable aglglobalapp to render app using libEGL.so. Originally AGL enables only root user to use libEGL.so because a device is owned by root and video group. It caused users fail to initialize EGL config. 2. Enable user to use XDG_RUNTIME_DIR=/run/user/0 Users don't need to write shell script basically. But if application would like to set unieque environment variables, it is necessary to write shell script. Signed-off-by: Kazumasa Mitsunari --- .../files/pkgmgr-first-setup.sh | 26 +++++++++++----------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'meta-application-manager/recipes-others/pkgmgr-first-setup-service') diff --git a/meta-application-manager/recipes-others/pkgmgr-first-setup-service/files/pkgmgr-first-setup.sh b/meta-application-manager/recipes-others/pkgmgr-first-setup-service/files/pkgmgr-first-setup.sh index 09cb3de..eec7b86 100755 --- a/meta-application-manager/recipes-others/pkgmgr-first-setup-service/files/pkgmgr-first-setup.sh +++ b/meta-application-manager/recipes-others/pkgmgr-first-setup-service/files/pkgmgr-first-setup.sh @@ -1,6 +1,12 @@ -#!/bin/sh -e +#!/bin/sh + +grep "^aglglobalapp:" /etc/group >> /dev/null +if [ $? -ne 0 ]; then + # To add a user "aglglobalapp" + useradd aglglobalapp + FIRST_TIME="ON" +fi -useradd aglglobalapp loginctl enable-linger aglglobalapp vconftool set -t string db/ail/ail_info "0" -f -s system::vconf_inhouse vconftool set -t string db/menuscreen/desktop "0" -f -s system::vconf_inhouse @@ -22,15 +28,9 @@ chown aglglobalapp:root /usr/share/applications chown aglglobalapp:root /usr/apps chown aglglobalapp:root /usr/dbspace -pkg_initdb -ail_initdb - -if [ -e /usr/lib/systemd/system/multi-user.target.wantspkgmgr-first-setup.service ] -then - rm /usr/lib/systemd/system/multi-user.target.wants/pkgmgr-first-setup.service -fi - -if [ -e /lib/systemd/system/multi-user.target.wants/pkgmgr-first-setup.service ] -then - rm /lib/systemd/system/multi-user.target.wants/pkgmgr-first-setup.service +if [ "$FIRST_TIME" ]; then + # This is carried out only at the time of "useradd aglglobalapp" run + gpasswd -a aglglobalapp video + pkg_initdb + ail_initdb fi -- cgit 1.2.3-korg