Compare commits
No commits in common. "c8" and "c9-beta" have entirely different histories.
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
||||
SOURCES/kabi-dw-eedfcbf.tar.gz
|
||||
SOURCES/kabi-dw-973fee0f575cc530347bac7f906e7967d4399735.tar.gz
|
||||
|
1
.kabi-dw.metadata
Normal file
1
.kabi-dw.metadata
Normal file
@ -0,0 +1 @@
|
||||
d908e6e10c1e4b8c815ca3fa0247a6a76c849640 SOURCES/kabi-dw-973fee0f575cc530347bac7f906e7967d4399735.tar.gz
|
35
SOURCES/fix-ns-on-ET_DYN.patch
Normal file
35
SOURCES/fix-ns-on-ET_DYN.patch
Normal file
@ -0,0 +1,35 @@
|
||||
--- kabi-dw-973fee0f575cc530347bac7f906e7967d4399735.orig/ksymtab.c 2022-01-10 16:09:27.000000000 +0100
|
||||
+++ kabi-dw-973fee0f575cc530347bac7f906e7967d4399735.new/ksymtab.c 2022-01-31 17:34:13.122000000 +0100
|
||||
@@ -155,6 +155,20 @@
|
||||
goto out;
|
||||
}
|
||||
|
||||
+ switch (ehdr->e_type) {
|
||||
+ case ET_EXEC:
|
||||
+ case ET_DYN:
|
||||
+ case ET_REL:
|
||||
+ break;
|
||||
+ default:
|
||||
+ printf("Unsupported object filetype of %s: %d\n", filename,
|
||||
+ ehdr->e_type);
|
||||
+ free(ehdr);
|
||||
+ (void) elf_end(elf);
|
||||
+ (void) close(fd);
|
||||
+ goto out;
|
||||
+ }
|
||||
+
|
||||
/*
|
||||
* Get section index of the string table associated with the section
|
||||
* headers in the ELF file.
|
||||
@@ -427,7 +441,10 @@
|
||||
|
||||
name += strlen(STRTAB_NS_PREFIX);
|
||||
ns = (char *) ctx->ksymtab_raw;
|
||||
- ns += (ctx->e_type == ET_EXEC) ? value - ctx->sh_addr : value;
|
||||
+ if (ctx->e_type == ET_EXEC || ctx->e_type == ET_DYN)
|
||||
+ ns += value - ctx->sh_addr;
|
||||
+ else if (ctx->e_type == ET_REL)
|
||||
+ ns += value;
|
||||
|
||||
if (!strlen(ns))
|
||||
return;
|
@ -1,14 +1,18 @@
|
||||
%global commitdate 20230223
|
||||
%global commit eedfcbf9c60feedb532ad3d4d111ca93f7c32a26
|
||||
%global forgeurl https://github.com/skozina/kabi-dw
|
||||
%global commitdate 20220110
|
||||
%global commit 973fee0f575cc530347bac7f906e7967d4399735
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
|
||||
%forgemeta -i
|
||||
|
||||
Name: kabi-dw
|
||||
Version: 0
|
||||
Release: 0.25.%{commitdate}git%{shortcommit}%{?dist}
|
||||
Release: 0.24%{?dist}
|
||||
Summary: Detect changes in the ABI between kernel builds
|
||||
License: GPLv3+
|
||||
URL: https://github.com/skozina/%{name}
|
||||
Source0: %{name}-%{shortcommit}.tar.gz
|
||||
URL: %{forgeurl}
|
||||
Source0: %{forgesource}
|
||||
Patch0: fix-ns-on-ET_DYN.patch
|
||||
|
||||
BuildRequires: elfutils-devel
|
||||
BuildRequires: gcc
|
||||
@ -16,7 +20,7 @@ BuildRequires: bison
|
||||
BuildRequires: flex
|
||||
BuildRequires: glib2-devel
|
||||
BuildRequires: redhat-rpm-config
|
||||
BuildRequires: make
|
||||
BuildRequires: make
|
||||
|
||||
%description
|
||||
The aim of kabi-dw is to detect any changes in the ABI between the successive
|
||||
@ -25,10 +29,15 @@ builds of the Linux kernel. This is done by dumping the DWARF type information
|
||||
later comparing the text files.
|
||||
|
||||
%prep
|
||||
%setup -q -n %{name}-%{commit}
|
||||
%forgesetup
|
||||
%patch0 -p1
|
||||
|
||||
%build
|
||||
#CFLAGS=$RPM_OPT_FLAGS LDFLAGS=$RPM_LD_FLAGS make debug
|
||||
LDFLAGS+=" -pie "
|
||||
%ifarch x86_64
|
||||
CFLAGS+=" -fcf-protection=full "
|
||||
%endif
|
||||
CFLAGS+=" -fPIE -D_GLIBCXX_ASSERTIONS -fstack-clash-protection -g"
|
||||
%set_build_flags
|
||||
%make_build
|
||||
|
||||
@ -42,21 +51,67 @@ install -m 0755 %{name} %{buildroot}%{_bindir}/
|
||||
%license COPYING
|
||||
|
||||
%changelog
|
||||
* Mon Jul 03 2023 Čestmír Kalina <ckalina@redhat.com> - 0-0.25.20230223giteedfcbf
|
||||
- Update to eedfcbf
|
||||
- Resolves: rhbz#2213162
|
||||
* Tue Jan 18 2022 Cestmir Kalina <ckalina@redhat.com> - 0.24
|
||||
- Fix annocheck failures
|
||||
- Fix osci tier0 test reference
|
||||
- Fix ET_DYN vmlinux namespace support
|
||||
- Resolves: rhbz#2038913
|
||||
- Resolves: rhbz#2045976
|
||||
- Resolves: rhbz#2038892
|
||||
|
||||
* Wed Jun 10 2020 Cestmir Kalina <ckalina@redhat.com> - 0-0.10.20200515gitb52ac13
|
||||
- Upload Source0
|
||||
- Resolves RHBZ#1778928
|
||||
* Mon Jan 10 2022 Cestmir Kalina <ckalina@redhat.com> - 0.23
|
||||
- Add support for ET_EXEC
|
||||
- Add support for DW_TAG_restrict_type
|
||||
- Resolves: rhbz#1761409
|
||||
|
||||
* Tue Jun 09 2020 Cestmir Kalina <ckalina@redhat.com> - 0-0.9.20200515gitb52ac13
|
||||
- Update to b52ac13 to include latest upstream changes
|
||||
- Resolves RHBZ#1778928
|
||||
* Mon Nov 22 2021 Cestmir Kalina <ckalina@redhat.com> - 0.22
|
||||
- Add support for symbol namespaces
|
||||
- Resolves: rhbz#1761409
|
||||
|
||||
* Wed Nov 21 2018 Jerome Marchand <jmarchan@redhat.com> - 0-0.8.20181112git6fbd644
|
||||
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - Forge-specific packaging variables
|
||||
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||
Related: rhbz#1991688
|
||||
|
||||
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - Forge-specific packaging variables
|
||||
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
||||
|
||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - Packaging variables read or set by %forgemeta
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - Packaging variables read or set by %forgemeta
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Sun Feb 9 2020 Zamir SUN <zsun@fedoraproject.org> - 0-0.17.20191127gitbd56a60
|
||||
- Workaround "multiple definition of `yyin'"
|
||||
- Resolves https://bugzilla.redhat.com/show_bug.cgi?id=1799559
|
||||
|
||||
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - Packaging variables read or set by %forgemeta
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Wed Nov 27 2019 Zamir SUN <zsun@fedoraproject.org> - 0-0.15.20191127gitbd56a60
|
||||
- Update to bd56a60
|
||||
|
||||
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0-0.14.20181112git6fbd644
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0-0.13.20181112git6fbd644
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Fri Nov 16 2018 Zamir SUN <zsun@fedoraproject.org> - 0-0.12.20181112git6fbd644
|
||||
- Update to 6fbd644 to fix RHBZ 1642806
|
||||
|
||||
* Wed Sep 19 2018 Zamir SUN <zsun@fedoraproject.org> - 0-0.11.20180906git626d942
|
||||
- Fix the date in previous commit
|
||||
|
||||
* Wed Sep 19 2018 Zamir SUN <zsun@fedoraproject.org> - 0-0.10.20180906git626d942
|
||||
- Update to upstream 626d94295bc83e01ed98f4ecb76d7d499341f738
|
||||
|
||||
* Sun Jul 22 2018 Zamir SUN <zsun@fedoraproject.org> - 0-0.9.20180308gitb8863d0
|
||||
- Add gcc as BR.
|
||||
|
||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0-0.8.20180308gitb8863d0
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Mon Mar 12 2018 Zamir SUN <zsun@fedoraproject.org> - 0-0.7.20180308gitb8863d0
|
||||
- Update to b8863d05565e91bd3fb40d9e9d562be081f09669
|
||||
- Fixes RHBZ#1543803
|
||||
|
Loading…
Reference in New Issue
Block a user