added support to install NEO drivers on rh8.6 (#12759)

This commit is contained in:
Trawinski, Dariusz 2022-08-25 22:31:24 +02:00 committed by GitHub
parent 74567b55a1
commit 7369ce2e4e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -374,10 +374,10 @@ add_user_to_video_group()
_check_distro_version() _check_distro_version()
{ {
if [[ $DISTRO == redhat ]]; then if [[ $DISTRO == redhat ]]; then
RHEL_MINOR_VERSION_SUPPORTED="[3-5]" RHEL_MINOR_VERSION_SUPPORTED="[3-6]"
RHEL_VERSION=$(grep -m1 'VERSION_ID' /etc/os-release | grep -Eo "8.${RHEL_MINOR_VERSION_SUPPORTED}") RHEL_VERSION=$(grep -m1 'VERSION_ID' /etc/os-release | grep -Eo "8.${RHEL_MINOR_VERSION_SUPPORTED}")
if [[ $? -ne 0 ]]; then if [[ $? -ne 0 ]]; then
echo "Warning: This runtime can be installed only on RHEL 8.3, RHEL8.4 or RHEL 8.5" echo "Warning: This runtime can be installed only on RHEL 8.3 up to RHEL 8.6"
echo "More info https://dgpu-docs.intel.com/releases/releases-20211130.html" >&2 echo "More info https://dgpu-docs.intel.com/releases/releases-20211130.html" >&2
echo "Installation of Intel® Graphics Compute Runtime for oneAPI Level Zero and OpenCL™ Driver interrupted" echo "Installation of Intel® Graphics Compute Runtime for oneAPI Level Zero and OpenCL™ Driver interrupted"
exit $EXIT_FAILURE exit $EXIT_FAILURE