From 7755d9d194b42ea859096f805f2e22ae5b6e6281 Mon Sep 17 00:00:00 2001 From: Matthew Allum Date: Wed, 31 Aug 2005 21:08:40 +0000 Subject: rename x11-common to xserver-kdrive-common git-svn-id: https://svn.o-hand.com/repos/poky@12 311d38ba-8fff-0310-9ca6-ca027cbcb966 --- .../packages/x11/x11-common/etc/X11/Xsession | 47 ---------------------- 1 file changed, 47 deletions(-) delete mode 100644 openembedded/packages/x11/x11-common/etc/X11/Xsession (limited to 'openembedded/packages/x11/x11-common/etc/X11/Xsession') 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 - -- cgit v1.2.3