|
|
|
@ -1,6 +1,7 @@
|
|
|
|
|
Name: kernel-srpm-macros
|
|
|
|
|
Version: 1.0
|
|
|
|
|
Release: 13%{?dist}
|
|
|
|
|
# when bumping version and resetting release, don't forget to bump version of kernel-rpm-macros as well
|
|
|
|
|
Release: 24%{?dist}.inferit
|
|
|
|
|
Summary: RPM macros that list arches the full kernel is built on
|
|
|
|
|
# This package only exist in Fedora repositories
|
|
|
|
|
# The license is the standard (MIT) specified in
|
|
|
|
@ -10,10 +11,10 @@ License: MIT
|
|
|
|
|
URL: https://src.fedoraproject.org/rpms/kernel-srpm-macros
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
# We are now the ones shipping kmod.attr
|
|
|
|
|
Conflicts: redhat-rpm-config <= 184
|
|
|
|
|
Conflicts: redhat-rpm-config < 205
|
|
|
|
|
# macros.kmp, kmodtool and rpmsort were moved from kernel-rpm-macros
|
|
|
|
|
# to kernel-srpm-macros in 1.0-9/185-9
|
|
|
|
|
Conflicts: kernel-rpm-macros < 185-9
|
|
|
|
|
Conflicts: kernel-rpm-macros < 205
|
|
|
|
|
|
|
|
|
|
# Macros
|
|
|
|
|
Source0: macros.kernel-srpm
|
|
|
|
@ -53,10 +54,11 @@ the full kernel is built on.
|
|
|
|
|
The variable to use is kernel_arches.
|
|
|
|
|
|
|
|
|
|
%package -n kernel-rpm-macros
|
|
|
|
|
Version: 185
|
|
|
|
|
Release: %{release}
|
|
|
|
|
Version: 205
|
|
|
|
|
Summary: Macros and scripts for building kernel module packages
|
|
|
|
|
Requires: redhat-rpm-config >= 13
|
|
|
|
|
# rpmsort is GPL-2.0-or-later
|
|
|
|
|
License: MIT AND GPL-2.0-or-later
|
|
|
|
|
Requires: redhat-rpm-config >= 205
|
|
|
|
|
|
|
|
|
|
# for brp-kmod-compress
|
|
|
|
|
Requires: %{_bindir}/xz
|
|
|
|
@ -92,7 +94,7 @@ cp -p %{sources} .
|
|
|
|
|
mkdir -p %{buildroot}/%{_rpmconfigdir}/macros.d
|
|
|
|
|
install -p -m 0644 -t %{buildroot}/%{_rpmconfigdir}/macros.d macros.kernel-srpm
|
|
|
|
|
%if 0%{?rhel} >= 8
|
|
|
|
|
sed -i 's/^%%kernel_arches.*/%%kernel_arches x86_64 s390x ppc64le aarch64/' \
|
|
|
|
|
sed -i 's/^%%kernel_arches.*/%%kernel_arches x86_64 x86_64_v2 s390x ppc64le aarch64/' \
|
|
|
|
|
%{buildroot}/%{_rpmconfigdir}/macros.d/macros.kernel-srpm
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
@ -113,12 +115,10 @@ install -p -m 644 -t "%{buildroot}%{_fileattrsdir}" modalias.attr
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
|
%{_rpmconfigdir}/macros.d/macros.kernel-srpm
|
|
|
|
|
%{_rpmconfigdir}/macros.d/macros.kmp
|
|
|
|
|
%{_fileattrsdir}/kmod.attr
|
|
|
|
|
%{rrcdir}/kmodtool
|
|
|
|
|
%{rrcdir}/rpmsort
|
|
|
|
|
|
|
|
|
|
%files -n kernel-rpm-macros
|
|
|
|
|
%{_rpmconfigdir}/macros.d/macros.kmp
|
|
|
|
|
%{_rpmconfigdir}/kabi.sh
|
|
|
|
|
%{_fileattrsdir}/kabi.attr
|
|
|
|
|
%{_fileattrsdir}/modalias.attr
|
|
|
|
@ -132,52 +132,85 @@ install -p -m 644 -t "%{buildroot}%{_fileattrsdir}" modalias.attr
|
|
|
|
|
%{rrcdir}/find-requires.ksyms
|
|
|
|
|
%{rrcdir}/find-provides.d/firmware.prov
|
|
|
|
|
%{rrcdir}/find-provides.d/modalias.prov
|
|
|
|
|
%{rrcdir}/kmodtool
|
|
|
|
|
%{rrcdir}/rpmsort
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
|
* Mon Jun 12 2023 Eugene Syromiatnikov <esyr@redhat.com> - 1.0-13
|
|
|
|
|
- Handle symvers.xz in kabi.attr (#2209253).
|
|
|
|
|
- Fix indirect __crc_* sumbols parsing in find-provides.ksyms
|
|
|
|
|
and find-requires.ksyms to avoid matching multiple sections
|
|
|
|
|
producing bogus duplicate provides for kmods that have both __kcrctab
|
|
|
|
|
and __kcrctab_gpl sections (#2115811, #2178935).
|
|
|
|
|
- Call "readelf -R" on a correct section in find-requires.ksyms.
|
|
|
|
|
- Rewrite section data extraction in find-provides.ksyms and find-requires.ksyms
|
|
|
|
|
to avoid garbage at the end of extracted sections, causing unnecessary awk
|
|
|
|
|
complaints (#2115811).
|
|
|
|
|
- Perform section parsing inside the awk script in find-provides.ksyms
|
|
|
|
|
and find-requires.ksyms to avoid hitting command line argument limit
|
|
|
|
|
when handling large .rodata sections (#2178935).
|
|
|
|
|
|
|
|
|
|
* Tue Jan 31 2023 Eugene Syromiatnikov <esyr@redhat.com> - 1.0-12
|
|
|
|
|
- Support storing of __crc_* symbols in sections other than .rodata.
|
|
|
|
|
- Resolves: #2135047
|
|
|
|
|
* Mon Dec 02 2024 Sergey Cherevko <s.cherevko@msvsphere-os.ru> - 1.0-24.inferit
|
|
|
|
|
- Add x86_64_v2 to kernel_arches
|
|
|
|
|
|
|
|
|
|
* Tue Nov 26 2024 MSVSphere Packaging Team <packager@msvsphere-os.ru> - 1.0-24
|
|
|
|
|
- Rebuilt for MSVSphere 10
|
|
|
|
|
|
|
|
|
|
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 1.0-24
|
|
|
|
|
- Bump release for June 2024 mass rebuild
|
|
|
|
|
|
|
|
|
|
* Wed Mar 06 2024 David Abdurachmanov <davidlt@rivosinc.com> - 1.0-23
|
|
|
|
|
- Add riscv64
|
|
|
|
|
|
|
|
|
|
* Wed Jan 24 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.0-22
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Sun Jan 21 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.0-21
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Thu Feb 17 2022 Eugene Syromiatnikov <esyr@redhat.com> - 1.0-11
|
|
|
|
|
* Thu Jul 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.0-20
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Tue May 09 2023 Eugene Syromiatnikov <esyr@redhat.com> - 1.0-19
|
|
|
|
|
- Capture local __crc_* symbols for "Provides: kernel()".
|
|
|
|
|
- Add support for XZ compression for the symvers file.
|
|
|
|
|
- Fix "Provides: kernel()" generation when both __kcrctab and __kcrctab_gpl
|
|
|
|
|
are present.
|
|
|
|
|
- Fix regression for "Provides:" generation in cases when modversions are stored
|
|
|
|
|
in a section that is over 64K in size.
|
|
|
|
|
- Speedup and cleanup changes in find-provides.ksyms and find-requires.ksyms.
|
|
|
|
|
- Fix regex usage in kmod.attr. (Denys Vlasenko)
|
|
|
|
|
- Implement modalias "Provides:" grouping. (Denys Vlasenko)
|
|
|
|
|
- Speedup and cleanup changes in modalias.prov and kmod.attr. (Denys Vlasenko)
|
|
|
|
|
|
|
|
|
|
* Thu Mar 30 2023 Eugene Syromiatnikov <esyr@redhat.com> - 1.0-18
|
|
|
|
|
- Avoid triggering debuginfod during elfutils tools usage.
|
|
|
|
|
|
|
|
|
|
* Thu Jan 31 2023 Eugene Syromiatnikov <esyr@redhat.com> - 1.0-17
|
|
|
|
|
- Support storing of __crc_* symbols in sections other than .rodata.
|
|
|
|
|
- Work around a change in type of __crc_* symbols for some kmods printed by nm
|
|
|
|
|
on ppc64le and s390x
|
|
|
|
|
- Resolves: #2055464
|
|
|
|
|
on ppc64le and s390x.
|
|
|
|
|
|
|
|
|
|
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.0-16
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.0-15
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.0-14
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Thu Nov 18 2021 Miro Hrončok <mhroncok@redhat.com> - 1.0-13
|
|
|
|
|
- Bump kernel-rpm-macros to 205 to provide clear upgrade path
|
|
|
|
|
|
|
|
|
|
* Thu Nov 18 2021 Miro Hrončok <mhroncok@redhat.com> - 1.0-12
|
|
|
|
|
- Correct conflicts to redhat-rpm-macros < 205
|
|
|
|
|
- Move Perl scripts back to kernel-rpm-macros to avoid Perl in the default buildroot
|
|
|
|
|
|
|
|
|
|
* Thu Nov 18 2021 Eugene Syromiatnikov <esyr@redhat.com> - 1.0-11
|
|
|
|
|
- Add conflicts of redhat-rpm-macros < 204 as macros.kmp, kmodtool,
|
|
|
|
|
and rpmsort were moved from the latter to the former.
|
|
|
|
|
- Remove RHEL-specific kABI bits from find-requires.ksyms and macros.kmp.
|
|
|
|
|
|
|
|
|
|
* Thu Nov 18 2021 Eugene Syromiatnikov <esyr@redhat.com> - 1.0-10
|
|
|
|
|
- Add conflicts of kernel-srpm-macros with kernel-rpm-macros < 185-9
|
|
|
|
|
as macros.kmp, kmodtool, and rpmsort were moved from the latter
|
|
|
|
|
to the former.
|
|
|
|
|
|
|
|
|
|
* Mon Sep 20 2021 Eugene Syromiatnikov <esyr@redhat.com> - 1.0-9
|
|
|
|
|
* Thu Nov 18 2021 Eugene Syromiatnikov <esyr@redhat.com> - 1.0-9
|
|
|
|
|
- Update scripts with RHEL-specific changes.
|
|
|
|
|
|
|
|
|
|
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1.0-8
|
|
|
|
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
|
|
|
|
Related: rhbz#1991688
|
|
|
|
|
|
|
|
|
|
* Tue May 25 2021 Michal Domonkos <mdomonko@redhat.com> - 1.0-7
|
|
|
|
|
- Bump release for a rebuild in a sidetag
|
|
|
|
|
|
|
|
|
|
* Wed May 12 2021 Michal Domonkos <mdomonko@redhat.com> - 1.0-6
|
|
|
|
|
- Adopt kernel-rpm-macros subpackage & kmod.attr from redhat-rpm-config
|
|
|
|
|
- Resolves: #1959914
|
|
|
|
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.0-6
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
|
|
|
|
|
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1.0-5
|
|
|
|
|
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
|
|
|
|
* Thu Jun 03 2021 Michal Domonkos <mdomonko@redhat.com> - 1.0-5
|
|
|
|
|
- Adopt kernel-rpm-macros & kmod.attr subpackage from redhat-rpm-config
|
|
|
|
|
|
|
|
|
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.0-4
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|