44 lines
1.4 KiB
Plaintext
44 lines
1.4 KiB
Plaintext
# HG changeset patch
|
|
# User Bernhard Walle <bwalle@suse.de>
|
|
# Date 1224709251 -7200
|
|
# Node ID 8712f642965d13539148e385aefb805e3464b62d
|
|
# Parent f4cf2ef3cc3e6414d7d9386de0ebf7d633cbfed5
|
|
Actually check <version>-kdump before <version>-<flavour> when looking for a suitable kdump kernel
|
|
|
|
diff -r f4cf2ef3cc3e -r 8712f642965d ChangeLog
|
|
--- a/ChangeLog Mon Aug 18 16:39:12 2008 +0200
|
|
+++ b/ChangeLog Wed Oct 22 23:00:51 2008 +0200
|
|
@@ -1,3 +1,8 @@
|
|
+2008-10-22 Bernhard Walle <bwalle@suse.de>
|
|
+
|
|
+ * actually check <version>-kdump before <version>-<flavour> when
|
|
+ looking for a suitable kdump kernel
|
|
+
|
|
2008-08-18 Bernhard Walle <bwalle@suse.de>
|
|
|
|
* change default location to "/var/crash"
|
|
diff -r f4cf2ef3cc3e -r 8712f642965d NEWS
|
|
--- a/NEWS Mon Aug 18 16:39:12 2008 +0200
|
|
+++ b/NEWS Wed Oct 22 23:00:51 2008 +0200
|
|
@@ -1,6 +1,8 @@
|
|
0.6.4
|
|
-----
|
|
* change default location for KDUMP_SAVEDIR to "/var/crash"
|
|
+ * actually check <version>-kdump before <version>-<flavour> when looking for
|
|
+ a suitable kdump kernel
|
|
|
|
0.6.3
|
|
-----
|
|
diff -r f4cf2ef3cc3e -r 8712f642965d init/boot.kdump
|
|
--- a/init/boot.kdump Mon Aug 18 16:39:12 2008 +0200
|
|
+++ b/init/boot.kdump Wed Oct 22 23:00:51 2008 +0200
|
|
@@ -129,7 +129,7 @@
|
|
local kdump_kver=
|
|
|
|
# <version>-kdump first
|
|
- kdump_kver=$(uname -r | sed -e's/-[^-]*$//g')
|
|
+ kdump_kver=$(uname -r | sed -e's/-[^-]*$//g')-kdump
|
|
if [ -n "$(check_boot_kernel $kdump_kver)" ] ; then
|
|
echo "$kdump_kver"
|
|
return
|