remove Generic-gl device and switch Generic to OpenGL

This commit is contained in:
smp79 2025-07-01 23:22:56 +03:00
parent 3bc2201248
commit 1f2419354b
3 changed files with 3 additions and 28 deletions

View File

@ -1,25 +0,0 @@
# 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="no"
# Windowmanager to use (fluxbox / weston / no)
WINDOWMANAGER="no"
# KODI Player implementation to use (mesa / default)
KODIPLAYER_DRIVER="mesa"
# set the addon project
ADDON_PROJECT="Generic"
# Mesa 3D Graphic drivers to use (all / crocus,i915,iris,r300,r600,radeonsi,vmware,virtio)
# Space separated list is supported,
# e.g. GRAPHIC_DRIVERS="crocus i915 iris r300 r600 radeonsi vmware virtio"
GRAPHIC_DRIVERS="crocus i915 iris r300 r600 radeonsi vmware virtio"

View File

@ -1,8 +1,8 @@
# OpenGL(X) implementation to use (mesa / no)
OPENGL="no"
OPENGL="mesa"
# OpenGL-ES implementation to use (mesa / no)
OPENGLES="mesa"
OPENGLES="no"
# Vulkan implementation to use (vulkan-loader / no)
VULKAN="no"

View File

@ -2,7 +2,7 @@
# Copyright (C) 2017-present Team LibreELEC (https://libreelec.tv)
# Allow upgrades between different Generic builds
if [ "$1" = "Virtual.x86_64" -o "$1" = "Generic.x86_64" -o "$1" = "Generic-gl.x86_64" -o "$1" = "Generic-legacy.x86_64" -o "$1" = "gbm.x86_64" -o "$1" = "wayland.x86_64" -o "$1" = "x11.x86_64" ]; then
if [ "$1" = "Virtual.x86_64" -o "$1" = "Generic.x86_64" -o "$1" = "Generic-legacy.x86_64" -o "$1" = "gbm.x86_64" -o "$1" = "wayland.x86_64" -o "$1" = "x11.x86_64" ]; then
exit 0
else
exit 1