remove xinit

This commit is contained in:
Stephan Raue 2009-03-18 15:06:48 +01:00
parent 629903a21b
commit 67758cc221
10 changed files with 0 additions and 99 deletions

View File

@ -1,17 +0,0 @@
#!/bin/sh
. config/options
$SCRIPTS/build toolchain
cd $BUILD/$1*
./configure --host=$TARGET_NAME \
--build=$HOST_NAME \
--prefix=/usr \
--sysconfdir=/etc \
--disable-static \
--enable-shared \
make
$STRIP $1

View File

@ -1,11 +0,0 @@
#!/bin/sh
. config/options
PKG_DIR=`find $PACKAGES -type d -name $1`
mkdir -p $INSTALL/usr/bin
cp -PR $BUILD/$1*/$1 $INSTALL/usr/bin
mkdir -p $INSTALL/etc/X11/xinit
cp -PR $PKG_DIR/scripts/* $INSTALL/etc/X11/xinit

View File

@ -1,7 +0,0 @@
#!/bin/sh
. /etc/sysconfig
for file in /etc/X11/xinit/xinitrc.d/* ; do
. ${file}
done

View File

@ -1,7 +0,0 @@
################################################################################
# root
#
# Configure the root window.
################################################################################
/usr/bin/xsetroot -solid black

View File

@ -1,7 +0,0 @@
################################################################################
# dpms
#
# Configure DPMS.
################################################################################
/usr/bin/xset -dpms

View File

@ -1,11 +0,0 @@
################################################################################
# windowmanager
#
# If enabled, then start the window manageer.
# The ratpoison window manager should be enabled on systems that plan to use
# MythGame in order to enable the game emulators to get focus and exit.
################################################################################
if /usr/bin/test "${MM_X_WM_ENABLED}" = "yes" ; then
/usr/bin/ratpoison &
fi

View File

@ -1,9 +0,0 @@
################################################################################
# xmodmap
#
# Loads the X keyboard map file named /etc/X11/xmodmaprc, if the file exists.
################################################################################
if /usr/bin/test -e /etc/X11/xmodmaprc ; then
/usr/bin/xmodmap /etc/X11/xmodmaprc
fi

View File

@ -1,22 +0,0 @@
################################################################################
# Start myth program.
#
# The myth program (not the window manager) is the application that runs in the
# foreground because it is the only application that we can be sure will be
# running.
################################################################################
if /usr/bin/test "${MM_X_MYTH_PROGRAM}" = "mythfrontend" ; then
args=""
if /usr/bin/test "${MM_DEBUG}" = "yes" ; then
args="${args} -v all"
fi
if ( /usr/bin/test ${MM_VERSION_MYTH_BINARY_MAJOR} -ge 1 ) || \
( /usr/bin/test ${MM_VERSION_MYTH_BINARY_MAJOR} -eq 0 && \
/usr/bin/test ${MM_VERSION_MYTH_BINARY_MINOR} -ge 21 ) ; then
args="${args} -d"
fi
/usr/bin/mythfrontend ${args} 2>&1 | /usr/bin/logger -t mythfrontend -p local0.info
elif /usr/bin/test "${MM_X_MYTH_PROGRAM}" = "mythwelcome" ; then
/usr/bin/mythwelcome 2>&1 | /usr/bin/logger -t mythwelcome -p local0.info
fi

View File

@ -1,7 +0,0 @@
#!/bin/sh
. /etc/sysconfig
# 'vt02' starts X on virtual terminal 2.
# '-logverbose 6' enables useful troubleshooting output in /var/log/Xorg.0.0.log.
exec /usr/bin/X :0.0 vt$TTY -logverbose 6 -verbose 0 > /dev/null 2>&1

View File

@ -1 +0,0 @@
http://xorg.freedesktop.org/releases/individual/app/xinit-1.1.1.tar.bz2