forked from pool/kdump
This commit is contained in:
parent
2a453bb21d
commit
0ea20aa9b0
3
kdump-0.6.3-rpmlintrc
Normal file
3
kdump-0.6.3-rpmlintrc
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
addFilter("incoherent-init-script-name");
|
||||||
|
|
||||||
|
# :mode=python:
|
31
kdump-8580f201f2f759eb78c646a6b98727b4508101d3
Normal file
31
kdump-8580f201f2f759eb78c646a6b98727b4508101d3
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
# HG changeset patch
|
||||||
|
# User Bernhard Walle <bwalle@suse.de>
|
||||||
|
# Date 1224075838 -7200
|
||||||
|
# Node ID 8580f201f2f759eb78c646a6b98727b4508101d3
|
||||||
|
# Parent 2860e7a5d481633aca345b07db28d95fdb04d649
|
||||||
|
Reflect 'boot.kdump' in kdump(7)
|
||||||
|
|
||||||
|
The init script has been renamed to 'boot.kdump' to load the kdump kernel
|
||||||
|
earlier. Reflect that in documentation.
|
||||||
|
|
||||||
|
diff --git a/doc/man/kdump.7.txt.in b/doc/man/kdump.7.txt.in
|
||||||
|
--- a/doc/man/kdump.7.txt.in
|
||||||
|
+++ b/doc/man/kdump.7.txt.in
|
||||||
|
@@ -151,7 +151,7 @@
|
||||||
|
the YaST runlevel editor or simply
|
||||||
|
|
||||||
|
--------------------------
|
||||||
|
-# chkconfig kdump on
|
||||||
|
+# chkconfig boot.kdump on
|
||||||
|
--------------------------
|
||||||
|
|
||||||
|
on a shell. You can also execute it manually with +rckdump start+.
|
||||||
|
@@ -171,7 +171,7 @@
|
||||||
|
|
||||||
|
Load the kdump kernel
|
||||||
|
~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
-As mentioned above, the init script _/etc/init.d/kdump_ takes the part of
|
||||||
|
+As mentioned above, the init script _/etc/init.d/boot.kdump_ takes the part of
|
||||||
|
loading the kdump kernel. As kdump kernel, the normal system kernel is used, no
|
||||||
|
special kernel image is required.
|
||||||
|
|
@ -1,3 +1,9 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 15 15:05:55 CEST 2008 - bwalle@suse.de
|
||||||
|
|
||||||
|
- Reflect 'boot.kdump' in kdump(7).
|
||||||
|
- Add rpmlintrc: The init script name is correct.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Oct 13 18:59:50 CEST 2008 - bwalle@suse.de
|
Mon Oct 13 18:59:50 CEST 2008 - bwalle@suse.de
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@ Url: http://freehg.org/u/bwalle/kdump/
|
|||||||
Name: kdump
|
Name: kdump
|
||||||
License: GPL v2 or later
|
License: GPL v2 or later
|
||||||
Version: 0.6.3
|
Version: 0.6.3
|
||||||
Release: 28
|
Release: 29
|
||||||
Requires: curl openssh makedumpfile
|
Requires: curl openssh makedumpfile
|
||||||
Summary: Script for kdump
|
Summary: Script for kdump
|
||||||
Group: System/Kernel
|
Group: System/Kernel
|
||||||
@ -34,8 +34,10 @@ BuildRequires: libssh2-devel
|
|||||||
%endif
|
%endif
|
||||||
PreReq: %insserv_prereq %fillup_prereq mkinitrd
|
PreReq: %insserv_prereq %fillup_prereq mkinitrd
|
||||||
Source: %{name}-%{version}.tar.bz2
|
Source: %{name}-%{version}.tar.bz2
|
||||||
|
Source2: %{name}-%{version}-rpmlintrc
|
||||||
Patch0: %{name}-f4cf2ef3cc3e6414d7d9386de0ebf7d633cbfed5
|
Patch0: %{name}-f4cf2ef3cc3e6414d7d9386de0ebf7d633cbfed5
|
||||||
Patch1: %{name}-2860e7a5d481633aca345b07db28d95fdb04d649
|
Patch1: %{name}-2860e7a5d481633aca345b07db28d95fdb04d649
|
||||||
|
Patch2: %{name}-8580f201f2f759eb78c646a6b98727b4508101d3
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# rename "kdump-helpers" (10.3) -> "kdump" (11.0/SP2)
|
# rename "kdump-helpers" (10.3) -> "kdump" (11.0/SP2)
|
||||||
Provides: kdump-helpers = 0.2.4
|
Provides: kdump-helpers = 0.2.4
|
||||||
@ -59,6 +61,7 @@ Authors:
|
|||||||
%setup
|
%setup
|
||||||
%patch0 -p1
|
%patch0 -p1
|
||||||
%patch1 -p1
|
%patch1 -p1
|
||||||
|
%patch2 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export CFLAGS="%optflags"
|
export CFLAGS="%optflags"
|
||||||
@ -118,6 +121,9 @@ rm /var/log/dump &>/dev/null || true
|
|||||||
%config %{_sysconfdir}/udev/rules.d/70-kdump.rules
|
%config %{_sysconfdir}/udev/rules.d/70-kdump.rules
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Oct 15 2008 bwalle@suse.de
|
||||||
|
- Reflect 'boot.kdump' in kdump(7).
|
||||||
|
- Add rpmlintrc: The init script name is correct.
|
||||||
* Mon Oct 13 2008 bwalle@suse.de
|
* Mon Oct 13 2008 bwalle@suse.de
|
||||||
- Add documentation for "Extended crashkernel commandline"
|
- Add documentation for "Extended crashkernel commandline"
|
||||||
(bnc#430276).
|
(bnc#430276).
|
||||||
|
Loading…
x
Reference in New Issue
Block a user