mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2025-01-18 19:32:06 +00:00
38 lines
1.1 KiB
Plaintext
38 lines
1.1 KiB
Plaintext
# OpenGL(X) implementation to use (mesa / no)
|
|
OPENGL="mesa"
|
|
|
|
# OpenGL-ES implementation to use (mesa / no)
|
|
OPENGLES="no"
|
|
|
|
# Vulkan implementation to use (vulkan-loader / no)
|
|
VULKAN="no"
|
|
|
|
# Displayserver to use (weston / x11 / no)
|
|
DISPLAYSERVER="x11"
|
|
|
|
# Windowmanager to use (fluxbox / weston / no)
|
|
WINDOWMANAGER="fluxbox"
|
|
|
|
# KODI Player implementation to use (mesa / default)
|
|
KODIPLAYER_DRIVER="default"
|
|
|
|
# set the addon project
|
|
ADDON_PROJECT="Generic-legacy"
|
|
|
|
# Mesa 3D / Xorg Graphic drivers to use (all / crocus,i915,iris,r300,r600,radeonsi,nvidia,nvidia-legacy,vmware,virtio)
|
|
# Space separated list is supported,
|
|
# e.g. GRAPHIC_DRIVERS="crocus i915 iris r300 r600 radeonsi nvidia nvidia-legacy vmware virtio"
|
|
GRAPHIC_DRIVERS="crocus i915 iris r300 r600 radeonsi nvidia nvidia-legacy vmware virtio"
|
|
|
|
# Overrides for Lakka
|
|
if [ "${DISTRO}" = "Lakka" ]; then
|
|
# Enable VULKAN
|
|
if [ "${ARCH}" = "x86_64" ]; then
|
|
VULKAN="vulkan-loader"
|
|
fi
|
|
|
|
# Disable vmware and virtio drivers
|
|
GRAPHIC_DRIVERS="${GRAPHIC_DRIVERS//vmware/}"
|
|
GRAPHIC_DRIVERS="${GRAPHIC_DRIVERS//virtio/}"
|
|
fi
|