All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1] Fix can not stop systemd service var-volatile-lib
@ 2015-07-06  1:59 Kai Kang
  2015-07-06  1:59 ` [PATCH 1/1] volatile-binds: correct path of command umount Kai Kang
  2015-07-17  8:54 ` [PATCH 0/1] Fix can not stop systemd service var-volatile-lib Kang Kai
  0 siblings, 2 replies; 6+ messages in thread
From: Kai Kang @ 2015-07-06  1:59 UTC (permalink / raw)
  To: openembedded-core

The following changes since commit 8ad9a434c9fd0300cf5c38c368b181b78421e95a:

  bitbake: tests/data: Add new data tests (2015-07-01 15:40:21 +0100)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib kangkai/volatile-binds
  http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=kangkai/volatile-binds

Kai Kang (1):
  volatile-binds: correct path of command umount

 meta/recipes-core/volatile-binds/volatile-binds.bb | 1 +
 1 file changed, 1 insertion(+)

-- 
1.9.1



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

* [PATCH 1/1] volatile-binds: correct path of command umount
  2015-07-06  1:59 [PATCH 0/1] Fix can not stop systemd service var-volatile-lib Kai Kang
@ 2015-07-06  1:59 ` Kai Kang
  2015-07-17 11:47   ` Burton, Ross
  2015-07-17  8:54 ` [PATCH 0/1] Fix can not stop systemd service var-volatile-lib Kang Kai
  1 sibling, 1 reply; 6+ messages in thread
From: Kai Kang @ 2015-07-06  1:59 UTC (permalink / raw)
  To: openembedded-core

It calls /sbin/umount to stop service var-volatile-lib. But umount is
installed into directory /bin. Correct it.

Signed-off-by: Kai Kang <kai.kang@windriver.com>
---
 meta/recipes-core/volatile-binds/volatile-binds.bb | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta/recipes-core/volatile-binds/volatile-binds.bb b/meta/recipes-core/volatile-binds/volatile-binds.bb
index fee7275..7a3e45a 100644
--- a/meta/recipes-core/volatile-binds/volatile-binds.bb
+++ b/meta/recipes-core/volatile-binds/volatile-binds.bb
@@ -54,6 +54,7 @@ END
         # after the volatile /var/lib is mounted.
         sed -i -e "/^Before=/s/\$/ systemd-random-seed.service/" \
                -e "/^WantedBy=/s/\$/ systemd-random-seed.service/" \
+               -e "/^ExecStop=/s/sbin/bin/" \
                var-volatile-lib.service
     fi
 }
-- 
1.9.1



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

* Re: [PATCH 0/1] Fix can not stop systemd service var-volatile-lib
  2015-07-06  1:59 [PATCH 0/1] Fix can not stop systemd service var-volatile-lib Kai Kang
  2015-07-06  1:59 ` [PATCH 1/1] volatile-binds: correct path of command umount Kai Kang
@ 2015-07-17  8:54 ` Kang Kai
  1 sibling, 0 replies; 6+ messages in thread
From: Kang Kai @ 2015-07-17  8:54 UTC (permalink / raw)
  To: openembedded-core

On 2015年07月06日 09:59, Kai Kang wrote:
> The following changes since commit 8ad9a434c9fd0300cf5c38c368b181b78421e95a:
>
>    bitbake: tests/data: Add new data tests (2015-07-01 15:40:21 +0100)
>
> are available in the git repository at:
>
>    git://git.yoctoproject.org/poky-contrib kangkai/volatile-binds
>    http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=kangkai/volatile-binds
>
> Kai Kang (1):
>    volatile-binds: correct path of command umount

Ping?


>
>   meta/recipes-core/volatile-binds/volatile-binds.bb | 1 +
>   1 file changed, 1 insertion(+)
>


-- 
Regards,
Neil | Kai Kang



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

* Re: [PATCH 1/1] volatile-binds: correct path of command umount
  2015-07-06  1:59 ` [PATCH 1/1] volatile-binds: correct path of command umount Kai Kang
