diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 02:56:35 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 02:56:35 +0000 |
commit | eba0cfa6b0bef4f2e73c8630a7efa3944df8b0f8 (patch) | |
tree | 74c37eede1f0634cc5de1c63c934edaa1630c6bc /kexec-tools.spec | |
parent | Initial commit. (diff) | |
download | kexec-tools-eba0cfa6b0bef4f2e73c8630a7efa3944df8b0f8.tar.xz kexec-tools-eba0cfa6b0bef4f2e73c8630a7efa3944df8b0f8.zip |
Adding upstream version 1:2.0.27.upstream/1%2.0.27upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | kexec-tools.spec | 42 | ||||
-rw-r--r-- | kexec-tools.spec.in | 42 |
2 files changed, 84 insertions, 0 deletions
diff --git a/kexec-tools.spec b/kexec-tools.spec new file mode 100644 index 0000000..169aceb --- /dev/null +++ b/kexec-tools.spec @@ -0,0 +1,42 @@ +Summary: Load one kernel from another +Name: kexec-tools +Version: 2.0.27 +Release: 0 +License: GPL +Group: Development/Tools +Source0:%{name}-%{version}.tar.gz +Packager: Eric Biederman <ebiederman@xmission.com> +BuildRoot: %{_tmppath}/%{name} + +%description +/sbin/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. + +The panic case is useful for having an intact kernel for writing +crash dumps. But other uses may be imagined. + +%prep +%setup -q -n %{name}-%{version} + +%build +%configure +make + +%install +make install DESTDIR=${RPM_BUILD_ROOT} + +%files +%defattr(-,root,root) +%{_sbindir}/kexec +%{_sbindir}/vmcore-dmesg +%doc News +%doc COPYING +%doc TODO +%{_mandir}/man8/kexec.8.gz +%{_mandir}/man8/vmcore-dmesg.8.gz + +%changelog +* Tue Dec 16 2004 Eric Biederman <ebiederman@lnxi.com> +- kexec-tools initialy packaged as an rpm. diff --git a/kexec-tools.spec.in b/kexec-tools.spec.in new file mode 100644 index 0000000..3e57a22 --- /dev/null +++ b/kexec-tools.spec.in @@ -0,0 +1,42 @@ +Summary: Load one kernel from another +Name: kexec-tools +Version: +Release: 0 +License: GPL +Group: Development/Tools +Source0:%{name}-%{version}.tar.gz +Packager: Eric Biederman <ebiederman@xmission.com> +BuildRoot: %{_tmppath}/%{name} + +%description +/sbin/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. + +The panic case is useful for having an intact kernel for writing +crash dumps. But other uses may be imagined. + +%prep +%setup -q -n %{name}-%{version} + +%build +%configure +make + +%install +make install DESTDIR=${RPM_BUILD_ROOT} + +%files +%defattr(-,root,root) +%{_sbindir}/kexec +%{_sbindir}/vmcore-dmesg +%doc News +%doc COPYING +%doc TODO +%{_mandir}/man8/kexec.8.gz +%{_mandir}/man8/vmcore-dmesg.8.gz + +%changelog +* Tue Dec 16 2004 Eric Biederman <ebiederman@lnxi.com> +- kexec-tools initialy packaged as an rpm. |