Re: [systemd-devel] /etc/systemd/system/default.target.wants/ no longer checked for unit files

2017-07-16 Thread Richard W.M. Jones
On Sun, Jul 16, 2017 at 04:31:40PM +0200, Lennart Poettering wrote: > default.target and multi-user.target are quite different: > > For system services, default.target is generally an alias for either > multi-user.target or graphical.target, but can point to anything else, > too. By dropping in

Re: [systemd-devel] /etc/systemd/system/default.target.wants/ no longer checked for unit files

2017-07-14 Thread Richard W.M. Jones
On Fri, Jul 14, 2017 at 01:24:53PM +0300, Mantas Mikulėnas wrote: > On Fri, Jul 14, 2017 at 12:13 PM, Richard W.M. Jones <rjo...@redhat.com> > wrote: > > > > > https://github.com/systemd/systemd/issues/6334 > > > > Since this commit > &

[systemd-devel] /etc/systemd/system/default.target.wants/ no longer checked for unit files

2017-07-14 Thread Richard W.M. Jones
https://github.com/systemd/systemd/issues/6334 Since this commit https://github.com/systemd/systemd/commit/2d058a87ffb2d31a50422a8aebd119bbb4427244 (in v233 and v234), you can no longer create /etc/systemd/system/default.target.wants/ and drop in service files (or symlinks). The directory is

Re: [systemd-devel] [PATCH] architecture: Add support for the RISC-V architecture.

2017-02-10 Thread Richard W.M. Jones
On Fri, Sep 30, 2016 at 04:45:01PM +0100, Richard W.M. Jones wrote: > Signed-off-by: Richard W.M. Jones <rjo...@redhat.com> > --- > src/basic/architecture.c | 14 ++ > src/basic/architecture.h | 16 > 2 files changed, 30 insertions(+) >

Re: [systemd-devel] [PATCH] architecture: Add support for the RISC-V architecture.

2016-10-04 Thread Richard W.M. Jones
On Tue, Oct 04, 2016 at 03:36:48PM +0200, Lennart Poettering wrote: > I created a github PR from this: > > https://github.com/systemd/systemd/pull/4282 > > Would be good to follow up discussion there. Thanks for the feedback Lennart. Just FYI we are still building and testing this package.

[systemd-devel] [PATCH] architecture: Add support for the RISC-V architecture.

2016-09-30 Thread Richard W.M. Jones
Signed-off-by: Richard W.M. Jones <rjo...@redhat.com> --- src/basic/architecture.c | 14 ++ src/basic/architecture.h | 16 2 files changed, 30 insertions(+) diff --git a/src/basic/architecture.c b/src/basic/architecture.c index b1c8e91..e1412be 100644 --- a/src

[systemd-devel] [PATCH] architecture: Add support for the RISC-V architecture.

2016-09-30 Thread Richard W.M. Jones
[This is only compile-tested, as our kernel doesn't (yet) have enough configured features to run systemd, but I'll report back when I get it running.] RISC-V is an open source ISA in development since 2010 at UCB. For more information, see https://riscv.org/ I am adding RISC-V support to Fedora:

Re: [systemd-devel] 220 udev boot regression: timeout, giving up waiting for workers to finish

2015-05-28 Thread Richard W.M. Jones
On Wed, May 27, 2015 at 07:08:41PM +0200, Tom Gundersen wrote: This should be fixed by 86c3bece38bcf55da6387d20c6f01da9ad0284dc. Thanks for the help in debugging this, and sorry for the inconvenience. Also this fixes a bug where 'udevadm settle' would go into a loop for a few minutes after you

[systemd-devel] [PATCH] udev: Remove hard-coded string offsets when parsing kernel command line.

2014-11-05 Thread Richard W.M. Jones
--- src/udev/udevd.c | 23 --- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/src/udev/udevd.c b/src/udev/udevd.c index 193702c..340812b 100644 --- a/src/udev/udevd.c +++ b/src/udev/udevd.c @@ -968,6 +968,7 @@ static void kernel_cmdline_options(struct udev

[systemd-devel] [PATCH] udev: Remove hard-coded string offsets when parsing kernel

2014-11-05 Thread Richard W.M. Jones
This avoids the hard-coded string offsets by using strlen. It's a bit of a strange coding style. Mainly I was interested to see if gcc could optimize this, and (gcc-4.9.2 / x86-64 / -O2) it did - all calls to strlen are removed from the assembly and replaced by constants. When I compile systemd

Re: [systemd-devel] [PATCH] udev: Remove hard-coded string offsets when parsing kernel command line.

2014-11-05 Thread Richard W.M. Jones
On Wed, Nov 05, 2014 at 12:54:21PM +0100, David Herrmann wrote: Hi On Wed, Nov 5, 2014 at 10:16 AM, Richard W.M. Jones rjo...@redhat.com wrote: --- src/udev/udevd.c | 23 --- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/src/udev/udevd.c b/src

[systemd-devel] [PATCH] udev: Fix parsing of udev.event-timeout kernel parameter.

2014-11-04 Thread Richard W.M. Jones
--- src/udev/udevd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/udev/udevd.c b/src/udev/udevd.c index 2e6c713..206a4d3 100644 --- a/src/udev/udevd.c +++ b/src/udev/udevd.c @@ -994,7 +994,7 @@ static void kernel_cmdline_options(struct udev *udev) {

[systemd-devel] [PATCH v2] udev: Fix parsing of udev.event-timeout kernel parameter.

2014-11-04 Thread Richard W.M. Jones
--- src/udev/udevd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/udev/udevd.c b/src/udev/udevd.c index 2e6c713..193702c 100644 --- a/src/udev/udevd.c +++ b/src/udev/udevd.c @@ -994,9 +994,9 @@ static void kernel_cmdline_options(struct udev *udev) {

[systemd-devel] [PATCH v2] udev: Fix parsing of udev.event-timeout kernel parameter.

2014-11-04 Thread Richard W.M. Jones
v2: - Fix the warning message too (thanks Ronny Chevalier). In reply to Ronny's comment about using strlen: I agree, but that's a rather larger patch than I need to fix my immediate bug. Rich. ___ systemd-devel mailing list