diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2022-06-16 17:22:37 +0200 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-06-16 17:34:53 +0100 |
commit | 12e801c69c56f15e7d4d73030173d37a465897ff (patch) | |
tree | ed28129a3ab87414e03962507d9c6dca262e77ed /sys-kernel/kpatch | |
parent | sci-electronics/systemc: fix bug 849917 and QA report (diff) | |
download | gentoo-12e801c69c56f15e7d4d73030173d37a465897ff.tar.gz gentoo-12e801c69c56f15e7d4d73030173d37a465897ff.tar.bz2 gentoo-12e801c69c56f15e7d4d73030173d37a465897ff.zip |
sys-kernel/kpatch: remove unused patch
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/25924
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sys-kernel/kpatch')
-rw-r--r-- | sys-kernel/kpatch/files/kpatch-0.7.1-disable-dwarf-compression.patch | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/sys-kernel/kpatch/files/kpatch-0.7.1-disable-dwarf-compression.patch b/sys-kernel/kpatch/files/kpatch-0.7.1-disable-dwarf-compression.patch deleted file mode 100644 index 85f2862df54a..000000000000 --- a/sys-kernel/kpatch/files/kpatch-0.7.1-disable-dwarf-compression.patch +++ /dev/null @@ -1,32 +0,0 @@ -From fe6e3f51bfe17945205445904c1fc602008ac7dd Mon Sep 17 00:00:00 2001 -From: Stefan Strogin <steils@gentoo.org> -Date: Mon, 29 Jul 2019 13:20:20 +0300 -Subject: [PATCH] create-diff-object: disable DWARF compression explicitly - -On some systems the linker produces compressed debug sections by -default. It is not supported by create-diff-object for now. - -Fixes: #877 - -Upstream-Status: Submitted [https://github.com/dynup/kpatch/pull/1011] -Signed-off-by: Stefan Strogin <steils@gentoo.org> ---- - kpatch-build/kpatch-build | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/kpatch-build/kpatch-build b/kpatch-build/kpatch-build -index 9ef3809..365655c 100755 ---- a/kpatch-build/kpatch-build -+++ b/kpatch-build/kpatch-build -@@ -748,7 +748,7 @@ if [[ "$ARCH" = "ppc64le" ]]; then - ARCH_KCFLAGS="-mcmodel=large -fplugin=$PLUGINDIR/ppc64le-plugin.so" - fi - --export KCFLAGS="-I$DATADIR/patch -ffunction-sections -fdata-sections $ARCH_KCFLAGS" -+export KCFLAGS="-I$DATADIR/patch -ffunction-sections -fdata-sections -gz=none $ARCH_KCFLAGS" - - echo "Reading special section data" - find_special_section_data --- -2.22.0 - |