Re: [systemd-devel] [PATCH] logs-show: fix corrupt output with empty messages

2014-02-27 Thread Uoti Urpala
On Thu, 2014-02-27 at 06:47 +0100, Zbigniew Jędrzejewski-Szmek wrote: Applied, though I changed the fix to simply print a newline. Just seems nicer this way. OK, though I would have added a return false; if doing it that way - now it somewhat non-obviously depends on the code below being a

[systemd-devel] RTC on BeagleBone Black or embedded platforms

2014-02-27 Thread Mike
Hello all First I'd like to express my gratitude for all the work that is being done with systemd. Until fairly recently I wasn't even aware that the project existed. I often just stay in my comfort zone and don't track recent advances... The boot speed is impressive and the cost of entry

Re: [systemd-devel] RTC on BeagleBone Black or embedded platforms

2014-02-27 Thread Kay Sievers
On Thu, Feb 27, 2014 at 4:46 PM, Mike bellyac...@gmail.com wrote: My biggest dilemma at this time right now is with the RTC. The BeagleBone Black does have a RTC and it gets assigned to /dev/rtc0. There is however now battery backup for this device. Assuming you meant no? I've added a

Re: [systemd-devel] RTC on BeagleBone Black or embedded platforms

2014-02-27 Thread Lennart Poettering
On Thu, 27.02.14 10:46, Mike (bellyac...@gmail.com) wrote: Heya, My biggest dilemma at this time right now is with the RTC. The BeagleBone Black does have a RTC and it gets assigned to /dev/rtc0. There is however no battery backup for this device. I've added a Hmm, what's the point of such

[systemd-devel] [PATCH] architecture: Add tilegx

2014-02-27 Thread Henrik Grindal Bakken
Add Tilera's TILE-GX processor family support. --- src/shared/architecture.c | 3 +++ src/shared/architecture.h | 3 +++ 2 files changed, 6 insertions(+) diff --git a/src/shared/architecture.c b/src/shared/architecture.c index ceba492..eae82dc 100644 --- a/src/shared/architecture.c +++

[systemd-devel] [PATCH] sd-dhcp: implement IPv4 link-local support

