xorg-server:

- rework of init scripts
- remove of xinit script
- various cleanups
This commit is contained in:
Stephan Raue 2009-11-06 15:39:56 +01:00
parent 40513a68fc
commit 488f6be742
3 changed files with 0 additions and 39 deletions

View File

@ -1,12 +0,0 @@
#!/bin/sh
#
# configure X.Org video settings
#
# runlevels: openelec, debug
. /etc/sysconfig
progress "starting Xorg"
mkdir -p /var/lib/xkb/
xinit > /dev/null 2>&1

View File

@ -24,9 +24,6 @@ XORG_DST="$INSTALL/$XORG_PATH_MODULES"
mkdir -p $INSTALL/usr/bin mkdir -p $INSTALL/usr/bin
cp $XORG_SRC/Xorg $INSTALL/usr/bin cp $XORG_SRC/Xorg $INSTALL/usr/bin
cp -PR $PKG_DIR/scripts/xinit $INSTALL/usr/bin
# cp $XORG_SRC/utils/cvt/cvt $INSTALL/usr/bin
mkdir -p $XORG_DST mkdir -p $XORG_DST
cp $XORG_SRC/exa/.libs/libexa.so $XORG_DST cp $XORG_SRC/exa/.libs/libexa.so $XORG_DST
@ -74,7 +71,6 @@ cp $PKG_BUILD/config/x11-input.fdi $INSTALL/usr/share/hal/fdi/policy/10osvendor/
#Drivers #Drivers
$SCRIPTS/install xf86-input-evdev $SCRIPTS/install xf86-input-evdev
$SCRIPTS/install xf86-input-synaptics
get_graphicdrivers get_graphicdrivers
@ -83,6 +79,4 @@ get_graphicdrivers
done done
#Tools #Tools
$SCRIPTS/install openbox
$SCRIPTS/install xrandr $SCRIPTS/install xrandr
[ "$DEVTOOLS" = yes ] && $SCRIPTS/install mrxvt

View File

@ -1,21 +0,0 @@
#!/bin/sh
. /etc/sysconfig
args="-s 0 -br -noreset -allowMouseOpenFail "
mkdir -p /var/cache/xkb
exec /usr/bin/Xorg :0.0 vt$TTY ${args} > /dev/null 2>&1 &
while true; do
if [ -f /tmp/.X0-lock ]; then
for file in /etc/xinitrc.d/* ; do
. ${file}
done
break
fi
done