Re: [systemd-devel] Another attempt: Making dependencies properly overridable

2015-04-19 Thread Zbigniew Jędrzejewski-Szmek
On Sun, Apr 19, 2015 at 09:29:55AM +0300, Andrei Borzenkov wrote: В Fri, 17 Apr 2015 16:47:58 + Zbigniew Jędrzejewski-Szmek zbys...@in.waw.pl пишет: On Mon, Feb 16, 2015 at 04:19:47PM +0100, Christian Seiler wrote: Am 2015-02-16 14:16, schrieb Lennart Poettering: On Mon, 16.02.15

Re: [systemd-devel] Zombie process still exists after stopping gdm.service

2015-04-19 Thread Andrei Borzenkov
В Fri, 17 Apr 2015 14:04:18 -0600 Daniel Drake dr...@endlessm.com пишет: Hi, I'm investigating why systemctl stop gdm; Xorg usually fails. The new X process complains that X is still running. Here's what I think is happening: 1. systemd sends SIGTERM to gdm to stop the service 2.

Re: [systemd-devel] controlling serial console using a token

2015-04-19 Thread Andrei Borzenkov
В Sat, 18 Apr 2015 19:54:50 +0530 Praveen kumar R praveenrgo...@gmail.com пишет: Yes it's a kernel command line arg, it is board specific token introduced to control the serial console. if defined serial console should not be enabled. Sorry I do not understand this sentence. define what?

Re: [systemd-devel] Another attempt: Making dependencies properly overridable

2015-04-19 Thread Andrei Borzenkov
В Fri, 17 Apr 2015 16:47:58 + Zbigniew Jędrzejewski-Szmek zbys...@in.waw.pl пишет: On Mon, Feb 16, 2015 at 04:19:47PM +0100, Christian Seiler wrote: Am 2015-02-16 14:16, schrieb Lennart Poettering: On Mon, 16.02.15 14:13, Michael Biebl (mbi...@gmail.com) wrote: Not quite. While you can

Re: [systemd-devel] [PATCH 3/3] rules: Enable runtime power management on built-in USB Bluetooth controllers

2015-04-19 Thread Andrei Borzenkov
В Sat, 18 Apr 2015 09:11:57 -0700 Matthew Garrett mj...@srcf.ucam.org пишет: From: Matthew Garrett mj...@coreos.com If a Bluetooth controller is built into the machine, it should be safe to enable runtime power management on it. Let's do so. --- Makefile.am | 3 ++-

Re: [systemd-devel] [PATCH 1/3] rules: Enable runtime device power management on Intel HDA controllers

2015-04-19 Thread Kay Sievers
On Sat, Apr 18, 2015 at 9:39 PM, Matthew Garrett mj...@srcf.ucam.org wrote: (Resending from the correct address) On Sat, Apr 18, 2015 at 07:51:26PM +0200, Kay Sievers wrote: It looks like an unconditional static assignment. Why should udev carry this? We generally do not want to do things

Re: [systemd-devel] [PATCH 1/3] rules: Enable runtime device power management on Intel HDA controllers

2015-04-19 Thread Matthew Garrett
On Sun, Apr 19, 2015 at 11:37:31PM +0200, Kay Sievers wrote: On Sat, Apr 18, 2015 at 9:39 PM, Matthew Garrett mj...@srcf.ucam.org wrote: 1) having this in udev makes it easier for users to alter the configuration - the kernel can then afford to be conservative until we enable power

Re: [systemd-devel] Another attempt: Making dependencies properly overridable

2015-04-19 Thread Andrei Borzenkov
В Sun, 19 Apr 2015 13:19:37 + Zbigniew Jędrzejewski-Szmek zbys...@in.waw.pl пишет: On Sun, Apr 19, 2015 at 09:29:55AM +0300, Andrei Borzenkov wrote: В Fri, 17 Apr 2015 16:47:58 + Zbigniew Jędrzejewski-Szmek zbys...@in.waw.pl пишет: On Mon, Feb 16, 2015 at 04:19:47PM +0100,

Re: [systemd-devel] controlling serial console using a token

2015-04-19 Thread Praveen kumar R
This is the snippet of the code in the systemV init system that controls the serial console login depending on the token TOKENEXIST=`grep TOKEN= /proc/cmdline` TOKEN=0 if [ X$TOKENEXIST != X ]; then #If token is pass as a command line arg, use it. TOKEN=`sed

Re: [systemd-devel] controlling serial console using a token

2015-04-19 Thread Andrei Borzenkov
В Mon, 20 Apr 2015 09:09:09 +0530 Praveen kumar R praveenrgo...@gmail.com пишет: This is the snippet of the code in the systemV init system that controls the serial console login depending on the token TOKENEXIST=`grep TOKEN= /proc/cmdline` TOKEN=0 if [ X$TOKENEXIST != X ]; then

[systemd-devel] [PATCH] util: fix typo

2015-04-19 Thread Raul Gutierrez S
Signed-off-by: Raul Gutierrez S r...@itevenworks.net --- src/shared/util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/util.c b/src/shared/util.c index 53f8488..f14d9ee 100644 --- a/src/shared/util.c +++ b/src/shared/util.c @@ -1700,7 +1700,7 @@ int

[systemd-devel] [PATCH] fix trivial typo

2015-04-19 Thread Raul Gutierrez S
*** BLURB HERE *** Raul Gutierrez S (1): util: fix typo src/shared/util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- 2.1.0 ___ systemd-devel mailing list systemd-devel@lists.freedesktop.org

Re: [systemd-devel] controlling serial console using a token

2015-04-19 Thread Praveen kumar R
You mean in the *getty-generator.c ?* On Mon, Apr 20, 2015 at 9:14 AM, Andrei Borzenkov arvidj...@gmail.com wrote: В Mon, 20 Apr 2015 09:09:09 +0530 Praveen kumar R praveenrgo...@gmail.com пишет: This is the snippet of the code in the systemV init system that controls the serial console