Re: [systemd-devel] udev-212 and up on Sparc v8

2014-06-21 Thread Chase Rayfield
I have attached the output of export CFLAGS=-mcpu=v8 ; ./configure make for systemd-214 Hopefully that will be more helpful. Chase Rayfield On Saturday, June 21, 2014 1:57 AM, Samuli Suominen ssuomi...@gentoo.org wrote: On 21/06/14 08:38, Chase Rayfield wrote: udev up to version

[systemd-devel] SIT tunnel does not work

2014-06-21 Thread Tomasz Torcz
Hi, I've tried to establish SIT tunnel to Hurricane Electric, using systemd v214. It does not work, device do not appear. I'm concerned about networkd discarding part of netlink messages, see below. Original instruction is provided by HE, rest is my shot at translating it into netdev (nb.

Re: [systemd-devel] SIT tunnel does not work

2014-06-21 Thread Susant Sahani
On 06/21/2014 02:47 PM, Tomasz Torcz wrote: Hi, I've tried to establish SIT tunnel to Hurricane Electric, using systemd v214. It does not work, device do not appear. I'm concerned about networkd discarding part of netlink messages, see below. Original instruction is provided by HE, rest is

[systemd-devel] possible to run systemd-nspawn in a nested Xorg server?

2014-06-21 Thread Kai Krakow
Hello! I wonder if it is possible to spawn systemd nspawn containers in a way that the login manager and GUI start up in a nested Xorg server so that I can run the container system in a window. I don't need the boot process in that window, just Xorg, when started, should open a nested Xorg

Re: [systemd-devel] systemd-networkd: no network connectivity with 214/master due to 63a070415db09f5b5bcc5c

2014-06-21 Thread Tom Gundersen
On Fri, Jun 20, 2014 at 12:12 PM, Michal Sekletar msekl...@redhat.com wrote: On Wed, Jun 18, 2014 at 09:51:02PM +0200, Friedrich Kröner wrote: Hello, when trying systemd-networkd with =214 and the following config: [Match] Name=eth* [Network] DHCP=yes Address=2001:db8::1234:5678/64

Re: [systemd-devel] udev-212 and up on Sparc v8

2014-06-21 Thread Cristian Rodríguez
El 21/06/14 01:38, Chase Rayfield escribió: udev up to version 208 builds correctly on Sparc v8. However 212 and greater does not. Complete build logs of 208 and 214 can be found here: https://bugs.gentoo.org/show_bug.cgi?id=514016 Any suggestions or alternatives to how we can fix this would

Re: [systemd-devel] udev-212 and up on Sparc v8

2014-06-21 Thread Mike Gilbert
On Sat, Jun 21, 2014 at 10:04 AM, Cristian Rodríguez crrodrig...@opensuse.org wrote: El 21/06/14 01:38, Chase Rayfield escribió: udev up to version 208 builds correctly on Sparc v8. However 212 and greater does not. Complete build logs of 208 and 214 can be found here:

Re: [systemd-devel] udev-212 and up on Sparc v8

2014-06-21 Thread Mike Gilbert
On Sat, Jun 21, 2014 at 11:31 AM, Mike Gilbert flop...@gentoo.org wrote: On Sat, Jun 21, 2014 at 10:04 AM, Cristian Rodríguez crrodrig...@opensuse.org wrote: El 21/06/14 01:38, Chase Rayfield escribió: udev up to version 208 builds correctly on Sparc v8. However 212 and greater does not.

Re: [systemd-devel] systemd-networkd: no network connectivity with 214/master due to 63a070415db09f5b5bcc5c

2014-06-21 Thread Friedrich Kröner
On Saturday 21 June 2014 15:24:03 Tom Gundersen wrote: On Fri, Jun 20, 2014 at 12:12 PM, Michal Sekletar msekl...@redhat.com wrote: On Wed, Jun 18, 2014 at 09:51:02PM +0200, Friedrich Kröner wrote: Hello, when trying systemd-networkd with =214 and the following config: [Match]

Re: [systemd-devel] udev-212 and up on Sparc v8

2014-06-21 Thread Chase Rayfield
If I interpret that correctly, systemd would need to define _sync_sub_and_fetch_4 when building for 32-bit processors which do not support the __sync_sub_and_fetch operation natively. Yes exactly... I think libatomic_ops can help with that and I have built it from git on Sparc v8 (This flag is

Re: [systemd-devel] systemd-networkd: no network connectivity with 214/master due to 63a070415db09f5b5bcc5c

2014-06-21 Thread Camilo Aguilar
This is another reason why I previously suggested to expose a directive to allow administrators to enable/disable the broadcast flag. I have seen DHCP servers ignoring the flag and always sending broadcasted DHCPOFFERs. There could be other servers that may only use unicast, and even networks that

[systemd-devel] [PATCH 4/4] tests: add test_fdset_remove

2014-06-21 Thread Ronny Chevalier
--- src/test/test-fdset.c | 21 + 1 file changed, 21 insertions(+) diff --git a/src/test/test-fdset.c b/src/test/test-fdset.c index 7f52748..3b77415 100644 --- a/src/test/test-fdset.c +++ b/src/test/test-fdset.c @@ -106,11 +106,32 @@ static void test_fdset_close_others(void)

[systemd-devel] [PATCH 3/4] tests: add test-async

2014-06-21 Thread Ronny Chevalier
--- Makefile.am | 9 - src/test/test-async.c | 50 ++ 2 files changed, 58 insertions(+), 1 deletion(-) create mode 100644 src/test/test-async.c diff --git a/Makefile.am b/Makefile.am index 2bd66d5..8fe7cbe 100644 ---

[systemd-devel] [PATCH 1/4] build-sys: add -pthread flag for libsystemd-shared

2014-06-21 Thread Ronny Chevalier
src/shared/async.c uses pthread so it will fail at link time if we link only to libsystemd-shared and use async --- Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index c7653ea..00db82d 100644 --- a/Makefile.am +++ b/Makefile.am @@

[systemd-devel] [PATCH 2/4] tests: add test-capability

2014-06-21 Thread Ronny Chevalier
--- Makefile.am| 10 ++- src/test/test-capability.c | 161 + 2 files changed, 170 insertions(+), 1 deletion(-) create mode 100644 src/test/test-capability.c diff --git a/Makefile.am b/Makefile.am index 00db82d..2bd66d5 100644 ---

Re: [systemd-devel] [PATCH 1/4] build-sys: add -pthread flag for libsystemd-shared

2014-06-21 Thread Tom Gundersen
Applied all four. Thanks! Cheers, Tom On Sat, Jun 21, 2014 at 10:07 PM, Ronny Chevalier chevalier.ro...@gmail.com wrote: src/shared/async.c uses pthread so it will fail at link time if we link only to libsystemd-shared and use async --- Makefile.am | 3 ++- 1 file changed, 2

Re: [systemd-devel] [PATCH] consistently order cleanup attribute before type

2014-06-21 Thread Tom Gundersen
Applied. Thanks! -t On Sat, Jun 21, 2014 at 5:55 AM, Thomas H.P. Andersen pho...@gmail.com wrote: From: Thomas Hindoe Paaboel Andersen pho...@gmail.com --- src/cgls/cgls.c| 2 +- src/journal/journal-remote-parse.c | 4 ++-- src/journal/journal-remote.c | 8