diff options
author | Justin M. Forbes <jforbes@fedoraproject.org> | 2021-07-07 13:27:33 -0500 |
---|---|---|
committer | Justin M. Forbes <jforbes@fedoraproject.org> | 2021-07-07 13:27:33 -0500 |
commit | 7ab3430578bb44245900b015eefd4644be051cfe (patch) | |
tree | 9b8bacde5bb8b7735d8d29b0071f56823e7574d3 /linux-kernel-test.patch | |
parent | 6efdb4e41243c97df25b05d465658032ba34e366 (diff) | |
download | kernel-7ab3430578bb44245900b015eefd4644be051cfe.tar.gz kernel-7ab3430578bb44245900b015eefd4644be051cfe.tar.xz kernel-7ab3430578bb44245900b015eefd4644be051cfe.zip |
kernel-5.14.0-0.rc0.20210707git77d34a4683b0.12
* Wed Jul 07 2021 Fedora Kernel Team <kernel-team@fedoraproject.org> [5.14.0-0.rc0.20210707git77d34a4683b0.12]
- Fix the perf trace link location (Justin M. Forbes)
- drm/amdgpu/dc: Really fix DCN3.1 Makefile for PPC64 (Michal Suchanek)
Resolves: rhbz#
Signed-off-by: Justin M. Forbes <jforbes@fedoraproject.org>
Diffstat (limited to 'linux-kernel-test.patch')
-rw-r--r-- | linux-kernel-test.patch | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/linux-kernel-test.patch b/linux-kernel-test.patch index 86c1ebd9b..e69de29bb 100644 --- a/linux-kernel-test.patch +++ b/linux-kernel-test.patch @@ -1,33 +0,0 @@ -From 5cfc0690eefcc30f880f0c02863a35d63b6c733c Mon Sep 17 00:00:00 2001 -From: "Justin M. Forbes" <jforbes@fedoraproject.org> -Date: Tue, 6 Jul 2021 13:50:10 -0500 -Subject: [PATCH] Fix the perf trace link location - -The install perf_dlfilter.h patch included what seems to be -a typo in the Makefile.perf, which changed the location of the trace -link from '$(DESTDIR_SQ)$(bindir_SQ)/trace' to -'$(DESTDIR_SQ)$(dir_SQ)/trace' This reverts it back to the correct -location. - -Fixes: 0beb218315e06 ("perf build: Install perf_dlfilter.h") -Signed-off-by: Justin M. Forbes <jforbes@fedoraproject.org> ---- - tools/perf/Makefile.perf | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/tools/perf/Makefile.perf b/tools/perf/Makefile.perf -index c9e0de5b00c1..a1b9be78a1e0 100644 ---- a/tools/perf/Makefile.perf -+++ b/tools/perf/Makefile.perf -@@ -923,7 +923,7 @@ install-tools: all install-gtk - $(call QUIET_INSTALL, binaries) \ - $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(bindir_SQ)'; \ - $(INSTALL) $(OUTPUT)perf '$(DESTDIR_SQ)$(bindir_SQ)'; \ -- $(LN) '$(DESTDIR_SQ)$(bindir_SQ)/perf' '$(DESTDIR_SQ)$(dir_SQ)/trace'; \ -+ $(LN) '$(DESTDIR_SQ)$(bindir_SQ)/perf' '$(DESTDIR_SQ)$(bindir_SQ)/trace'; \ - $(INSTALL) -d -m 755 '$(DESTDIR_SQ)$(includedir_SQ)/perf'; \ - $(INSTALL) util/perf_dlfilter.h -t '$(DESTDIR_SQ)$(includedir_SQ)/perf' - ifndef NO_PERF_READ_VDSO32 --- -2.31.1 - |