Marcus Meissner
e6be739410
- 90multipath: Remove compat rule that is no longer needed (bsc#1054539) * adds 0536-90multipath-drop-67-kpartx-compat.rules.patch - Don't detect crc32.ko as built-in (bsc#1054538) * adds 0537-dracut-init.sh-ignore-crc32.ko-in-builtin-test.patch - Enable systemd-based core dumps for initrd (bsc#1054809) * adds 0538-Enable-core-dumps-with-systemd-from-initrd.patch OBS-URL: https://build.opensuse.org/request/show/519492 OBS-URL: https://build.opensuse.org/package/show/Base:System/dracut?expand=0&rev=319
30 lines
987 B
Diff
30 lines
987 B
Diff
From c15c37986d9387c7f7d1020bd7ca17f890ae6276 Mon Sep 17 00:00:00 2001
|
|
From: Daniel Molkentin <dmolkentin@suse.com>
|
|
Date: Tue, 29 Aug 2017 08:46:07 +0200
|
|
Subject: [PATCH] Enable core dumps with systemd from initrd
|
|
|
|
systemd sets /proc/sys/kernel/core_pattern to use systemd-coredump.
|
|
However, systemd-coredump is missing from initrd, making dumping
|
|
the core in initrd impossible by default.
|
|
|
|
Reference: bsc#1054809
|
|
---
|
|
modules.d/00systemd/module-setup.sh | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/modules.d/00systemd/module-setup.sh b/modules.d/00systemd/module-setup.sh
|
|
index 86728208..14b3ab07 100755
|
|
--- a/modules.d/00systemd/module-setup.sh
|
|
+++ b/modules.d/00systemd/module-setup.sh
|
|
@@ -33,6 +33,7 @@ install() {
|
|
|
|
inst_multiple -o \
|
|
$systemdutildir/systemd \
|
|
+ $systemdutildir/systemd-coredump \
|
|
$systemdutildir/systemd-cgroups-agent \
|
|
$systemdutildir/systemd-shutdown \
|
|
$systemdutildir/systemd-reply-password \
|
|
--
|
|
2.12.3
|
|
|