Skip to content
This repository was archived by the owner on Jan 27, 2026. It is now read-only.

Commit 288045b

Browse files
ankithbti52509sysopenci
authored andcommitted
Fixed for missing graphics libraries.
iris_dri.so & virtio_gpu_dri.so libaries were missing from vendor image as these libraries are symbolic links of libgallium_dri.so Adding this libraries as symbolic links. Tests done: Prepared EB and it's booted successfully. Tracked-On: OAM-127806 Signed-off-by: Ankit Agrawal <ankit.agarwal@intel.com>
1 parent 08c92fb commit 288045b

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

android/Android.mk

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,11 @@ LOCAL_PREBUILT_MODULE_FILE := $($4)
169169
LOCAL_MULTILIB := first
170170
LOCAL_CHECK_ELF_FILES := false
171171
LOCAL_MODULE_SUFFIX := .so
172+
ifeq ($1, libgallium_dri)
173+
LOCAL_MODULE_SYMLINKS += $1$2 iris_dri.so virtio_gpu_dri.so
174+
else
172175
LOCAL_MODULE_SYMLINKS := $1$2
176+
endif
173177
LOCAL_SHARED_LIBRARIES := $(__MY_SHARED_LIBRARIES)
174178
LOCAL_EXPORT_C_INCLUDE_DIRS := $5
175179
include $(BUILD_PREBUILT)
@@ -184,7 +188,11 @@ LOCAL_PREBUILT_MODULE_FILE := $(2ND_$4)
184188
LOCAL_MULTILIB := 32
185189
LOCAL_CHECK_ELF_FILES := false
186190
LOCAL_MODULE_SUFFIX := .so
191+
ifeq ($1, libgallium_dri)
192+
LOCAL_MODULE_SYMLINKS += $1$2 iris_dri.so virtio_gpu_dri.so
193+
else
187194
LOCAL_MODULE_SYMLINKS := $1$2
195+
endif
188196
LOCAL_SHARED_LIBRARIES := $(__MY_SHARED_LIBRARIES)
189197
LOCAL_EXPORT_C_INCLUDE_DIRS := $5
190198
include $(BUILD_PREBUILT)

0 commit comments

Comments
 (0)