project/Generic: updated / added devices

- cleaned up options
- added gbm, wayland & x11 devices
- Generic-legacy replaced by x11 (+symlink)
- kept Generic (=gbm) for easier transition
- updated canupdate.sh to allow updates
This commit is contained in:
SupervisedThinking 2021-11-28 22:24:55 +01:00
parent 7ef32419bf
commit 7d1fd86cbc
9 changed files with 41 additions and 20 deletions

View File

@ -1,19 +0,0 @@
# OpenGL(X) implementation to use (mesa / no)
OPENGL="mesa"
# OpenGL-ES implementation to use (mesa / no)
OPENGLES="no"
# Displayserver to use (weston / x11 / no)
DISPLAYSERVER="x11"
# KODI Player implementation to use (mesa / default)
KODIPLAYER_DRIVER="default"
# set the addon project
ADDON_PROJECT="Generic"
# 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"

View File

@ -0,0 +1 @@
../x11/options

View File

@ -0,0 +1 @@
../Generic/options

View File

@ -0,0 +1,19 @@
# OpenGL(X) implementation to use (mesa / no)
OPENGL="no"
# OpenGL-ES implementation to use (mesa / no)
OPENGLES="mesa"
# Displayserver to use (weston / x11 / no)
DISPLAYSERVER="weston"
# 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

@ -0,0 +1,19 @@
# OpenGL(X) implementation to use (mesa / no)
OPENGL="mesa"
# OpenGL-ES implementation to use (mesa / no)
OPENGLES="no"
# Displayserver to use (weston / x11 / no)
DISPLAYSERVER="x11"
# KODI Player implementation to use (mesa / default)
KODIPLAYER_DRIVER="default"
# set the addon project
ADDON_PROJECT="Generic"
# 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"

View File

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