diff options
author | Eric Le Bihan <eric.le.bihan.dev@free.fr> | 2014-03-17 15:25:42 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-03-17 22:57:47 +0100 |
commit | c0e8ff6b27cd2a77590471d122e73f34c9dd28f2 (patch) | |
tree | c02a148a6e4b54c2451fbc3426d8932ce38e221f /package/systemd/systemd-01-fix-getty-unit.patch | |
parent | d9b463b291c9585f868efb76a32507aa14b8d72d (diff) | |
download | buildroot-c0e8ff6b27cd2a77590471d122e73f34c9dd28f2.tar.gz buildroot-c0e8ff6b27cd2a77590471d122e73f34c9dd28f2.zip |
systemd: bump to version 210.
This patch bumps systemd to version 210. Systemd 209 introduced some majors
changes, which generated a lot of feedback and bugfixes. This lead to
version 210 a few days later.
Notable changes in 210:
- dropped dependency on libdbus in favor of internal sd-bus library.
- experimental support for kdbus.
- introduction of systemd-networkd, a simple network configuration manager.
- merge of libsystemd-*.so libraries into libsystemd.so.
- changes in Gudev API.
See NEWS file in the tarball for an exhaustive list.
Changes introduced by this bump:
- new configuration menu entry to enable systemd-networkd, which is an
alternative to ISC dhcp and dhcpcd.
- remove EFI patch for version 208.
- update of the getty unit patch.
- new patch to remove the *.service files accidentally shipped in the
official tarball (contain some invalid hardcoded paths) and force
their re-generation.
[Peter: add a note that dbus is only a runtime dependency now]
Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/systemd/systemd-01-fix-getty-unit.patch')
-rw-r--r-- | package/systemd/systemd-01-fix-getty-unit.patch | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/package/systemd/systemd-01-fix-getty-unit.patch b/package/systemd/systemd-01-fix-getty-unit.patch index 166a2e545c..e553ef3ada 100644 --- a/package/systemd/systemd-01-fix-getty-unit.patch +++ b/package/systemd/systemd-01-fix-getty-unit.patch @@ -4,28 +4,26 @@ Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com> Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr> --- -Index: systemd-206/units/getty@.service.m4 -=================================================================== ---- systemd-206.orig/units/getty@.service.m4 2013-07-22 00:43:28.000000000 +0200 -+++ systemd-206/units/getty@.service.m4 2013-09-18 10:20:17.000000000 +0200 +diff -aburN systemd-210.orig/units/getty@.service.m4 systemd-210/units/getty@.service.m4 +--- systemd-210.orig/units/getty@.service.m4 2013-12-18 18:21:28.000000000 +0100 ++++ systemd-210/units/getty@.service.m4 2014-03-13 10:20:10.000000000 +0100 @@ -27,7 +27,7 @@ [Service] # the VT is cleared by TTYVTDisallocate --ExecStart=-/sbin/agetty --noclear %I +-ExecStart=-/sbin/agetty --noclear %I $TERM +ExecStart=-/sbin/getty -L %I 115200 vt100 Type=idle Restart=always RestartSec=0 -Index: systemd-206/units/serial-getty@.service.m4 -=================================================================== ---- systemd-206.orig/units/serial-getty@.service.m4 2013-07-22 00:43:28.000000000 +0200 -+++ systemd-206/units/serial-getty@.service.m4 2013-09-18 10:21:31.000000000 +0200 +diff -aburN systemd-210.orig/units/serial-getty@.service.m4 systemd-210/units/serial-getty@.service.m4 +--- systemd-210.orig/units/serial-getty@.service.m4 2014-02-24 15:38:03.000000000 +0100 ++++ systemd-210/units/serial-getty@.service.m4 2014-03-13 10:20:10.000000000 +0100 @@ -22,7 +22,7 @@ IgnoreOnIsolate=yes [Service] --ExecStart=-/sbin/agetty --keep-baud %I 115200,38400,9600 +-ExecStart=-/sbin/agetty --keep-baud %I 115200,38400,9600 $TERM +ExecStart=-/sbin/getty -L %I 115200 vt100 Type=idle Restart=always |