[systemd-devel] [gummiboot][PATCH 3/5] configure: add AARCH64 support

2015-04-11 Thread Koen Kooi
This is just plumbing to add ARCH_AARCH64 for makefile tests and defining the machine name. Signed-off-by: Koen Kooi koen.k...@linaro.org --- configure.ac | 4 1 file changed, 4 insertions(+) diff --git a/configure.ac b/configure.ac index 27bbe1d..c2077b1 100644 --- a/configure.ac +++ b

[systemd-devel] [gummiboot][PATCH 4/5] util: confine x86 asm to x86 architectures

2015-04-11 Thread Koen Kooi
Also add a stub function that just returns '1' to avoid missing symbols. Signed-off-by: Koen Kooi koen.k...@linaro.org --- src/efi/util.c | 9 ++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/efi/util.c b/src/efi/util.c index 689bc7c..6ce1f18 100644 --- a/src/efi

[systemd-devel] [gummiboot][PATCH 1/5] Makefile: support non-x86 builds

2015-04-11 Thread Koen Kooi
Move the no-mmx/no-sse CFLAGS to X86-64 and IA32 defines in preparation for ARM32 and Aarch64 support. Signed-off-by: Koen Kooi koen.k...@linaro.org --- Makefile.am | 12 +--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/Makefile.am b/Makefile.am index 6568a35..2cca313

[systemd-devel] [gummiboot][PATCH 5/5] Makefile.am: Add support for AARCH64

2015-04-11 Thread Koen Kooi
Aarch64 and ARM32 lack an EFI capable objcopy, so use the ldflags + -O binary trick gnu-efi and the Red Hat shimloader are using. Signed-off-by: Koen Kooi koen.k...@linaro.org --- Makefile.am | 15 +-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/Makefile.am b

[systemd-devel] [gummiboot][PATCH 2/5] util: use x86 ASM only on x86(-64) platforms.

