* [Buildroot] [PATCH] systemd: bump to version 221
@ 2015-06-29 13:14 Vicente Olivert Riera
2015-06-29 20:10 ` Thomas Petazzoni
2015-06-30 18:15 ` Yann E. MORIN
0 siblings, 2 replies; 4+ messages in thread
From: Vicente Olivert Riera @ 2015-06-29 13:14 UTC (permalink / raw)
To: 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 <Vincent.Riera@imgtec.com>
---
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
--
2.3.6
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH] systemd: bump to version 221
2015-06-29 13:14 [Buildroot] [PATCH] systemd: bump to version 221 Vicente Olivert Riera
@ 2015-06-29 20:10 ` Thomas Petazzoni
2015-06-30 18:15 ` Yann E. MORIN
1 sibling, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2015-06-29 20:10 UTC (permalink / raw)
To: buildroot
Dear Vicente Olivert Riera,
On Mon, 29 Jun 2015 15:14:43 +0200, Vicente Olivert Riera wrote:
> - 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 <Vincent.Riera@imgtec.com>
> ---
> package/systemd/systemd.hash | 2 +-
> package/systemd/systemd.mk | 10 ++--------
> 2 files changed, 3 insertions(+), 9 deletions(-)
Applied, thanks. It would be good if someone can investigate the GNU
EFI issue, and see if it makes sense to fix it.
Thanks,
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH] systemd: bump to version 221
2015-06-29 13:14 [Buildroot] [PATCH] systemd: bump to version 221 Vicente Olivert Riera
2015-06-29 20:10 ` Thomas Petazzoni
@ 2015-06-30 18:15 ` Yann E. MORIN
2015-06-30 20:46 ` Vicente Olivert Riera
1 sibling, 1 reply; 4+ messages in thread
From: Yann E. MORIN @ 2015-06-30 18:15 UTC (permalink / raw)
To: buildroot
Vicente, All,
On 2015-06-29 15:14 +0200, Vicente Olivert Riera spake thusly:
> - Bump to version 221
This causes build falures because the licensing information is not
correct:
http://autobuild.buildroot.org/results/6e3/6e3dace5892a589225a93c896917833ebc8028f3/build-end.log
Care to send a fix, please?
Regards,
Yann E. MORIN.
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH] systemd: bump to version 221
2015-06-30 18:15 ` Yann E. MORIN
@ 2015-06-30 20:46 ` Vicente Olivert Riera
0 siblings, 0 replies; 4+ messages in thread
From: Vicente Olivert Riera @ 2015-06-30 20:46 UTC (permalink / raw)
To: buildroot
Patch sent:
http://patchwork.ozlabs.org/patch/489806/
Regards,
--
vincent
On 30/06/15 20:15, Yann E. MORIN wrote:
> Vicente, All,
>
> On 2015-06-29 15:14 +0200, Vicente Olivert Riera spake thusly:
>> - Bump to version 221
>
> This causes build falures because the licensing information is not
> correct:
>
> http://autobuild.buildroot.org/results/6e3/6e3dace5892a589225a93c896917833ebc8028f3/build-end.log
>
> Care to send a fix, please?
>
> Regards,
> Yann E. MORIN.
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-06-30 20:46 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-29 13:14 [Buildroot] [PATCH] systemd: bump to version 221 Vicente Olivert Riera
2015-06-29 20:10 ` Thomas Petazzoni
2015-06-30 18:15 ` Yann E. MORIN
2015-06-30 20:46 ` Vicente Olivert Riera
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox