forked from pool/systemd
Frederic Crozat
37527bb454
- version 206 , highlights: * Unit files now understand the new %v specifier which resolves to the kernel version string as returned by "uname-r". * "journalctl -b" may now be used to look for boot output of a specific boot. Try "journalctl -b -1" * Creation of "dead" device nodes has been moved from udev into kmod and tmpfiles. * The udev "keymap" data files and tools to apply keyboard specific mappings of scan to key codes, and force-release scan code lists have been entirely replaced by a udev "keyboard" builtin and a hwdb data file. - remove patches now in upstream - systemd now requires libkmod >=14 and cryptsetup >= 1.6.0 - systemd now require the kmod tool in addition to the library. - version 206 , highlights: * Unit files now understand the new %v specifier which resolves to the kernel version string as returned by "uname-r". * "journalctl -b" may now be used to look for boot output of a specific boot. Try "journalctl -b -1" * Creation of "dead" device nodes has been moved from udev into kmod and tmpfiles. * The udev "keymap" data files and tools to apply keyboard specific mappings of scan to key codes, and force-release scan code lists have been entirely replaced by a udev "keyboard" builtin and a hwdb data file. - remove patches now in upstream - systemd now requires libkmod >=14 and cryptsetup >= 1.6.0 - systemd now require the kmod tool in addition to the library. (forwarded request 184035 from elvigia) OBS-URL: https://build.opensuse.org/request/show/184036 OBS-URL: https://build.opensuse.org/package/show/Base:System/systemd?expand=0&rev=416
18 lines
571 B
Diff
18 lines
571 B
Diff
From: Frederic Crozat <fcrozat@suse.com>
|
|
Date: Thu, 9 Feb 2012 16:19:38 +0000
|
|
Subject: ensure DM and LVM are started before local-fs-pre-target
|
|
|
|
ensure md / lvm /dmraid is started before mounting partitions,
|
|
if fsck was disabled for them (bnc#733283).
|
|
---
|
|
units/local-fs-pre.target | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
--- systemd-206.orig/units/local-fs-pre.target
|
|
+++ systemd-206/units/local-fs-pre.target
|
|
@@ -9,3 +9,4 @@
|
|
Description=Local File Systems (Pre)
|
|
Documentation=man:systemd.special(7)
|
|
RefuseManualStart=yes
|
|
+After=md.service lvm.service dmraid.service
|