All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1]systemd-udevd: fix invoking init script failed
@ 2013-06-18 12:25 Hongxu Jia
  2013-06-18 12:25 ` [PATCH 1/1] systemd-udevd: " Hongxu Jia
  0 siblings, 1 reply; 3+ messages in thread
From: Hongxu Jia @ 2013-06-18 12:25 UTC (permalink / raw)
  To: openembedded-core

The following changes since commit 1dd643b142c69ac9035e29bff11d02201638dc65:

  licences: Add SGI license (2013-06-17 16:45:37 +0100)

are available in the git repository at:

  git://git.pokylinux.org/poky-contrib hongxu/fix-systemd-udevd
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=hongxu/fix-systemd-udevd

Hongxu Jia (1):
  systemd-udevd: fix invoking init script failed

 meta/recipes-core/systemd/systemd/init | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

-- 
1.8.1.2



^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH 1/1] systemd-udevd: fix invoking init script failed
  2013-06-18 12:25 [PATCH 0/1]systemd-udevd: fix invoking init script failed Hongxu Jia
@ 2013-06-18 12:25 ` Hongxu Jia
  2013-06-18 12:54   ` Burton, Ross
  0 siblings, 1 reply; 3+ messages in thread
From: Hongxu Jia @ 2013-06-18 12:25 UTC (permalink / raw)
  To: openembedded-core

root@emenlow-noemgd:~# /etc/init.d/systemd-udevd restart
Stopping udevd
Starting udev
corrupt queue file
root@emenlow-noemgd:~# /etc/init.d/systemd-udevd status
udevd is stopped
root@emenlow-noemgd:~# ps
3805 root      8728 S    /lib/systemd/systemd-udevd

The process name is systemd-udevd rather than udev which is
used in systemd-udevd's init script.

[YOCTO #4746]

Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
---
 meta/recipes-core/systemd/systemd/init | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-core/systemd/systemd/init b/meta/recipes-core/systemd/systemd/init
index 7e67a50..41c4136 100644
--- a/meta/recipes-core/systemd/systemd/init
+++ b/meta/recipes-core/systemd/systemd/init
@@ -83,7 +83,7 @@ case "$1" in
     ;;
   stop)
     echo "Stopping udevd"
-    start-stop-daemon --stop --name udevd --quiet
+    start-stop-daemon --stop --name systemd-udevd --quiet
     ;;
   restart)
     $0 stop
@@ -91,7 +91,7 @@ case "$1" in
     $0 start
     ;;
   status)
-    status udevd
+    status systemd-udevd
     ;;
   *)
     echo "Usage: $0 {start|stop|status|restart}"
-- 
1.8.1.2



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH 1/1] systemd-udevd: fix invoking init script failed
  2013-06-18 12:25 ` [PATCH 1/1] systemd-udevd: " Hongxu Jia
@ 2013-06-18 12:54   ` Burton, Ross
  0 siblings, 0 replies; 3+ messages in thread
From: Burton, Ross @ 2013-06-18 12:54 UTC (permalink / raw)
  To: Hongxu Jia; +Cc: openembedded-core

On 18 June 2013 13:25, Hongxu Jia <hongxu.jia@windriver.com> wrote:
> root@emenlow-noemgd:~# /etc/init.d/systemd-udevd restart
> Stopping udevd
> Starting udev
> corrupt queue file
> root@emenlow-noemgd:~# /etc/init.d/systemd-udevd status
> udevd is stopped
> root@emenlow-noemgd:~# ps
> 3805 root      8728 S    /lib/systemd/systemd-udevd
>
> The process name is systemd-udevd rather than udev which is
> used in systemd-udevd's init script.
>
> [YOCTO #4746]

Signed-off-by: Ross Burton <ross.burton@intel.com>

Ross


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2013-06-18 12:55 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-06-18 12:25 [PATCH 0/1]systemd-udevd: fix invoking init script failed Hongxu Jia
2013-06-18 12:25 ` [PATCH 1/1] systemd-udevd: " Hongxu Jia
2013-06-18 12:54   ` Burton, Ross

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.