mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-29 13:46:49 +00:00
remove xinit
This commit is contained in:
parent
629903a21b
commit
67758cc221
@ -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
|
@ -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
|
@ -1,7 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /etc/sysconfig
|
||||
|
||||
for file in /etc/X11/xinit/xinitrc.d/* ; do
|
||||
. ${file}
|
||||
done
|
@ -1,7 +0,0 @@
|
||||
################################################################################
|
||||
# root
|
||||
#
|
||||
# Configure the root window.
|
||||
################################################################################
|
||||
|
||||
/usr/bin/xsetroot -solid black
|
@ -1,7 +0,0 @@
|
||||
################################################################################
|
||||
# dpms
|
||||
#
|
||||
# Configure DPMS.
|
||||
################################################################################
|
||||
|
||||
/usr/bin/xset -dpms
|
@ -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
|
@ -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
|
@ -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
|
@ -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
|
@ -1 +0,0 @@
|
||||
http://xorg.freedesktop.org/releases/individual/app/xinit-1.1.1.tar.bz2
|
Loading…
x
Reference in New Issue
Block a user