2014-02-27 Thread Umut Tezduyar Lindskog
Implements IPv4LL with respect to RFC 3927 (http://tools.ietf.org/rfc/rfc3927.txt) and integrates it with networkd. Majority of the IPv4LL state machine is taken from avahi (http://avahi.org/) project's autoip. IPv4LL can be enabled by IPv4LL=yes under [Network] section of .network file. IPv4LL

[systemd-devel] statically linking systemd-socket-proxyd

2014-02-27 Thread Vincent Batts
I see that despite --enable-static listed as a ./configure flag, it is not supported. Can we get a Makefile target for compiling the systemd-socket-proxyd as statically linked? For it to be portable for any guest container. Take care, vb pgpdy2yt5pm0C.pgp Description: PGP signature

Re: [systemd-devel] statically linking systemd-socket-proxyd

2014-02-27 Thread Cristian Rodríguez
El 27/02/14 17:35, Vincent Batts escribió: I see that despite --enable-static listed as a ./configure flag, it is not supported. Can we get a Makefile target for compiling the systemd-socket-proxyd as statically linked? For it to be portable for any guest container. static linking will not

Re: [systemd-devel] pcre in daemons

2014-02-27 Thread Lennart Poettering
On Wed, 26.02.14 20:54, Thomas H.P. Andersen (pho...@gmail.com) wrote: The todo says: something pulls in pcre as shared object dependency into our daemons such as hostnamed Normal buiild: ldd ./systemd-hostnamed linux-vdso.so.1 = (0x7fff247bc000) libselinux.so.1 =

Re: [systemd-devel] pcre in daemons

2014-02-27 Thread Lennart Poettering
On Wed, 26.02.14 16:22, Daniel J Walsh (dwa...@redhat.com) wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 02/26/2014 03:05 PM, Zbigniew Jędrzejewski-Szmek wrote: On Wed, Feb 26, 2014 at 08:54:34PM +0100, Thomas H.P. Andersen wrote: The todo says: something pulls in pcre as

Re: [systemd-devel] statically linking systemd-socket-proxyd

2014-02-27 Thread David Timothy Strauss
On Thu, Feb 27, 2014 at 12:35 PM, Vincent Batts vba...@redhat.com wrote: Can we get a Makefile target for compiling the systemd-socket-proxyd as statically linked? For it to be portable for any guest container. I think that would be neat. While I wrote much of that proxy, I'm not versed well

[systemd-devel] [RFC] San Francisco Hackfest April 15th?

2014-02-27 Thread Lennart Poettering
Heya! We are looking into organizing a systemd hackfest in San Francisco around th 15th of April, at the Pantheon offices. At least Kay and I will show up, but we were wondering regarding the precise date which day would work best for people who might want to join? Any suggestions, comments?

Re: [systemd-devel] [PATCH] sd-dhcp: implement IPv4 link-local support

2014-02-27 Thread David Timothy Strauss
This is a lot of code, and this approach is largely obsoleted by link-local IPv6 addressing, which also has the benefits of being simpler, deterministic (at least with RFC 4862), and collision-proof. Both Apple [1] and Microsoft [2] prefer IPv6 link-local as the best practice. Is it really that

Re: [systemd-devel] [RFC] San Francisco Hackfest April 15th?

2014-02-27 Thread Zbigniew Jędrzejewski-Szmek
On Thu, Feb 27, 2014 at 11:40:45PM +0100, Lennart Poettering wrote: Heya! We are looking into organizing a systemd hackfest in San Francisco around th 15th of April, at the Pantheon offices. At least Kay and I will show up, but we were wondering regarding the precise date which day would

[systemd-devel] Topics for the Linux Storage, Filesystem MM Summit

2014-02-27 Thread David Timothy Strauss
I'll be attending the Linux Storage, Filesystem MM Summit in March. Are there any topics germane to systemd I should put on the agenda or discuss with other folks there? Things I have in mind so far: * Next steps for mount and automount units * That's it so far. I'm mostly attending for my

Re: [systemd-devel] Topics for the Linux Storage, Filesystem MM Summit

2014-02-27 Thread Lennart Poettering
On Thu, 27.02.14 14:44, David Timothy Strauss (da...@davidstrauss.net) wrote: I'll be attending the Linux Storage, Filesystem MM Summit in March. Are there any topics germane to systemd I should put on the agenda or discuss with other folks there? Things I have in mind so far: * Next

Re: [systemd-devel] statically linking systemd-socket-proxyd

2014-02-27 Thread Lennart Poettering
On Thu, 27.02.14 15:35, Vincent Batts (vba...@redhat.com) wrote: I see that despite --enable-static listed as a ./configure flag, it is not supported. Can we get a Makefile target for compiling the systemd-socket-proxyd as statically linked? For it to be portable for any guest container. As

Re: [systemd-devel] [PATCH] sd-dhcp: implement IPv4 link-local support

2014-02-27 Thread Lennart Poettering
On Thu, 27.02.14 21:54, Umut Tezduyar Lindskog (umut.tezdu...@axis.com) wrote: Implements IPv4LL with respect to RFC 3927 (http://tools.ietf.org/rfc/rfc3927.txt) and integrates it with networkd. Majority of the IPv4LL state machine is taken from avahi (http://avahi.org/) project's autoip.

Re: [systemd-devel] Topics for the Linux Storage, Filesystem MM Summit

2014-02-27 Thread Chris Murphy
On Feb 27, 2014, at 4:09 PM, Lennart Poettering lenn...@poettering.net wrote: - uuids for btrfs subvols btrfs subvol show pathtosubvolume It will show the subvol uuid, and if it's a snapshot it will also show the parent uuid. If you mean partitiontypeGUID so we have some idea what the

Re: [systemd-devel] [PATCH] sd-dhcp: implement IPv4 link-local support

2014-02-27 Thread Lennart Poettering
On Thu, 27.02.14 14:28, David Timothy Strauss (da...@davidstrauss.net) wrote: This is a lot of code, and this approach is largely obsoleted by link-local IPv6 addressing, which also has the benefits of being simpler, deterministic (at least with RFC 4862), and collision-proof. Both Apple

Re: [systemd-devel] Topics for the Linux Storage, Filesystem MM Summit

2014-02-27 Thread Lennart Poettering
On Thu, 27.02.14 17:06, Chris Murphy (li...@colorremedies.com) wrote: On Feb 27, 2014, at 4:09 PM, Lennart Poettering lenn...@poettering.net wrote: - uuids for btrfs subvols btrfs subvol show pathtosubvolume It will show the subvol uuid, and if it's a snapshot it will also show

Re: [systemd-devel] Topics for the Linux Storage, Filesystem MM Summit

2014-02-27 Thread Chris Murphy
On Feb 27, 2014, at 5:16 PM, Lennart Poettering lenn...@poettering.net wrote: On Thu, 27.02.14 17:06, Chris Murphy (li...@colorremedies.com) wrote: On Feb 27, 2014, at 4:09 PM, Lennart Poettering lenn...@poettering.net wrote: - uuids for btrfs subvols btrfs subvol show

Re: [systemd-devel] Topics for the Linux Storage, Filesystem MM Summit

2014-02-27 Thread Lennart Poettering
On Thu, 27.02.14 17:47, Chris Murphy (li...@colorremedies.com) wrote: On Feb 27, 2014, at 5:16 PM, Lennart Poettering lenn...@poettering.net wrote: On Thu, 27.02.14 17:06, Chris Murphy (li...@colorremedies.com) wrote: On Feb 27, 2014, at 4:09 PM, Lennart Poettering

Re: [systemd-devel] [PATCH] architecture: Add tilegx

2014-02-27 Thread Lennart Poettering
On Thu, 27.02.14 21:19, Henrik Grindal Bakken (h...@ifi.uio.no) wrote: Applied! Thanks! Add Tilera's TILE-GX processor family support. --- src/shared/architecture.c | 3 +++ src/shared/architecture.h | 3 +++ 2 files changed, 6 insertions(+) diff --git a/src/shared/architecture.c

Re: [systemd-devel] StartLimitAction Feature

2014-02-27 Thread Lennart Poettering
On Wed, 26.02.14 11:59, Usman (deser...@yahoo.com) wrote: Hi Guys, I am getting started with systemd and am looking for a particular answer. I know the config option StartLimitAction= will have a pre-set option to choose from. It either restarts the box or so. But I want to do

Re: [systemd-devel] systemd version debus call changed

2014-02-27 Thread Timothée Ravier
On 26/02/2014 02:38, Lennart Poettering wrote: On Wed, 26.02.14 02:01, Jason A. Donenfeld (ja...@zx2c4.com) wrote: Upstream KDE patch is here:

Re: [systemd-devel] [PATCH] sd-dhcp: implement IPv4 link-local support

2014-02-27 Thread Tom Gundersen
On Thu, Feb 27, 2014 at 11:28 PM, David Timothy Strauss da...@davidstrauss.net wrote: This is a lot of code, and this approach is largely obsoleted by link-local IPv6 addressing, which also has the benefits of being simpler, deterministic (at least with RFC 4862), and collision-proof. Both

Re: [systemd-devel] systemd version debus call changed

2014-02-27 Thread Lennart Poettering
On Fri, 28.02.14 02:21, Timothée Ravier (sios...@gmail.com) wrote: On 26/02/2014 02:38, Lennart Poettering wrote: On Wed, 26.02.14 02:01, Jason A. Donenfeld (ja...@zx2c4.com) wrote: Upstream KDE patch is here:

Re: [systemd-devel] nspawn: fix detection of missing /proc/self/loginuid

2014-02-27 Thread Lennart Poettering
On Tue, 25.02.14 17:19, Tero Roponen (tero.ropo...@gmail.com) wrote: Running 'systemd-nspawn -D /srv/Fedora/' gave me this error: Failed to read /proc/self/loginuid: No such file or directory Container Fedora failed with error code 1. This patch fixes the problem. Thanks! Applied!

Re: [systemd-devel] [PATCH] sd-dhcp: implement IPv4 link-local support

2014-02-27 Thread Zbigniew Jędrzejewski-Szmek
On Thu, Feb 27, 2014 at 09:54:17PM +0100, Umut Tezduyar Lindskog wrote: Implements IPv4LL with respect to RFC 3927 (http://tools.ietf.org/rfc/rfc3927.txt) and integrates it with networkd. Majority of the IPv4LL state machine is taken from avahi (http://avahi.org/) project's autoip. IPv4LL