summaryrefslogtreecommitdiff
path: root/yocto-poky/meta/recipes-graphics/x11-common/x11-common/etc/X11/Xsession
diff options
context:
space:
mode:
Diffstat (limited to 'yocto-poky/meta/recipes-graphics/x11-common/x11-common/etc/X11/Xsession')
-rw-r--r--yocto-poky/meta/recipes-graphics/x11-common/x11-common/etc/X11/Xsession38
1 files changed, 0 insertions, 38 deletions
diff --git a/yocto-poky/meta/recipes-graphics/x11-common/x11-common/etc/X11/Xsession b/yocto-poky/meta/recipes-graphics/x11-common/x11-common/etc/X11/Xsession
deleted file mode 100644
index 0b73127ae..000000000
--- a/yocto-poky/meta/recipes-graphics/x11-common/x11-common/etc/X11/Xsession
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/bin/sh
-
-if [ -x /usr/bin/dbus-launch ]; then
- # As this is the X session script, always start a new DBus session.
- eval `dbus-launch --sh-syntax --exit-with-session </dev/null`
- echo "D-BUS per-session daemon address is: $DBUS_SESSION_BUS_ADDRESS"
-fi
-
-. /etc/profile
-
-if [ -f $HOME/.profile ]; then
- . $HOME/.profile
-fi
-
-SYSSESSIONDIR=/etc/X11/Xsession.d
-
-export CLUTTER_DISABLE_MIPMAPPED_TEXT=1
-
-for SESSIONFILE in $SYSSESSIONDIR/*; do
- set +e
- case "$SESSIONFILE" in
- *.sh)
- . "$SESSIONFILE"
- ;;
- *.shbg)
- "$SESSIONFILE" &
- ;;
- *~)
- # Ignore backup files
- ;;
- *)
- "$SESSIONFILE"
- ;;
- esac
- set -e
-done
-
-exit 0