@ 2015-07-17 11:47   ` Burton, Ross
  2015-07-20  1:47     ` Kang Kai
  0 siblings, 1 reply; 6+ messages in thread
From: Burton, Ross @ 2015-07-17 11:47 UTC (permalink / raw)
  To: Kai Kang; +Cc: OE-core

[-- Attachment #1: Type: text/plain, Size: 176 bytes --]

On 6 July 2015 at 02:59, Kai Kang <kai.kang@windriver.com> wrote:

> +               -e "/^ExecStop=/s/sbin/bin/" \
>

Should't that be something like ${bindir}?

Ross

[-- Attachment #2: Type: text/html, Size: 607 bytes --]

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

* Re: [PATCH 1/1] volatile-binds: correct path of command umount
  2015-07-17 11:47   ` Burton, Ross
@ 2015-07-20  1:47     ` Kang Kai
  0 siblings, 0 replies; 6+ messages in thread
From: Kang Kai @ 2015-07-20  1:47 UTC (permalink / raw)
  To: Burton, Ross; +Cc: OE-core

[-- Attachment #1: Type: text/plain, Size: 348 bytes --]

On 2015年07月17日 19:47, Burton, Ross wrote:
>
> On 6 July 2015 at 02:59, Kai Kang <kai.kang@windriver.com 
> <mailto:kai.kang@windriver.com>> wrote:
>
>     +          -e "/^ExecStop=/s/sbin/bin/" \
>
>
> Should't that be something like ${bindir}?

Thanks. I'll update it.

--Kai

>
> Ross


-- 
Regards,
Neil | Kai Kang


[-- Attachment #2: Type: text/html, Size: 1684 bytes --]

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

* [PATCH 1/1] volatile-binds: correct path of command umount
  2015-07-20  7:59 [PATCH 0/1] V2: " Kai Kang
@ 2015-07-20  7:59 ` Kai Kang
  0 siblings, 0 replies; 6+ messages in thread
From: Kai Kang @ 2015-07-20  7:59 UTC (permalink / raw)
  To: ross.burton; +Cc: openembedded-core

It calls /sbin/umount to stop service var-volatile-lib. But umount is
installed into directory /bin. Correct it.

Signed-off-by: Kai Kang <kai.kang@windriver.com>
---
 meta/recipes-core/volatile-binds/files/volatile-binds.service.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-core/volatile-binds/files/volatile-binds.service.in b/meta/recipes-core/volatile-binds/files/volatile-binds.service.in
index 32be5b4..b23355a 100644
--- a/meta/recipes-core/volatile-binds/files/volatile-binds.service.in
+++ b/meta/recipes-core/volatile-binds/files/volatile-binds.service.in
@@ -13,7 +13,7 @@ RemainAfterExit=Yes
 StandardOutput=syslog
 TimeoutSec=0
 ExecStart=/sbin/mount-copybind @what@ @where@
-ExecStop=/sbin/umount @where@
+ExecStop=/bin/umount @where@
 
 [Install]
 WantedBy=local-fs.target
-- 
1.9.1



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

end of thread, other threads:[~2015-07-20  8:00 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-06  1:59 [PATCH 0/1] Fix can not stop systemd service var-volatile-lib Kai Kang
2015-07-06  1:59 ` [PATCH 1/1] volatile-binds: correct path of command umount Kai Kang
2015-07-17 11:47   ` Burton, Ross
2015-07-20  1:47     ` Kang Kai
2015-07-17  8:54 ` [PATCH 0/1] Fix can not stop systemd service var-volatile-lib Kang Kai
  -- strict thread matches above, loose matches on Subject: below --
2015-07-20  7:59 [PATCH 0/1] V2: " Kai Kang
2015-07-20  7:59 ` [PATCH 1/1] volatile-binds: correct path of command umount Kai Kang

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.