2015-04-11 Thread Koen Kooi
Signed-off-by: Koen Kooi koen.k...@linaro.org --- src/efi/util.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/efi/util.c b/src/efi/util.c index ba5ed7d..689bc7c 100644 --- a/src/efi/util.c +++ b/src/efi/util.c @@ -33,7 +33,9 @@ UINT64 ticks_read(VOID

Re: [systemd-devel] [gummiboot][PATCH 1/5] Makefile: support non-x86 builds

2015-04-11 Thread Koen Kooi
On 11 April 2015 at 11:41, David Herrmann dh.herrm...@gmail.com wrote: Hi On Sat, Apr 11, 2015 at 10:23 AM, Koen Kooi koen.k...@linaro.org wrote: Move the no-mmx/no-sse CFLAGS to X86-64 and IA32 defines in preparation for ARM32 and Aarch64 support. Signed-off-by: Koen Kooi koen.k

Re: [systemd-devel] [PATCH 0/2] Empty environment variables in unit files work

2014-11-20 Thread Koen Kooi
Op 19 nov. 2014, om 19:44 heeft Iago López Galeiras i...@endocode.com het volgende geschreven: with this file: [Unit] Description=Test empty variables [Service] Environment=TEST= TEST2= ExecStart=/bin/bash -c env [Install] WantedBy=default.target I get this output: Nov 19

Re: [systemd-devel] [question] networkd: Any support for hooks?

2014-10-03 Thread Koen Kooi
Op 2 okt. 2014, om 15:29 heeft Tom Gundersen t...@jklm.no het volgende geschreven: On Thu, Oct 2, 2014 at 2:20 PM, Lennart Poettering lenn...@poettering.net wrote: On Thu, 02.10.14 13:00, Koen Kooi (k...@dominion.thruhere.net) wrote: Op 2 okt. 2014, om 07:36 heeft Tom Gundersen t

Re: [systemd-devel] [question] networkd: Any support for hooks?

2014-10-02 Thread Koen Kooi
Op 2 okt. 2014, om 07:36 heeft Tom Gundersen t...@jklm.no het volgende geschreven: Hi Cameron, On Thu, Oct 2, 2014 at 6:36 AM, Cameron Norman camerontnor...@gmail.com wrote: ifupdown [1], NetworkManager, and WICD all support hooks for when a network interface is configured or

[systemd-devel] [PATCH 2/2] logind: add support for gpio-keys Power Button

2014-09-27 Thread Koen Kooi
This might be too broad since it will listen on *all* gpio-keys based input devices for a power button press, but such is life. root@arietta-g25:~# udevadm info -a /dev/input/event0 Udevadm info starts with the device specified by the devpath and then walks up the chain of parent devices. It

[systemd-devel] [PATCH 1/2] logind: add support for TPS65217 Power Button

2014-09-27 Thread Koen Kooi
This PMIC is found on TI AM335x based boards like the beaglebone and beaglebone black. root@beaglebone-white:~# udevadm info -a /dev/input/event0 Udevadm info starts with the device specified by the devpath and then walks up the chain of parent devices. It prints for every device found, all

Re: [systemd-devel] Having systemd shutdown when pressing the power button

2014-09-27 Thread Koen Kooi
Op 28 aug. 2014, om 15:42 heeft Lennart Poettering lenn...@poettering.net het volgende geschreven: On Thu, 28.08.14 10:50, Koen Kooi (k...@dominion.thruhere.net) wrote: Hi, Heya, I am working on a system (http://www.acmesystems.it/arietta) where I hooked up the button as a power key

[systemd-devel] Having systemd shutdown when pressing the power button

2014-08-28 Thread Koen Kooi
Hi, I am working on a system (http://www.acmesystems.it/arietta) where I hooked up the button as a power key: https://github.com/koenkooi/linux/commit/c823e0b046efcfff61e21fa4c89d5d68090ef6de Evtest shows it doing the right thing (issuing KEY_POWER) when being pressed, but systemd

Re: [systemd-devel] Offline systemd unit file installer

2014-08-11 Thread Koen Kooi
Op 11 aug. 2014, om 12:47 heeft Lennart Poettering lenn...@poettering.net het volgende geschreven: On Sat, 09.08.14 06:44, Paassen, Hiram van (hiram.van.paas...@mastervolt.com) wrote: Am I correct in thinking this only works on systemd enabled host systems or if you cross-compile for the

Re: [systemd-devel] [RFC/PATCH 3/3] coredump: compress core files

2014-06-25 Thread Koen Kooi
Op 25 jun. 2014, om 10:59 heeft Lennart Poettering lenn...@poettering.net het volgende geschreven: On Wed, 25.06.14 07:28, Zbigniew Jędrzejewski-Szmek (zbys...@in.waw.pl) wrote: Hi, a POC patch to compress coredumps after they are written. In my simple tests, this brings huge savings,

Re: [systemd-devel] [PATCH] readahead: ARM: fix rotational media detection for MMC

2014-05-14 Thread Koen Kooi
Op 13 mei 2014, om 23:47 heeft Zbigniew Jędrzejewski-Szmek zbys...@in.waw.pl het volgende geschreven: On Tue, May 13, 2014 at 02:14:20PM +, Chaiken, Alison wrote: I wrote: The ARM runtime reports the major device type associated with /proc/self/mountinfo as MMC_BLOCK_MAJOR, causing

Re: [systemd-devel] Run script before the first systemd-timer is triggered? Systemd-timer in UTC?

2014-04-29 Thread Koen Kooi
Op 28 apr. 2014, om 17:48 heeft Lennart Poettering lenn...@poettering.net het volgende geschreven: On Mon, 28.04.14 12:22, Manuel Reimer (manuel.s...@nurfuerspam.de) wrote: Lukasz Skalski l.skalski at samsung.com writes: You can define which RTC (/dev/rtcX) should be read - (rtc1) RTC

Re: [systemd-devel] failed to store sound card state

2014-03-28 Thread Koen Kooi
Op 28 mrt. 2014, om 01:46 heeft Cristian Rodríguez crrodrig...@opensuse.org het volgende geschreven: El 27/03/14 20:21, Felix Miata escribió: I see this repeated often during reboot attempts that do not proceed as expected to swiftly do the deed. It seems to be prerequisite to

Re: [systemd-devel] [PATCH] machine-id: add --root option to operate on an alternate fs tree

2014-03-14 Thread Koen Kooi
Op 14 mrt. 2014, om 05:43 heeft Greg KH gre...@linuxfoundation.org het volgende geschreven: This makes it possible to initialize the /etc/machine-id file on an arbitrary filesystem hierarchy. This helps systems that wish to run this at image creation time in a subdirectory, or from

Re: [systemd-devel] [HEADS-UP] Discoverable Partitions Spec

2014-03-14 Thread Koen Kooi
Op 14 mrt. 2014, om 15:23 heeft Lennart Poettering lenn...@poettering.net het volgende geschreven: On Fri, 14.03.14 14:49, Koen Kooi (koen.k...@linaro.org) wrote: It would be good if in the long run OS installers could adopt this and use the right partition type GUIDs automatically

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

2014-02-28 Thread Koen Kooi
Op 27 feb. 2014, om 18:56 heeft Lennart Poettering lenn...@poettering.net het volgende geschreven: 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

Re: [systemd-devel] needed steps to get rebootless upgrade

2014-02-17 Thread Koen Kooi
Op 17 feb. 2014, om 14:50 heeft Lennart Poettering lenn...@poettering.net het volgende geschreven: On Mon, 17.02.14 08:16, Vasiliy Tolstov (v.tols...@selfip.ru) wrote: Hi all. I'm very interesting on creating system like cromeos that can do upgrade without reboot. ChromeOS doesn't

Re: [systemd-devel] needed steps to get rebootless upgrade

2014-02-17 Thread Koen Kooi
Op 17 feb. 2014, om 17:03 heeft H. Peter Anvin h...@zytor.com het volgende geschreven: On 02/17/2014 06:40 AM, Koen Kooi wrote: If we stretch the definition of 'reboot' a bit, would it be possible to shutdown, jump back into the initramfs, do the updates and jump to the main rootfs again

Re: [systemd-devel] Problems with systemd master

2014-02-15 Thread Koen Kooi
Op 14 feb. 2014, om 19:16 heeft Greg KH gre...@linuxfoundation.org het volgende geschreven: On Fri, Feb 14, 2014 at 02:30:00PM -0300, Cristian Rodríguez wrote: El 14/02/14 13:32, Richard Purdie escribió: Both conditions are checked, can you find out why the second seems to fail too, it

Re: [systemd-devel] porteus and systemd

2013-12-30 Thread Koen Kooi
Op 30 dec. 2013, om 13:36 heeft Mantas Mikulėnas graw...@gmail.com het volgende geschreven: On Mon, Dec 30, 2013 at 1:06 PM, Roelof Wobben r.wob...@home.nl wrote: hello, Im trying to port Cinnamon to porteus. Porteus is a slackware based distro which work with modules. The problem is

Re: [systemd-devel] systemd shutdown vs ostree

2013-09-15 Thread Koen Kooi
Op 14 sep. 2013, om 11:04 heeft Jan Alexander Steffens jan.steff...@gmail.com het volgende geschreven: On Sat, Sep 14, 2013 at 10:52 AM, Koen Kooi k...@dominion.thruhere.net wrote: Please keep in mind that pstore is x86 only. EFI isn't x86 only, but exceedingly rare outside of that arch

Re: [systemd-devel] systemd shutdown vs ostree

2013-09-14 Thread Koen Kooi
Op 13 sep. 2013, om 00:31 heeft Jan Alexander Steffens jan.steff...@gmail.com het volgende geschreven: On Thu, Sep 12, 2013 at 10:51 PM, Lennart Poettering lenn...@poettering.net wrote: I think the really late shutdown logs should more liekly end up in some EFI var and then flushed out on

Re: [systemd-devel] [PATCH] udev: make net_id more robust

2013-06-18 Thread Koen Kooi
Op 7 jun. 2013, om 20:25 heeft Kay Sievers k...@vrfy.org het volgende geschreven: On Fri, Jun 7, 2013 at 3:27 PM, Sean McGovern gsean...@gmail.com wrote: Onboard network controllers are not always on PCI domain 0. +sysname = udev_device_get_sysname(names-pcidev); + +

Re: [systemd-devel] Socket is dying, how to automatically restart it?

2013-05-09 Thread Koen Kooi
Op 23 apr. 2013, om 23:03 heeft George McCollister george.mccollis...@gmail.com het volgende geschreven: On 04/20/2013 08:04 AM, Koen Kooi wrote: Op 18 apr. 2013, om 19:18 heeft George McCollistergeorge.mccollis...@gmail.com het volgende geschreven: On 04/10/2013 12:03 PM, Koen Kooi

Re: [systemd-devel] [PATCH 2/2] udev: fix for devices without PCI

2013-05-03 Thread Koen Kooi
Op 3 mrt. 2013, om 19:22 heeft Kay Sievers k...@vrfy.org het volgende geschreven: On Sun, Mar 3, 2013 at 7:10 PM, Rob Clark robdcl...@gmail.com wrote: On Sun, Mar 3, 2013 at 1:06 PM, Kay Sievers k...@vrfy.org wrote: On Sun, Mar 3, 2013 at 6:55 PM, Rob Clark robdcl...@gmail.com wrote: On

Re: [systemd-devel] Socket is dying, how to automatically restart it?

2013-04-20 Thread Koen Kooi
Op 18 apr. 2013, om 19:18 heeft George McCollister george.mccollis...@gmail.com het volgende geschreven: On 04/10/2013 12:03 PM, Koen Kooi wrote: Hi, I have a bit of a heisenbug where dropbear.socket will just die and needs a systemctl restart dropbear.socket. I can't tell why it's dying

Re: [systemd-devel] Add ARCH parameter to /etc/os-release

2013-04-19 Thread Koen Kooi
Op 18 apr. 2013, om 14:08 heeft Lennart Poettering lenn...@poettering.net het volgende geschreven: On Thu, 18.04.13 09:26, Koen Kooi (k...@dominion.thruhere.net) wrote: So it returns something that could be considered usefull on my laptop, but the output on the beaglebone is useless

Re: [systemd-devel] Add ARCH parameter to /etc/os-release

2013-04-18 Thread Koen Kooi
Op 17 apr. 2013, om 20:19 heeft Lennart Poettering lenn...@poettering.net het volgende geschreven: On Mon, 08.04.13 22:09, Askar Safin (safinas...@mail.ru) wrote: I'm not sure what problem the proposal is trying to solve. Maybe it'd be clearer if that was provided. I want to know what

Re: [systemd-devel] Socket is dying, how to automatically restart it?

2013-04-18 Thread Koen Kooi
Op 17 apr. 2013, om 21:05 heeft Lennart Poettering lenn...@poettering.net het volgende geschreven: On Wed, 10.04.13 19:03, Koen Kooi (k...@dominion.thruhere.net) wrote: Hi, I have a bit of a heisenbug where dropbear.socket will just die and needs a systemctl restart dropbear.socket. I

Re: [systemd-devel] How to run *ctl command using systemd-nspawn

2013-04-17 Thread Koen Kooi
Op 17 apr. 2013, om 17:20 heeft Lennart Poettering lenn...@poettering.net het volgende geschreven: On Wed, 17.04.13 17:09, Lennart Poettering (lenn...@poettering.net) wrote: On Tue, 16.04.13 09:11, Koen Kooi (k...@dominion.thruhere.net) wrote: Hi, To help with flashing the onboard

[systemd-devel] How to run *ctl command using systemd-nspawn

2013-04-16 Thread Koen Kooi
Hi, To help with flashing the onboard eMMC of a 10 boards I'm using systemd-nspawn to run package postinstall scripts that generate UUIDs and some other things and it's working great for that! Every board now has a unique value in /etc/machine-id instead it being empty and systemd

Re: [systemd-devel] How to run *ctl command using systemd-nspawn

2013-04-16 Thread Koen Kooi
Op 16 apr. 2013, om 20:00 heeft Kok, Auke-jan H auke-jan.h@intel.com het volgende geschreven: On Tue, Apr 16, 2013 at 12:11 AM, Koen Kooi k...@dominion.thruhere.net wrote: Hi, To help with flashing the onboard eMMC of a 10 boards I'm using systemd-nspawn to run package

Re: [systemd-devel] How to run *ctl command using systemd-nspawn

2013-04-16 Thread Koen Kooi
Op 16 apr. 2013, om 20:14 heeft Zbigniew Jędrzejewski-Szmek zbys...@in.waw.pl het volgende geschreven: On Tue, Apr 16, 2013 at 09:11:51AM +0200, Koen Kooi wrote: Hi, To help with flashing the onboard eMMC of a 10 boards I'm using systemd-nspawn to run package postinstall scripts

Re: [systemd-devel] Socket is dying, how to automatically restart it?

2013-04-12 Thread Koen Kooi
Op 11 apr. 2013, om 21:09 heeft David Strauss da...@davidstrauss.net het volgende geschreven: On Wed, Apr 10, 2013 at 11:00 PM, Koen Kooi k...@dominion.thruhere.net wrote: restarting it once it fails Is it the socket or the service? socket

Re: [systemd-devel] PATCH - add ARM based Chromebook lid switch

2013-04-12 Thread Koen Kooi
Op 12 apr. 2013, om 18:24 heeft Robert Schweikert rjsch...@suse.com het volgende geschreven: Thanks Kay for pointing me in the right direction From fced3673ee1001dc905206f9a92ea2062f951d3c Mon Sep 17 00:00:00 2001 From: Robert Schweikert rjsch...@suse.com Date: Fri, 12 Apr 2013 12:08:16

Re: [systemd-devel] Socket is dying, how to automatically restart it?

2013-04-11 Thread Koen Kooi
Op 10 apr. 2013, om 22:20 heeft Kok, Auke-jan H auke-jan.h@intel.com het volgende geschreven: On Wed, Apr 10, 2013 at 1:12 PM, David Strauss da...@davidstrauss.net wrote: Are you sure it's not the corresponding service that really failed? actually, that's a good point, but if the

[systemd-devel] Socket is dying, how to automatically restart it?

2013-04-10 Thread Koen Kooi
Hi, I have a bit of a heisenbug where dropbear.socket will just die and needs a systemctl restart dropbear.socket. I can't tell why it's dying, just that it does within 3 days of uptime. After restarting it it seems to be rock solid again for at least some weeks. The real way to fix this is

Re: [systemd-devel] Socket is dying, how to automatically restart it?

2013-04-10 Thread Koen Kooi
Op 10 apr. 2013, om 19:13 heeft Mantas Mikulėnas graw...@gmail.com het volgende geschreven: On Wed, Apr 10, 2013 at 8:03 PM, Koen Kooi k...@dominion.thruhere.net wrote: Hi, I have a bit of a heisenbug where dropbear.socket will just die and needs a systemctl restart dropbear.socket. I

Re: [systemd-devel] Add ARCH parameter to /etc/os-release

2013-04-07 Thread Koen Kooi
Op 6 apr. 2013, om 22:41 heeft Reindl Harald h.rei...@thelounge.net het volgende geschreven: Am 06.04.2013 22:37, schrieb Askar Safin: What is primary arch? The arch of init? ls? the package manager? As far as I know today there is no true symmetric multiarch. Every multiarched system

Re: [systemd-devel] Add ARCH parameter to /etc/os-release

2013-04-07 Thread Koen Kooi
Op 7 apr. 2013, om 11:47 heeft Reindl Harald h.rei...@thelounge.net het volgende geschreven: Am 07.04.2013 09:56, schrieb Koen Kooi: Op 6 apr. 2013, om 22:41 heeft Reindl Harald h.rei...@thelounge.net het volgende geschreven: Am 06.04.2013 22:37, schrieb Askar Safin: What

Re: [systemd-devel] Add ARCH parameter to /etc/os-release

2013-04-07 Thread Koen Kooi
Op 7 apr. 2013, om 22:11 heeft Reindl Harald h.rei...@thelounge.net het volgende geschreven: Am 07.04.2013 22:04, schrieb Koen Kooi: Op 7 apr. 2013, om 11:47 heeft Reindl Harald h.rei...@thelounge.net het volgende geschreven: Am 07.04.2013 09:56, schrieb Koen Kooi: Op 6 apr

[systemd-devel] [PATCH] bootctl: fix help text

2013-03-29 Thread Koen Kooi
It currently says 'time settings', change that to 'boot settings'. Signed-off-by: Koen Kooi k...@dominion.thruhere.net --- src/boot/bootctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/boot/bootctl.c b/src/boot/bootctl.c index a920277..af694fd 100644 --- a/src/boot

Re: [systemd-devel] systemd-analyze-197 broken

2013-01-15 Thread Koen Kooi
Op 15 jan. 2013, om 06:20 heeft Kok, Auke-jan H auke-jan.h@intel.com het volgende geschreven: On Mon, Jan 14, 2013 at 8:21 PM, Holger Winkelmann h...@travelping.com wrote: I'm just following this discussion and would ask the developer to keep the embedded folks in mind. Embedded

Re: [systemd-devel] Proposal: integrate biosdevname into systemd tree

2013-01-04 Thread Koen Kooi
Op 4 jan. 2013, om 10:54 heeft Reindl Harald h.rei...@thelounge.net het volgende geschreven: Am 04.01.2013 10:40, schrieb Alexander E. Patrakov: 2013/1/4 Reindl Harald h.rei...@thelounge.net: but hopefully /etc/udev/rules.d/70-persistent-net.rules will be recognized forever if it exists

Re: [systemd-devel] eudev fork and patches there

2012-12-18 Thread Koen Kooi
Op 19 dec. 2012, om 06:20 heeft microcai micro...@fedoraproject.org het volgende geschreven: On 2012年12月17日星期一 CST下午10时36分48秒, Kay Sievers wrote: On Mon, Dec 17, 2012 at 2:04 PM, Koen Kooi k...@dominion.thruhere.net wrote: Op 17 dec. 2012, om 12:17 heeft Zbigniew Jędrzejewski-Szmek zbys

Re: [systemd-devel] eudev fork and patches there

2012-12-17 Thread Koen Kooi
Op 17 dec. 2012, om 12:17 heeft Zbigniew Jędrzejewski-Szmek zbys...@in.waw.pl het volgende geschreven: Hi, eudev has made a project annoucement [1], and I thought it would be worthwhile to go through their patches and cherry-pick. I've now done that (until cc5c144a70fc37e 'Merge pull

Re: [systemd-devel] [PATCH] *.py: don't hardcode /usr/bin/python

2012-12-03 Thread Koen Kooi
Op 1 dec. 2012, om 05:04 heeft Ramkumar Ramachandra artag...@gmail.com het volgende geschreven: Michael Biebl wrote: 2012/11/30 Ramkumar Ramachandra artag...@gmail.com: Execute python using /usr/bin/env python instead of hard-coding the I'm not really a fan of using /usr/bin/env, as you

Re: [systemd-devel] GPIO Reset Button

2012-11-17 Thread Koen Kooi
Op 10 nov. 2012, om 01:17 heeft Lennart Poettering lenn...@poettering.net het volgende geschreven: On Fri, 02.11.12 09:56, Pawel Pastuszak (pawelpastus...@gmail.com) wrote: Hi all, I was wondering if there is an way to attach an GPIO line to reboot the system. I am currently working on

Re: [systemd-devel] [ANNOUNCE] systemd 195

2012-10-23 Thread Koen Kooi
Op 23 okt. 2012, om 02:56 heeft Lennart Poettering lenn...@poettering.net het volgende geschreven: Heya! A non-trivial amount of cool new features, but primarily bug fixes bug fixes bug fixes. In both 194 and 195 I have trouble building system for my embedded systems: |

Re: [systemd-devel] [HEADS-UP] Early-boot SysV service support is going away

2012-09-19 Thread Koen Kooi
Op 18 sep. 2012, om 00:59 heeft Lennart Poettering lenn...@poettering.net het volgende geschreven: Heya, In a month or two we'll make the SysV service logic in systemd generator-based. This helps us clean up our codebase a bit and makes SysV service support an optional plugin rather than

Re: [systemd-devel] diverting HandlePowerKey

2012-08-22 Thread Koen Kooi
Op 16 aug. 2012, om 16:37 heeft Lennart Poettering lenn...@poettering.net het volgende geschreven: On Thu, 16.08.12 14:47, Mantas Mikulėnas (graw...@gmail.com) wrote: On Thu, Aug 16, 2012 at 2:23 PM, Robin Becker ro...@reportlab.com wrote: However, on my netbooks I like to use the power

Re: [systemd-devel] [PATCH] timedated: gather timezone from /etc/localtime sym target

2012-08-10 Thread Koen Kooi
Op 8 aug. 2012, om 18:51 heeft Lennart Poettering lenn...@poettering.net het volgende geschreven: On Tue, 07.08.12 00:31, Shawn Landen (shawnland...@gmail.com) wrote: keep other method for now, consider dropping later. Supporting relative links here could be problematic as timezones in

Re: [systemd-devel] How do I disable old init.d scripts?

2012-06-25 Thread Koen Kooi
Op 25 jun. 2012, om 15:25 heeft Paul Menzel het volgende geschreven: Dear systemd folks, how can I disable init.d scripts which systemd loads for compatibility reasons? $ ls /etc/init.d/motd (or any other init.d script) /etc/init.d/motd $ systemd-analyze blame |

Re: [systemd-devel] setting up to allow separate udev and systemd builds

2012-06-14 Thread Koen Kooi
Op 14 jun. 2012, om 10:38 heeft Wulf C. Krueger het volgende geschreven: Hello Lucas, On 14.06.2012 15:48, Lucas De Marchi wrote: on source-based distros like gentoo or lfs, and on distros that do not Don't you have the ability to split the built package in gentoo? I can confirm and

Re: [systemd-devel] pam_systemd.so and su

2012-03-22 Thread Koen Kooi
Op 22 mrt. 2012, om 02:11 heeft Lennart Poettering het volgende geschreven: On Thu, 22.03.12 00:41, Lennart Poettering (lenn...@poettering.net) wrote: On Sun, 18.03.12 16:08, Canek Peláez Valdés (can...@gmail.com) wrote: Hi; I'm using systemd 43 in Gentoo, and I usally have this line at

Re: [systemd-devel] systemd39: journald segfault brings down some user services

2012-03-09 Thread Koen Kooi
Op 9 mrt. 2012, om 00:37 heeft David Lambert het volgende geschreven: On 03/08/2012 03:07 PM, Warpme wrote: I haven't set any limits in journal.conf - so maybe I should set them. Unfortunately there is no man for this file (or I miss something) - so I prefer to first understand it then

Re: [systemd-devel] systemd39: journald segfault brings down some user services

2012-03-09 Thread Koen Kooi
Op 9 mrt. 2012, om 10:15 heeft Michael Biebl het volgende geschreven: Am 9. März 2012 09:46 schrieb Koen Kooi k...@dominion.thruhere.net: Op 9 mrt. 2012, om 00:37 heeft David Lambert het volgende geschreven: On 03/08/2012 03:07 PM, Warpme wrote: I haven't set any limits in journal.conf

Re: [systemd-devel] [HEADS-UP] Support for /etc/os-release now kinda mandatory

2012-02-14 Thread Koen Kooi
Op 14 feb. 2012, om 10:16 heeft Lennart Poettering het volgende geschreven: On Mon, 13.02.12 18:39, Lennart Poettering (lenn...@poettering.net) wrote: We are taking this as first step for removing all the per-distro ifdeffery we have in systemd. Since many major and a lot of minor

Re: [systemd-devel] Support machines with multiple RTCs?

2011-11-22 Thread Koen Kooi
Op 22 nov. 2011, om 18:28 heeft Kay Sievers het volgende geschreven: On Tue, Nov 22, 2011 at 18:10, Martin Langhoff martin.langh...@gmail.com wrote: I have just been perusing the systemd code, and wondering whether it supports systems that have two RTCs (where usually only one of them is

[systemd-devel] systemd-analyze blame lacks fsck info

2011-10-18 Thread Koen Kooi
Hi, Every now and them 'systemd-analyze time' reports that it booted in slightly under 3 minutes instead of the 5.6s I expect, but systemd-analyze blame shows only times in the 600ms range. Babysitting the boot shows that fsck is the culprit. Was excluding things like fsck-root a design

Re: [systemd-devel] [PATCH] docs: fix build without xsltproc

2011-10-11 Thread Koen Kooi
Op 11 okt. 2011, om 01:59 heeft Lennart Poettering het volgende geschreven: On Tue, 11.10.11 01:36, Kay Sievers (kay.siev...@vrfy.org) wrote: On Tue, Oct 11, 2011 at 01:17, Lennart Poettering lenn...@poettering.net wrote: On Sun, 02.10.11 20:07, Koen Kooi (k...@dominion.thruhere.net

[systemd-devel] [PATCH] docs: fix build without xsltproc

2011-10-02 Thread Koen Kooi
Make would choke on missing rules for man/systemd.1 Signed-off-by: Koen Kooi k...@dominion.thruhere.net --- Makefile.am |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/Makefile.am b/Makefile.am index f4a17aa..fb48537 100644 --- a/Makefile.am +++ b/Makefile.am @@ -750,6

Re: [systemd-devel] [PATCH 3/3] analyze: draw kernel boot time as well

2011-09-25 Thread Koen Kooi
Op 23 sep. 2011, om 16:29 heeft Lennart Poettering het volgende geschreven: On Thu, 22.09.11 15:26, Koen Kooi (k...@dominion.thruhere.net) wrote: Sample output: http://dominion.thruhere.net/koen/angstrom/systemd/omap4430-panda-201109221422.svg I'd be willing to merge this, but only

[systemd-devel] [RFC][PATCH v2] analyze: draw kernel and initrd boot time as well

2011-09-25 Thread Koen Kooi
Sample output without initrd: http://dominion.thruhere.net/koen/angstrom/systemd/omap4430-panda-201109221422.svg Signed-off-by: Koen Kooi k...@dominion.thruhere.net --- Second attempt at this, please check the logic in this patch, a quick test on F15 looks OK, but I'd like more datapoints from

[systemd-devel] [PATCH] analyze: always draw 1s marker for scale

2011-09-22 Thread Koen Kooi
In situations like this: root@omap4430-panda:~# systemd-analyze Startup finished in 1499ms (kernel) + 916ms (userspace) = 2416ms The svg plot will only have the 0s marker and no subsequent markers for scale. This patch forces the 1s marker to always be drawn. Signed-off-by: Koen Kooi k

[systemd-devel] [PATCH] gperf: add missing.h that was present in the C version to the m4

2011-08-01 Thread Koen Kooi
This fixes: src/load-fragment-gperf.c:413:51: error: 'RLIMIT_RTTIME' undeclared (first use in this function) Signed-off-by: Koen Kooi k...@dominion.thruhere.net --- src/load-fragment-gperf.gperf.m4 |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/src/load-fragment

Re: [systemd-devel] The Linux Way or Some ideas to make systemd better

2011-07-17 Thread Koen Kooi
Op 17 jul 2011, om 05:32 heeft Sergey het volgende geschreven: Why is this better? = Because it's flexible, portable, simple, easy to support and it's unix-way. Such structure would work under any circumstances on almost any configuration. Users of other Linux

Re: [systemd-devel] [PATCH] Add the most common consoles that MeeGo needs

2011-07-01 Thread Koen Kooi
Op 1 jul 2011, om 20:02 heeft Chris Ferron het volgende geschreven: On 07/01/2011 10:11 AM, Koen Kooi wrote: Op 1 jul 2011, om 18:19 heeft Chris Ferron het volgende geschreven: MeeGo will use several consoles depending on the hardware adaptations. This patch adds the most common

Re: [systemd-devel] [HEADSUP] We no longer spawn 6 gettys by default

2011-06-29 Thread Koen Kooi
Op 29 jun 2011, om 14:37 heeft Robert Schwebel het volgende geschreven: On Wed, Jun 29, 2011 at 11:15:02AM +0200, Stef Bon wrote: I think it's ok to only activate the getty programs on demand. Maybe use only mingetty?? Who works on the serial line these days? The embedded folks. Indeed!

Re: [systemd-devel] device units rely on udev rules?

2011-05-10 Thread Koen Kooi
Op 9 mei 2011, om 22:23 heeft Kay Sievers het volgende geschreven: On Mon, May 9, 2011 at 22:08, Lennart Poettering lenn...@poettering.net wrote: On Mon, 09.05.11 22:02, Lennart Poettering (lenn...@poettering.net) wrote: It's still in the 10 second range on a 600MHz cortex-a8 machine

Re: [systemd-devel] device units rely on udev rules?

2011-05-10 Thread Koen Kooi
Op 10 mei 2011, om 10:36 heeft Kay Sievers het volgende geschreven: On Tue, May 10, 2011 at 10:26, Koen Kooi k...@dominion.thruhere.net wrote: Op 9 mei 2011, om 22:23 heeft Kay Sievers het volgende geschreven: Things like: time (udevadm trigger; udevadm settle) root@beagleboard-systemd

Re: [systemd-devel] device units rely on udev rules?

2011-05-10 Thread Koen Kooi
Op 10 mei 2011, om 11:55 heeft Kay Sievers het volgende geschreven: On Tue, May 10, 2011 at 11:26, Koen Kooi k...@dominion.thruhere.net wrote: Op 10 mei 2011, om 10:36 heeft Kay Sievers het volgende geschreven: On Tue, May 10, 2011 at 10:26, Koen Kooi k...@dominion.thruhere.net wrote: Op

Re: [systemd-devel] device units rely on udev rules?

2011-05-10 Thread Koen Kooi
Op 10 mei 2011, om 14:14 heeft Lennart Poettering het volgende geschreven: On Tue, 10.05.11 14:11, Harald Hoyer (harald.ho...@gmail.com) wrote: Am 10.05.2011 14:09, schrieb Lennart Poettering: On Tue, 10.05.11 13:47, Koen Kooi (k...@dominion.thruhere.net) wrote: What udev version

Re: [systemd-devel] device units rely on udev rules?

2011-05-10 Thread Koen Kooi
Op 10 mei 2011, om 19:01 heeft Kay Sievers het volgende geschreven: On Tue, May 10, 2011 at 17:34, Koen Kooi k...@dominion.thruhere.net wrote: So after rebuilding eglibc against 2.6.37 headers and udev from git: root@beagleboard-systemd:~# time ( udevadm trigger ; udevadm settle ) real

Re: [systemd-devel] [PATCH] Angstrom support

2011-05-09 Thread Koen Kooi
Op 5 mei 2011, om 19:54 heeft Gustavo Sverzut Barbieri het volgende geschreven: On Thu, May 5, 2011 at 1:17 PM, Harald Hoyer harald.ho...@gmail.com wrote: diff --git a/src/util.c b/src/util.c index f0051ee..5af9161 100644 --- a/src/util.c +++ b/src/util.c @@ -3426,6 +3426,18 @@ void

[systemd-devel] [Patch V2] Angstrom support

2011-05-06 Thread Koen Kooi
This commit consists of the initial work to include Angstrom as a ported distribution for systemd. Angstrom tries to follow the debian way as much as possible, but deviates where it doesn't make sense for 'embedded'. Signed-off-by: Koen Kooi k...@dominion.thruhere.net --- Makefile.am