100 lines
2.6 KiB
RPMSpec
100 lines
2.6 KiB
RPMSpec
#
|
|
# spec file for package kexec-tools
|
|
#
|
|
# Copyright (c) 2022-2023 ZhuningOS
|
|
#
|
|
|
|
|
|
Name: kexec-tools
|
|
Version: 2.0.24
|
|
Release: 5
|
|
Summary: Tools for loading replacement kernels into memory
|
|
License: GPL-2.0-or-later
|
|
Group: System/Kernel
|
|
URL: https://projects.horms.net/projects/kexec/
|
|
Source: https://mirrors.ustc.edu.cn/kernel.org/linux/utils/kernel/kexec/%{name}-%{version}.tar.xz
|
|
Source100: https://mirrors.ustc.edu.cn/kernel.org/linux/utils/kernel/kexec/%{name}-%{version}.tar.sign
|
|
Source101: kexec-tools.keyring
|
|
Source1: kexec-bootloader
|
|
Source2: kexec-bootloader.8
|
|
Source3: kexec-load.service
|
|
Source4: %{name}-rpmlintrc
|
|
Patch3: %{name}-disable-test.patch
|
|
Patch4: %{name}-vmcoreinfo-in-xen.patch
|
|
# https://patchwork.kernel.org/project/linux-riscv/patch/20190416123233.4779-1-mick@ics.forth.gr/
|
|
Patch5: RISC-V-Add-support-for-kexec-on-kexec-tools.patch
|
|
BuildRequires: autoconf
|
|
BuildRequires: automake
|
|
BuildRequires: systemd-rpm-macros
|
|
BuildRequires: zlib-devel
|
|
#!BuildIgnore: fop
|
|
#!BuildIgnore: gcc-PIE
|
|
Requires: perl-Bootloader
|
|
Requires(post): suse-module-tools
|
|
Requires(postun):suse-module-tools
|
|
%{?systemd_requires}
|
|
%ifarch x86_64
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: xen-devel
|
|
%endif
|
|
|
|
%description
|
|
Kexec is a user space utility for loading another kernel and asking the
|
|
currently running kernel to do something with it. A currently running
|
|
kernel may be asked to start the loaded kernel on reboot, or to start
|
|
the loaded kernel after it panics.
|
|
|
|
%prep
|
|
%setup -q
|
|
%autopatch -p1
|
|
|
|
%build
|
|
autoreconf -fvi
|
|
export CFLAGS="%{optflags} -fPIC"
|
|
export BUILD_CFLAGS="%{optflags}"
|
|
export LDFLAGS="-pie"
|
|
%configure
|
|
%make_build
|
|
|
|
%install
|
|
%make_install
|
|
install -c -m 0644 %{SOURCE2} %{buildroot}/%{_mandir}/man8
|
|
mkdir -p %{buildroot}/%{_sbindir}
|
|
install -m 0755 %{SOURCE1} %{buildroot}/%{_sbindir}
|
|
mkdir -p %{buildroot}/%{_unitdir}
|
|
install -m644 %{SOURCE3} %{buildroot}/%{_unitdir}
|
|
ln -s service %{buildroot}%{_sbindir}/rckexec-load
|
|
%if 0%{?suse_version} < 1550
|
|
mkdir -p %{buildroot}/sbin
|
|
ln -s %{_sbindir}/kexec %{buildroot}/sbin
|
|
%endif
|
|
|
|
%post
|
|
%service_add_post kexec-load.service
|
|
%{?regenerate_initrd_post}
|
|
|
|
%postun
|
|
%service_del_postun kexec-load.service
|
|
%{?regenerate_initrd_post}
|
|
|
|
%pre
|
|
%service_add_pre kexec-load.service
|
|
|
|
%preun
|
|
%service_del_preun kexec-load.service
|
|
|
|
%posttrans
|
|
%{?regenerate_initrd_posttrans}
|
|
|
|
%files
|
|
%license COPYING
|
|
%doc AUTHORS News TODO doc
|
|
%{_mandir}/man*/*
|
|
%if 0%{?suse_version} < 1550
|
|
/sbin/kexec
|
|
%endif
|
|
%{_sbindir}/rckexec-load
|
|
%{_sbindir}/kexec
|
|
%{_sbindir}/kexec-bootloader
|
|
%{_sbindir}/vmcore-dmesg
|
|
%{_unitdir}/kexec-load.service
|