summaryrefslogtreecommitdiff
path: root/openembedded/packages/x11/x11-common/etc/X11/Xsession
diff options
context:
space:
mode:
authorMatthew Allum <mallum@openedhand.com>2005-08-31 21:08:40 +0000
committerMatthew Allum <mallum@openedhand.com>2005-08-31 21:08:40 +0000
commit7755d9d194b42ea859096f805f2e22ae5b6e6281 (patch)
treea4430bb7c0b4c298b6a9099fcfbdb7cfc045ae98 /openembedded/packages/x11/x11-common/etc/X11/Xsession
parent962491ebe2df3563ea8e9b6803949c98c387a134 (diff)
downloadopenembedded-core-7755d9d194b42ea859096f805f2e22ae5b6e6281.tar.gz
openembedded-core-7755d9d194b42ea859096f805f2e22ae5b6e6281.tar.bz2
openembedded-core-7755d9d194b42ea859096f805f2e22ae5b6e6281.tar.xz
openembedded-core-7755d9d194b42ea859096f805f2e22ae5b6e6281.zip
rename x11-common to xserver-kdrive-common
git-svn-id: https://svn.o-hand.com/repos/poky@12 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'openembedded/packages/x11/x11-common/etc/X11/Xsession')
-rw-r--r--openembedded/packages/x11/x11-common/etc/X11/Xsession47
1 files changed, 0 insertions, 47 deletions
diff --git a/openembedded/packages/x11/x11-common/etc/X11/Xsession b/openembedded/packages/x11/x11-common/etc/X11/Xsession
deleted file mode 100644
index cfa3a9a6e..000000000
--- a/openembedded/packages/x11/x11-common/etc/X11/Xsession
+++ /dev/null
@@ -1,47 +0,0 @@
-#!/bin/sh
-
-# this location MUST be consistent with /etc/X11/gpe-login.pre-session
-HOME_VOLATILE=/home/$USER/ramdisk
-export HOME_VOLATILE
-
-if [ -f /usr/bin/dbus-launch ]; then
- ## test for an existing bus daemon, just to be safe
- if test -z "$DBUS_SESSION_BUS_ADDRESS" ; then
- ## if not found, launch a new one
- eval `dbus-launch --auto-syntax --exit-with-session`
- echo "D-BUS per-session daemon address is: $DBUS_SESSION_BUS_ADDRESS"
- fi
-fi
-
-. /etc/profile
-
-if [ -f $HOME/.profile ]; then
- . $HOME/.profile
-fi
-
-SYSSESSIONDIR=/etc/X11/Xsession-gpe.d
-
-if [ ! -d $SYSSESSIONDIR ]; then
- SYSSESSIONDIR=/etc/X11/Xsession.d
-fi
-
-# Use run-parts to source every file in the session directory; we source
-# instead of executing so that the variables and functions defined above
-# are available to the scripts, and so that they can pass variables to each
-# other.
-
-# Can't use run-parts like this, busybox doesn't support it. Use ls instead
-#SESSIONFILES=$(run-parts --list $SYSSESSIONDIR)
-
-SESSIONFILES=`ls -X $SYSSESSIONDIR`
-if [ -n "$SESSIONFILES" ]; then
- for SESSIONFILE in $SESSIONFILES; do
- # Test if script is executable first before sourcing it
- if [ -x "$SYSSESSIONDIR/$SESSIONFILE" ]; then
- . $SYSSESSIONDIR/$SESSIONFILE
- fi
- done
-fi
-
-exit 0
-