diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2009-05-27 11:45:22 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2009-05-27 11:45:22 +0100 |
commit | 6ed027a31fe3b400e8f7b1f0b418672f67acff24 (patch) | |
tree | 6ae14a90518eee1c1f98b171a141a266b4d27910 | |
parent | 8f32595f6b8ed885a8291b1eb5cd671ece4b7d58 (diff) | |
download | poky-6ed027a31fe3b400e8f7b1f0b418672f67acff24.tar.gz |
xserver-nodm-init: Add ability to run X as a non-root user
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
-rw-r--r-- | meta/packages/x11-common/xserver-nodm-init.bb | 4 | ||||
-rwxr-xr-x | meta/packages/x11-common/xserver-nodm-init/xserver-nodm | 9 |
2 files changed, 10 insertions, 3 deletions
diff --git a/meta/packages/x11-common/xserver-nodm-init.bb b/meta/packages/x11-common/xserver-nodm-init.bb index 521f17c5f4..c9efb71b81 100644 --- a/meta/packages/x11-common/xserver-nodm-init.bb +++ b/meta/packages/x11-common/xserver-nodm-init.bb | |||
@@ -2,8 +2,8 @@ DESCRIPTION = "Simple Xserver Init Script (no dm)" | |||
2 | LICENSE = "GPL" | 2 | LICENSE = "GPL" |
3 | SECTION = "x11" | 3 | SECTION = "x11" |
4 | PRIORITY = "optional" | 4 | PRIORITY = "optional" |
5 | PR = "r18" | 5 | PR = "r21" |
6 | RDEPENDS = "dbus-wait" | 6 | RDEPENDS_${PN} = "dbus-wait sudo" |
7 | 7 | ||
8 | SRC_URI = "file://xserver-nodm" | 8 | SRC_URI = "file://xserver-nodm" |
9 | S = ${WORKDIR} | 9 | S = ${WORKDIR} |
diff --git a/meta/packages/x11-common/xserver-nodm-init/xserver-nodm b/meta/packages/x11-common/xserver-nodm-init/xserver-nodm index f6399fc1fa..69ea949724 100755 --- a/meta/packages/x11-common/xserver-nodm-init/xserver-nodm +++ b/meta/packages/x11-common/xserver-nodm-init/xserver-nodm | |||
@@ -26,8 +26,15 @@ done | |||
26 | case "$1" in | 26 | case "$1" in |
27 | start) | 27 | start) |
28 | . /etc/profile | 28 | . /etc/profile |
29 | username=root | ||
29 | echo "Starting Xserver" | 30 | echo "Starting Xserver" |
30 | /etc/X11/Xserver & | 31 | if [ -f /etc/X11/Xusername ]; then |
32 | username=`cat /etc/X11/Xusername` | ||
33 | fi | ||
34 | # Using sudo -i here has the nice side effect of making sire | ||
35 | # HOME, USER and other previously problematic variables | ||
36 | # are set correctly | ||
37 | sudo -b -i -u $username /etc/X11/Xserver | ||
31 | # Wait for the desktop to say its finished loading | 38 | # Wait for the desktop to say its finished loading |
32 | dbus-wait org.matchbox_project.desktop Loaded | 39 | dbus-wait org.matchbox_project.desktop Loaded |
33 | ;; | 40 | ;; |