import vulkan-loader-1.3.204.0-2.el9
This commit is contained in:
parent
b91492a2ca
commit
7b0d079378
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
|||||||
SOURCES/Vulkan-Loader-sdk-1.2.182.0.tar.gz
|
SOURCES/Vulkan-Loader-sdk-1.3.204.0.tar.gz
|
||||||
|
@ -1 +1 @@
|
|||||||
af235e746bb4229311b28a1606d66344e2642c60 SOURCES/Vulkan-Loader-sdk-1.2.182.0.tar.gz
|
5631dcb52bbe369f3af888317ecde0049bc1f211 SOURCES/Vulkan-Loader-sdk-1.3.204.0.tar.gz
|
||||||
|
@ -0,0 +1,34 @@
|
|||||||
|
From fb93d3ff8b63bdfdf88a8f25a715f816a52d5dd8 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Dave Airlie <airlied@redhat.com>
|
||||||
|
Date: Mon, 13 Dec 2021 14:50:06 +1000
|
||||||
|
Subject: [PATCH] loader/aarch64: attempt to avoid text relocations in the
|
||||||
|
unknown code
|
||||||
|
|
||||||
|
The commit below added a TEXTREL into the loader library, TEXTRELs
|
||||||
|
and security people don't get on well, so we'd like to avoid that.
|
||||||
|
|
||||||
|
This is my attempt at fixing it, I'm not an aarch64 expert at all,
|
||||||
|
so I'd really appreciate someone who is to take a look.
|
||||||
|
|
||||||
|
Fixes: 4f78f14c0533 ("loader: Add aarch64 unknown ext chain implementation")
|
||||||
|
---
|
||||||
|
loader/unknown_ext_chain_gas_aarch64.S | 3 ++-
|
||||||
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/loader/unknown_ext_chain_gas_aarch64.S b/loader/unknown_ext_chain_gas_aarch64.S
|
||||||
|
index 1e065007d..a1fa46205 100644
|
||||||
|
--- a/loader/unknown_ext_chain_gas_aarch64.S
|
||||||
|
+++ b/loader/unknown_ext_chain_gas_aarch64.S
|
||||||
|
@@ -50,7 +50,8 @@ terminError\num:
|
||||||
|
mov x0, x11 // Vulkan instance pointer (first arg)
|
||||||
|
mov x1, VK_DEBUG_REPORT_ERROR_BIT_EXT // The error logging bit (second arg)
|
||||||
|
mov x2, #0 // Zero (third arg)
|
||||||
|
- ldr x3, =termin_error_string // The error string (fourth arg)
|
||||||
|
+ adrp x9, termin_error_string
|
||||||
|
+ ldr x3, [x9, #:lo12:termin_error_string] // The error string (fourth arg)
|
||||||
|
ldr x4, [x11, x10] // The function name (fifth arg)
|
||||||
|
bl loader_log // Log the error message before we crash
|
||||||
|
mov x0, #0
|
||||||
|
--
|
||||||
|
2.33.1
|
||||||
|
|
@ -1,5 +1,5 @@
|
|||||||
Name: vulkan-loader
|
Name: vulkan-loader
|
||||||
Version: 1.2.182.0
|
Version: 1.3.204.0
|
||||||
Release: 2%{?dist}
|
Release: 2%{?dist}
|
||||||
Summary: Vulkan ICD desktop loader
|
Summary: Vulkan ICD desktop loader
|
||||||
|
|
||||||
@ -7,6 +7,8 @@ License: ASL 2.0
|
|||||||
URL: https://github.com/KhronosGroup/Vulkan-Loader
|
URL: https://github.com/KhronosGroup/Vulkan-Loader
|
||||||
Source0: %url/archive/sdk-%{version}.tar.gz#/Vulkan-Loader-sdk-%{version}.tar.gz
|
Source0: %url/archive/sdk-%{version}.tar.gz#/Vulkan-Loader-sdk-%{version}.tar.gz
|
||||||
|
|
||||||
|
Patch0: 0001-loader-aarch64-attempt-to-avoid-text-relocations-in-.patch
|
||||||
|
|
||||||
BuildRequires: gcc
|
BuildRequires: gcc
|
||||||
BuildRequires: gcc-c++
|
BuildRequires: gcc-c++
|
||||||
BuildRequires: cmake3
|
BuildRequires: cmake3
|
||||||
@ -91,6 +93,12 @@ mkdir -p %{buildroot}%{_sysconfdir}/vulkan/{explicit,implicit}_layer.d/ \
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Feb 25 2022 Dave Airlie <airlied@redhat.com>\ - 1.3.204.0-2
|
||||||
|
- Fix aarch64 textrel
|
||||||
|
|
||||||
|
* Fri Feb 25 2022 Dave Airlie <airlied@redhat.com> - 1.3.204.0-1
|
||||||
|
- Update to 1.3.204.0
|
||||||
|
|
||||||
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 1.2.182.0-2
|
* Tue Aug 10 2021 Mohan Boddu <mboddu@redhat.com> - 1.2.182.0-2
|
||||||
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||||
Related: rhbz#1991688
|
Related: rhbz#1991688
|
||||||
|
Loading…
Reference in New Issue
Block a user