diff options
author | Ross Burton <ross.burton@intel.com> | 2013-09-19 14:13:20 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-09-22 12:19:42 +0100 |
commit | 8f650f2e2c8e02cc8058a29610d0d77ac1e5c64e (patch) | |
tree | 0179c43fb82d71df47403577bb85759caf1ca3a8 | |
parent | fc91e068cc38f8990571526c723292ad03b5c2d4 (diff) | |
download | poky-8f650f2e2c8e02cc8058a29610d0d77ac1e5c64e.tar.gz |
oprofileui-server: use two digit initscript sequene
initscript sequence numbers are 00-99, so using 999 resulted in systemd warning
that it couldn't find "9oprofileui-server".
(From OE-Core rev: dac7dd70eb7a55ada5fdfc224aba5bac7c49f63f)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-kernel/oprofile/oprofileui-server_git.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-kernel/oprofile/oprofileui-server_git.bb b/meta/recipes-kernel/oprofile/oprofileui-server_git.bb index 70a1fbf9c3..dbb559965a 100644 --- a/meta/recipes-kernel/oprofile/oprofileui-server_git.bb +++ b/meta/recipes-kernel/oprofile/oprofileui-server_git.bb | |||
@@ -26,7 +26,7 @@ do_install_append() { | |||
26 | inherit update-rc.d systemd | 26 | inherit update-rc.d systemd |
27 | 27 | ||
28 | INITSCRIPT_NAME = "oprofileui-server" | 28 | INITSCRIPT_NAME = "oprofileui-server" |
29 | INITSCRIPT_PARAMS = "start 999 5 2 . stop 20 0 1 6 ." | 29 | INITSCRIPT_PARAMS = "start 99 5 2 . stop 20 0 1 6 ." |
30 | 30 | ||
31 | SYSTEMD_SERVICE_${PN} = "oprofileui-server.service" | 31 | SYSTEMD_SERVICE_${PN} = "oprofileui-server.service" |
32 | SYSTEMD_AUTO_ENABLE = "disable" | 32 | SYSTEMD_AUTO_ENABLE = "disable" |