cb625e8fb2
Revert "SWDEV-310152 - Remove ldconfig from rocm-ocl-icd package"
This reverts commit 0f5c2f0ba8.
Change-Id: Id07f4c8b2915c4ed7937094087ddba8402444da9
23 wiersze
494 B
Bash
23 wiersze
494 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
INSTALL_PATH=@CPACK_PACKAGING_INSTALL_PREFIX@
|
|
|
|
do_ldconfig() {
|
|
echo ${INSTALL_PATH}/@CMAKE_INSTALL_LIBDIR@ > /@CMAKE_INSTALL_SYSCONFDIR@/ld.so.conf.d/10-rocm-opencl.conf && ldconfig
|
|
mkdir -p /@CMAKE_INSTALL_SYSCONFDIR@/OpenCL/vendors && (echo libamdocl64.so > /@CMAKE_INSTALL_SYSCONFDIR@/OpenCL/vendors/@OPENCL_AMD_ICD_FILE@)
|
|
}
|
|
|
|
case "$1" in
|
|
abort-deconfigure|abort-remove|abort-upgrade)
|
|
echo "$1"
|
|
;;
|
|
configure)
|
|
do_ldconfig
|
|
;;
|
|
*)
|
|
exit 0
|
|
;;
|
|
esac
|