diff options
author | Kai Kang <kai.kang@windriver.com> | 2015-07-20 15:59:04 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-08-09 16:37:43 -0700 |
commit | f81b891959fddb0586494d059c4c56781e0e5e4e (patch) | |
tree | 8cf0a5e158d880ca4dc0e1127e5a275e3f93f0eb | |
parent | 411a70dea3f5cd4f5382543fff564aff992457b9 (diff) | |
download | poky-f81b891959fddb0586494d059c4c56781e0e5e4e.tar.gz |
volatile-binds: correct path of command umount
It calls /sbin/umount to stop service var-volatile-lib. But umount is
installed into directory /bin. Correct it.
(From OE-Core rev: 55851c6f389cb027496c96f6e0609c8892032e4d)
(From OE-Core rev: a56df1b057b6d77861ac73db6252472ca7e35d08)
Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-core/volatile-binds/files/volatile-binds.service.in | 2 |
1 files changed, 1 insertions, 1 deletions
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 32be5b4425..b23355a714 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 | |||
13 | StandardOutput=syslog | 13 | StandardOutput=syslog |
14 | TimeoutSec=0 | 14 | TimeoutSec=0 |
15 | ExecStart=/sbin/mount-copybind @what@ @where@ | 15 | ExecStart=/sbin/mount-copybind @what@ @where@ |
16 | ExecStop=/sbin/umount @where@ | 16 | ExecStop=/bin/umount @where@ |
17 | 17 | ||
18 | [Install] | 18 | [Install] |
19 | WantedBy=local-fs.target | 19 | WantedBy=local-fs.target |