mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-28 13:16:41 +00:00
projects:
- remove outdated projects
This commit is contained in:
parent
797018c86a
commit
08c0858281
File diff suppressed because it is too large
Load Diff
@ -1,86 +0,0 @@
|
|||||||
# Welcome Message for e.g. SSH Server (up to 5 Lines)
|
|
||||||
GREATING0="#######################################################"
|
|
||||||
GREATING1="# Welcome to OpenELEC - the powerfull Mediacenter4you #"
|
|
||||||
GREATING2="# .......... visit http://www.openelec.tv .......... #"
|
|
||||||
GREATING3="#######################################################"
|
|
||||||
GREATING4=""
|
|
||||||
|
|
||||||
# Root password to integrate in the target system
|
|
||||||
ROOT_PASSWORD="openelec"
|
|
||||||
|
|
||||||
# Mediacenter to use (moovida / mythtv / no)
|
|
||||||
MEDIACENTER=moovida
|
|
||||||
|
|
||||||
# build with network support (yes / no)
|
|
||||||
NETWORK=yes
|
|
||||||
|
|
||||||
# Displayserver to use (wayland / xorg-server / no)
|
|
||||||
DISPLAYSERVER=xorg-server
|
|
||||||
|
|
||||||
# Graphic drivers to use (all / i915,i965,r200,r300,r600,radeon,nouveau)
|
|
||||||
# Space separated list is supported, e.g. GRAPHIC_DRIVERS="i915 i965 radeon nouveau"
|
|
||||||
GRAPHIC_DRIVERS="radeon r600"
|
|
||||||
|
|
||||||
# MESA to use (Mesa / Mesa-master)
|
|
||||||
MESA=Mesa-master
|
|
||||||
|
|
||||||
# libdrm to use (libdrm / libdrm-master)
|
|
||||||
LIBDRM=libdrm
|
|
||||||
|
|
||||||
# build with games support (yes / no)
|
|
||||||
GAMES=yes
|
|
||||||
|
|
||||||
# build with emulator support (yes / no)
|
|
||||||
EMULATORS=yes
|
|
||||||
|
|
||||||
# Coreboot support (yes / no)
|
|
||||||
COREBOOT=no
|
|
||||||
|
|
||||||
#####################################################################
|
|
||||||
## Do not change anything below this line
|
|
||||||
#####################################################################
|
|
||||||
|
|
||||||
if [ "$DISPLAYSERVER" = xorg-server ]; then
|
|
||||||
CAIRO=cairo
|
|
||||||
elif [ "$DISPLAYSERVER" = wayland ]; then
|
|
||||||
CAIRO=cairo-drm
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ "$MEDIACENTER" = mythtv ]; then
|
|
||||||
XINERAMA=yes
|
|
||||||
MESA_GLU=yes
|
|
||||||
fi
|
|
||||||
|
|
||||||
get_graphicdrivers() {
|
|
||||||
if [ "$GRAPHIC_DRIVERS" = all ]; then
|
|
||||||
GRAPHIC_DRIVERS="i915 i965 r200 r300 r600 radeon nouveau"
|
|
||||||
fi
|
|
||||||
|
|
||||||
for drv in $GRAPHIC_DRIVERS; do
|
|
||||||
[ $drv = i915 ] && MESA_DRIVERS="$MESA_DRIVERS,i915"
|
|
||||||
[ $drv = i965 ] && MESA_DRIVERS="$MESA_DRIVERS,i965"
|
|
||||||
[ $drv = r200 ] && MESA_DRIVERS="$MESA_DRIVERS,r200"
|
|
||||||
[ $drv = r300 ] && MESA_DRIVERS="$MESA_DRIVERS,r300"
|
|
||||||
[ $drv = r600 ] && MESA_DRIVERS="$MESA_DRIVERS,r600"
|
|
||||||
[ $drv = radeon ] && MESA_DRIVERS="$MESA_DRIVERS,radeon"
|
|
||||||
|
|
||||||
if [ $drv = i915 -o $drv = i965 ]; then
|
|
||||||
MESA_CONFIG="$MESA_CONFIG --enable-gallium-intel"
|
|
||||||
XORG_DRIVERS="$XORG_DRIVERS intel"
|
|
||||||
DRM_DRIVERS="$DRM_DRIVERS intel"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ $drv = r200 -o $drv = r300 -o $drv = r600 -o $drv = radeon ]; then
|
|
||||||
MESA_CONFIG="$MESA_CONFIG --enable-gallium-radeon"
|
|
||||||
XORG_DRIVERS="$XORG_DRIVERS ati"
|
|
||||||
DRM_DRIVERS="$DRM_DRIVERS radeon"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ $drv = nouveau ]; then
|
|
||||||
MESA_CONFIG="$MESA_CONFIG --enable-gallium-nouveau"
|
|
||||||
XORG_DRIVERS="$XORG_DRIVERS nouveau"
|
|
||||||
DRM_DRIVERS="$DRM_DRIVERS nouveau"
|
|
||||||
fi
|
|
||||||
|
|
||||||
done
|
|
||||||
}
|
|
File diff suppressed because it is too large
Load Diff
@ -1,15 +0,0 @@
|
|||||||
# Mediacenter to use (moovida, entertainer)
|
|
||||||
MEDIACENTER=moovida
|
|
||||||
|
|
||||||
GAMES=yes
|
|
||||||
EMULATORS=yes
|
|
||||||
|
|
||||||
# X.org drivers to use (all/ati/geode/glint/i740/intel/mga/nv/openchrome/
|
|
||||||
# radeonhd/s3/s3virge/savage/sis/tdfx/trident/vesa/vmware)
|
|
||||||
# Space separated list is supported, e.g. XORG_DRIVERS="ati s3"
|
|
||||||
XORG_DRIVERS="openchrome-ttm"
|
|
||||||
DRIDRIVERS="openchrome"
|
|
||||||
|
|
||||||
MESA=Mesa-openchrome
|
|
||||||
LIBDRM=libdrm-newttm
|
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 471 KiB |
File diff suppressed because it is too large
Load Diff
@ -1,86 +0,0 @@
|
|||||||
# Welcome Message for e.g. SSH Server (up to 5 Lines)
|
|
||||||
GREATING0="#######################################################"
|
|
||||||
GREATING1="# Welcome to OpenELEC - the powerfull Mediacenter4you #"
|
|
||||||
GREATING2="# .......... visit http://www.openelec.tv .......... #"
|
|
||||||
GREATING3="#######################################################"
|
|
||||||
GREATING4=""
|
|
||||||
|
|
||||||
# Root password to integrate in the target system
|
|
||||||
ROOT_PASSWORD="openelec"
|
|
||||||
|
|
||||||
# Mediacenter to use (moovida / mythtv / no)
|
|
||||||
MEDIACENTER=no
|
|
||||||
|
|
||||||
# build with network support (yes / no)
|
|
||||||
NETWORK=yes
|
|
||||||
|
|
||||||
# Displayserver to use (wayland / xorg-server / no)
|
|
||||||
DISPLAYSERVER=wayland
|
|
||||||
|
|
||||||
# Graphic drivers to use (all / i915,i965,r200,r300,r600,radeon,nouveau)
|
|
||||||
# Space separated list is supported, e.g. GRAPHIC_DRIVERS="i915 i965 radeon nouveau"
|
|
||||||
GRAPHIC_DRIVERS="i915 i965 r200 r300 r600 radeon"
|
|
||||||
|
|
||||||
# MESA to use (Mesa / Mesa-master)
|
|
||||||
MESA=Mesa-master
|
|
||||||
|
|
||||||
# libdrm to use (libdrm / libdrm-master)
|
|
||||||
LIBDRM=libdrm
|
|
||||||
|
|
||||||
# build with games support (yes / no)
|
|
||||||
GAMES=no
|
|
||||||
|
|
||||||
# build with emulator support (yes / no)
|
|
||||||
EMULATORS=no
|
|
||||||
|
|
||||||
# Coreboot support (yes / no)
|
|
||||||
COREBOOT=no
|
|
||||||
|
|
||||||
#####################################################################
|
|
||||||
## Do not change anything below this line
|
|
||||||
#####################################################################
|
|
||||||
|
|
||||||
if [ "$DISPLAYSERVER" = xorg-server ]; then
|
|
||||||
CAIRO=cairo
|
|
||||||
elif [ "$DISPLAYSERVER" = wayland ]; then
|
|
||||||
CAIRO=cairo-drm
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ "$MEDIACENTER" = mythtv ]; then
|
|
||||||
XINERAMA=yes
|
|
||||||
MESA_GLU=yes
|
|
||||||
fi
|
|
||||||
|
|
||||||
get_graphicdrivers() {
|
|
||||||
if [ "$GRAPHIC_DRIVERS" = all ]; then
|
|
||||||
GRAPHIC_DRIVERS="i915 i965 r200 r300 r600 radeon nouveau"
|
|
||||||
fi
|
|
||||||
|
|
||||||
for drv in $GRAPHIC_DRIVERS; do
|
|
||||||
[ $drv = i915 ] && MESA_DRIVERS="$MESA_DRIVERS,i915"
|
|
||||||
[ $drv = i965 ] && MESA_DRIVERS="$MESA_DRIVERS,i965"
|
|
||||||
[ $drv = r200 ] && MESA_DRIVERS="$MESA_DRIVERS,r200"
|
|
||||||
[ $drv = r300 ] && MESA_DRIVERS="$MESA_DRIVERS,r300"
|
|
||||||
[ $drv = r600 ] && MESA_DRIVERS="$MESA_DRIVERS,r600"
|
|
||||||
[ $drv = radeon ] && MESA_DRIVERS="$MESA_DRIVERS,radeon"
|
|
||||||
|
|
||||||
if [ $drv = i915 -o $drv = i965 ]; then
|
|
||||||
MESA_CONFIG="$MESA_CONFIG --enable-gallium-intel"
|
|
||||||
XORG_DRIVERS="$XORG_DRIVERS intel"
|
|
||||||
DRM_DRIVERS="$DRM_DRIVERS intel"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ $drv = r200 -o $drv = r300 -o $drv = r600 -o $drv = radeon ]; then
|
|
||||||
MESA_CONFIG="$MESA_CONFIG --enable-gallium-radeon"
|
|
||||||
XORG_DRIVERS="$XORG_DRIVERS ati"
|
|
||||||
DRM_DRIVERS="$DRM_DRIVERS radeon"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ $drv = nouveau ]; then
|
|
||||||
MESA_CONFIG="$MESA_CONFIG --enable-gallium-nouveau"
|
|
||||||
XORG_DRIVERS="$XORG_DRIVERS nouveau"
|
|
||||||
DRM_DRIVERS="$DRM_DRIVERS nouveau"
|
|
||||||
fi
|
|
||||||
|
|
||||||
done
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user