Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
LICENSE = "GPL"
SECTION = "x11"
PRIORITY = "optional"
-PR = "r18"
-RDEPENDS = "dbus-wait"
+PR = "r21"
+RDEPENDS_${PN} = "dbus-wait sudo"
SRC_URI = "file://xserver-nodm"
S = ${WORKDIR}
case "$1" in
start)
. /etc/profile
+ username=root
echo "Starting Xserver"
- /etc/X11/Xserver &
+ if [ -f /etc/X11/Xusername ]; then
+ username=`cat /etc/X11/Xusername`
+ fi
+ # Using sudo -i here has the nice side effect of making sire
+ # HOME, USER and other previously problematic variables
+ # are set correctly
+ sudo -b -i -u $username /etc/X11/Xserver
# Wait for the desktop to say its finished loading
dbus-wait org.matchbox_project.desktop Loaded
;;