From adebdabac98fa33b630605a0f283226e124b7b29 Mon Sep 17 00:00:00 2001 From: Hector Bujanda Date: Wed, 28 Oct 2020 10:37:53 +0100 Subject: [PATCH] recipes-core: systemd-gpuconfig: Update recipes to new BSP release imx_5.4.47_2.2.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Includes: gpuconfig/rc_gpu.S: Update the lib names of libOpenVG [YOCIMX-4888] In imx-gpu-viv 6.4.3, the 2D/3D OpenVG lib names are changed: libOpenVG.2d.so – > libOpenVG.2d.so.1.1.0 libOpenVG.3d.so – > libOpenVG.3d.so.1.1.0 Signed-off-by: Hector Bujanda --- .../recipes-core/systemd/systemd-gpuconfig/gpuconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta-digi-dey/recipes-core/systemd/systemd-gpuconfig/gpuconfig b/meta-digi-dey/recipes-core/systemd/systemd-gpuconfig/gpuconfig index 792ab6c7d..9da22000b 100644 --- a/meta-digi-dey/recipes-core/systemd/systemd-gpuconfig/gpuconfig +++ b/meta-digi-dey/recipes-core/systemd/systemd-gpuconfig/gpuconfig @@ -1,8 +1,8 @@ #!/bin/sh CPUREV=$(cat /sys/devices/soc0/soc_id) FILEVG=/usr/lib/libOpenVG.so -FILEVG3D=/usr/lib/libOpenVG.3d.so -FILEVG355=/usr/lib/libOpenVG.2d.so +FILEVG3D=/usr/lib/libOpenVG.3d.so.1.1.0 +FILEVG355=/usr/lib/libOpenVG.2d.so.1.1.0 if [ -e $FILEVG3D ] && [ -e $FILEVG355 ] then if [ -e $FILEVG ]