forked from pool/systemd
Marcus Meissner
040ccd5e7a
- Add fastboot-forcefsck.patch: ensure fastboot and forcefsck on kernel commandline are handled. - Add fix-write-user-state-file.patch: write logind state file correctly. - Disable logind-logout.patch: cause too many issues (bnc#769531). - Add fix-tty-startup.patch: don't limit tty VT to 12 (bnc#770182). OBS-URL: https://build.opensuse.org/request/show/127840 OBS-URL: https://build.opensuse.org/package/show/Base:System/systemd?expand=0&rev=288
14 lines
724 B
Diff
14 lines
724 B
Diff
Index: systemd-44/src/fsck.c
|
|
===================================================================
|
|
--- systemd-44.orig/src/fsck.c
|
|
+++ systemd-44/src/fsck.c
|
|
@@ -127,7 +127,7 @@ static int parse_proc_cmdline(void) {
|
|
arg_skip = true;
|
|
else if (startswith(w, "fsck.mode"))
|
|
log_warning("Invalid fsck.mode= parameter. Ignoring.");
|
|
-#if defined(TARGET_FEDORA) || defined(TARGET_MANDRIVA) || defined(TARGET_MAGEIA)
|
|
+#if defined(TARGET_FEDORA) || defined(TARGET_MANDRIVA) || defined(TARGET_MAGEIA) || defined(TARGET_SUSE)
|
|
else if (strneq(w, "fastboot", l))
|
|
arg_skip = true;
|
|
else if (strneq(w, "forcefsck", l))
|