forked from pool/systemd
Frederic Crozat
66d91c199e
- 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
42 lines
1.4 KiB
Diff
42 lines
1.4 KiB
Diff
From: Frederic Crozat <fcrozat@suse.com>
|
|
Date: Thu, 10 Jan 2013 15:43:25 +0000
|
|
Subject: allow multiple sulogin to be started
|
|
|
|
allows multiple sulogin instance (bnc#793182).
|
|
---
|
|
units/getty@.service.m4 | 1 +
|
|
units/rescue.target | 1 +
|
|
units/serial-getty@.service.m4 | 1 +
|
|
3 files changed, 3 insertions(+)
|
|
|
|
--- systemd-206.orig/units/getty@.service.m4
|
|
+++ systemd-206/units/getty@.service.m4
|
|
@@ -9,6 +9,7 @@
|
|
Description=Getty on %I
|
|
Documentation=man:agetty(8) man:systemd-getty-generator(8)
|
|
Documentation=http://0pointer.de/blog/projects/serial-console.html
|
|
+Conflicts=rescue.service
|
|
After=systemd-user-sessions.service plymouth-quit-wait.service
|
|
m4_ifdef(`HAVE_SYSV_COMPAT',
|
|
After=rc-local.service
|
|
--- systemd-206.orig/units/rescue.target
|
|
+++ systemd-206/units/rescue.target
|
|
@@ -10,6 +10,7 @@ Description=Rescue Mode
|
|
Documentation=man:systemd.special(7)
|
|
Requires=sysinit.target rescue.service
|
|
After=sysinit.target rescue.service
|
|
+Conflicts=getty.target
|
|
AllowIsolate=yes
|
|
|
|
[Install]
|
|
--- systemd-206.orig/units/serial-getty@.service.m4
|
|
+++ systemd-206/units/serial-getty@.service.m4
|
|
@@ -10,6 +10,7 @@ Description=Serial Getty on %I
|
|
Documentation=man:agetty(8) man:systemd-getty-generator(8)
|
|
Documentation=http://0pointer.de/blog/projects/serial-console.html
|
|
BindsTo=dev-%i.device
|
|
+Conflicts=rescue.service
|
|
After=dev-%i.device systemd-user-sessions.service plymouth-quit-wait.service
|
|
m4_ifdef(`HAVE_SYSV_COMPAT',
|
|
After=rc-local.service
|