summaryrefslogtreecommitdiffstats
path: root/package/systemd/systemd-02-efi-fix-Undefined-reference-efi_loader_get_boot_usec.patch
diff options
context:
space:
mode:
authorEric Le Bihan <eric.le.bihan.dev@free.fr>2014-03-17 15:25:42 +0100
committerPeter Korsgaard <peter@korsgaard.com>2014-03-17 22:57:47 +0100
commitc0e8ff6b27cd2a77590471d122e73f34c9dd28f2 (patch)
treec02a148a6e4b54c2451fbc3426d8932ce38e221f /package/systemd/systemd-02-efi-fix-Undefined-reference-efi_loader_get_boot_usec.patch
parentd9b463b291c9585f868efb76a32507aa14b8d72d (diff)
downloadbuildroot-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-02-efi-fix-Undefined-reference-efi_loader_get_boot_usec.patch')
-rw-r--r--package/systemd/systemd-02-efi-fix-Undefined-reference-efi_loader_get_boot_usec.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/package/systemd/systemd-02-efi-fix-Undefined-reference-efi_loader_get_boot_usec.patch b/package/systemd/systemd-02-efi-fix-Undefined-reference-efi_loader_get_boot_usec.patch
deleted file mode 100644
index 84b0a1abe4..0000000000
--- a/package/systemd/systemd-02-efi-fix-Undefined-reference-efi_loader_get_boot_usec.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-From 70d9b9fc0a4fa1698ff00e364c61bb875244efa1 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Cristian=20Rodr=C3=ADguez?= <crrodriguez@opensuse.org>
-Date: Tue, 11 Feb 2014 09:54:49 -0300
-Subject: [PATCH] efi: fix Undefined reference efi_loader_get_boot_usec when
- EFI support is disabled
-
-Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr>
----
- src/shared/boot-timestamps.c | 2 ++
- 1 file changed, 2 insertions(+)
-
-diff --git a/src/shared/boot-timestamps.c b/src/shared/boot-timestamps.c
-index 9449965..d656685 100644
---- a/src/shared/boot-timestamps.c
-+++ b/src/shared/boot-timestamps.c
-@@ -40,8 +40,10 @@ int boot_timestamps(const dual_timestamp *n, dual_timestamp *firmware, dual_time
-
- r = acpi_get_boot_usec(&x, &y);
- if (r < 0) {
-+#ifdef ENABLE_EFI
- r = efi_loader_get_boot_usec(&x, &y);
- if (r < 0)
-+#endif
- return r;
- }
-
---
-1.7.9.5
-
OpenPOWER on IntegriCloud