From patchwork Mon Jun 29 13:14:43 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vicente Olivert Riera X-Patchwork-Id: 489312 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id 73F5A140761 for ; Mon, 29 Jun 2015 23:16:30 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 4B5B586E56; Mon, 29 Jun 2015 13:16:29 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id SfE13G+OnV2d; Mon, 29 Jun 2015 13:16:28 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 9298B869B8; Mon, 29 Jun 2015 13:16:28 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) by ash.osuosl.org (Postfix) with ESMTP id 433BE1BF978 for ; Mon, 29 Jun 2015 13:16:27 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 3FBD9A1C58 for ; Mon, 29 Jun 2015 13:16:27 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id rjgQIiuFe82s for ; Mon, 29 Jun 2015 13:16:26 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailapp01.imgtec.com (mailapp01.imgtec.com [195.59.15.196]) by fraxinus.osuosl.org (Postfix) with ESMTP id 9A2DDA1C4F for ; Mon, 29 Jun 2015 13:16:26 +0000 (UTC) Received: from KLMAIL01.kl.imgtec.org (unknown [192.168.5.35]) by Websense Email Security Gateway with ESMTPS id 2ACC6D2544DA1 for ; Mon, 29 Jun 2015 14:16:21 +0100 (IST) Received: from LEMAIL01.le.imgtec.org (192.168.152.62) by KLMAIL01.kl.imgtec.org (192.168.5.35) with Microsoft SMTP Server (TLS) id 14.3.195.1; Mon, 29 Jun 2015 14:16:23 +0100 Received: from quad.le.imgtec.org (192.168.159.33) by LEMAIL01.le.imgtec.org (192.168.152.62) with Microsoft SMTP Server (TLS) id 14.3.210.2; Mon, 29 Jun 2015 14:16:22 +0100 From: Vicente Olivert Riera To: Date: Mon, 29 Jun 2015 15:14:43 +0200 Message-ID: <1435583683-6642-1-git-send-email-Vincent.Riera@imgtec.com> X-Mailer: git-send-email 2.3.6 MIME-Version: 1.0 X-Originating-IP: [192.168.159.33] Subject: [Buildroot] [PATCH] systemd: bump to version 221 X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" - Bump to version 221 - Update hash file - Add --disable-gnuefi to configure options to avoid a failure like this one: checking for /usr/lib/gnuefi/elf_ia32_efi.lds... configure: error: cannot check for file existence when cross compiling - Remove gudev logic since it has been removed from the systemd tree and it is now an external project. Announcement URL: http://lists.freedesktop.org/archives/systemd-devel/2015-June/033170.html Signed-off-by: Vicente Olivert Riera --- package/systemd/systemd.hash | 2 +- package/systemd/systemd.mk | 10 ++-------- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/package/systemd/systemd.hash b/package/systemd/systemd.hash index d2ac740..f746051 100644 --- a/package/systemd/systemd.hash +++ b/package/systemd/systemd.hash @@ -1,2 +1,2 @@ # Locally calculated -sha256 5c57113454e37c040d0cb481bd960ae7cf3a3fe0a231ff4945259bc74503f2d9 systemd-219.tar.xz +sha256 085e088650afbfc688ccb13459aedb1fbc7c8810358605b076301f472d51cc4f systemd-221.tar.xz diff --git a/package/systemd/systemd.mk b/package/systemd/systemd.mk index 98bda02..ee17bc8 100644 --- a/package/systemd/systemd.mk +++ b/package/systemd/systemd.mk @@ -4,7 +4,7 @@ # ################################################################################ -SYSTEMD_VERSION = 219 +SYSTEMD_VERSION = 221 SYSTEMD_SITE = http://www.freedesktop.org/software/systemd SYSTEMD_SOURCE = systemd-$(SYSTEMD_VERSION).tar.xz SYSTEMD_LICENSE = LGPLv2.1+; GPLv2+ for udev; MIT-like license for few source files listed in README @@ -39,6 +39,7 @@ SYSTEMD_CONF_OPTS += \ --with-dbussystemservicedir=/usr/share/dbus-1/system-services \ --enable-split-usr \ --disable-efi \ + --disable-gnuefi \ --disable-tests \ --disable-dbus \ --without-python @@ -63,13 +64,6 @@ else SYSTEMD_CONF_OPTS += --disable-acl endif -ifeq ($(BR2_PACKAGE_LIBGLIB2),y) -SYSTEMD_CONF_OPTS += --enable-gudev -SYSTEMD_DEPENDENCIES += libglib2 -else -SYSTEMD_CONF_OPTS += --disable-gudev -endif - ifeq ($(BR2_PACKAGE_LIBSECCOMP),y) SYSTEMD_CONF_OPTS += --enable-seccomp SYSTEMD_DEPENDENCIES += libseccomp