mirror of
git://git.yoctoproject.org/meta-raspberrypi.git
synced 2025-07-05 05:04:45 +02:00

Switch to defaulting to OE core ffmpeg & meta-openembedded vlc. Upgrades to newer rpi-distro VLC version in an OE environment have proven to be tedious due to all the PI foundation patches. Some patches aren't fully pushed into github and require updates to build. Maintaining patches have also proven to be unstable. Defualt to stable builds of both so that. Peoples builds aren't broken. If rpi-distro rpi-distro version of ffmpeg & vlc wanted users may switch by setting PREFFERED_PROVIDER. Signed-off-by: Vincent Davis Jr <vince@underview.tech>
16 lines
922 B
PHP
16 lines
922 B
PHP
# RaspberryPi BSP default providers
|
|
|
|
PREFERRED_PROVIDER_virtual/kernel ??= "linux-raspberrypi"
|
|
PREFERRED_PROVIDER_virtual/xserver ?= "xserver-xorg"
|
|
PREFERRED_PROVIDER_virtual/egl ?= "${@bb.utils.contains("MACHINE_FEATURES", "vc4graphics", "mesa", "userland", d)}"
|
|
PREFERRED_PROVIDER_virtual/libgles2 ?= "${@bb.utils.contains("MACHINE_FEATURES", "vc4graphics", "mesa", "userland", d)}"
|
|
PREFERRED_PROVIDER_virtual/libgl ?= "${@bb.utils.contains("MACHINE_FEATURES", "vc4graphics", "mesa", "mesa-gl", d)}"
|
|
PREFERRED_PROVIDER_virtual/mesa ?= "${@bb.utils.contains("MACHINE_FEATURES", "vc4graphics", "mesa", "mesa-gl", d)}"
|
|
PREFERRED_PROVIDER_virtual/libgbm ?= "${@bb.utils.contains("MACHINE_FEATURES", "vc4graphics", "mesa", "mesa-gl", d)}"
|
|
PREFERRED_PROVIDER_jpeg ?= "jpeg"
|
|
|
|
PREFERRED_PROVIDER_virtual/libomxil ?= "userland"
|
|
VIRTUAL-RUNTIME_libomxil = "userland"
|
|
|
|
PREFERRED_PROVIDER_u-boot-default-script ??= "rpi-u-boot-scr"
|