diff options
author | Muhammad Shakeel <muhammad_shakeel@mentor.com> | 2013-10-02 10:55:32 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-10-07 09:37:31 +0100 |
commit | 0d8cbc38abd313724e1eaad153d58e3fea7726a6 (patch) | |
tree | f92e4a09f4798a44223e827baad52095f2b650ea /meta/recipes-core | |
parent | 17b5f2f16256c9e8c551416a8b7211e44dfa5e91 (diff) | |
download | poky-0d8cbc38abd313724e1eaad153d58e3fea7726a6.tar.gz |
systemd-compat-units: Use correct run-postinsts script link
OE-Core commit 75a14923da1ba91eddde47f0907345c19c82d6f0 has moved
run-postinsts script execution from S98 to S99 in rcS.d. run-postinsts.service
should check for this script and run it on first boot rather than
S98run-postinsts, which is for opkg/dpkg.
(From OE-Core rev: fe039170236080291c0220476a5809774f82ee5c)
Signed-off-by: Muhammad Shakeel <muhammad_shakeel@mentor.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/systemd/systemd-compat-units/run-postinsts.service | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-core/systemd/systemd-compat-units/run-postinsts.service b/meta/recipes-core/systemd/systemd-compat-units/run-postinsts.service index 02c1d86821..4ebc2344cf 100644 --- a/meta/recipes-core/systemd/systemd-compat-units/run-postinsts.service +++ b/meta/recipes-core/systemd/systemd-compat-units/run-postinsts.service | |||
@@ -1,12 +1,12 @@ | |||
1 | [Unit] | 1 | [Unit] |
2 | Description=Run pending postinsts | 2 | Description=Run pending postinsts |
3 | DefaultDependencies=no | 3 | DefaultDependencies=no |
4 | ConditionPathExists=|/etc/rcS.d/S98run-postinsts | 4 | ConditionPathExists=|/etc/rcS.d/S99run-postinsts |
5 | After=systemd-remount-fs.service systemd-tmpfiles-setup.service tmp.mount | 5 | After=systemd-remount-fs.service systemd-tmpfiles-setup.service tmp.mount |
6 | Before=sysinit.target | 6 | Before=sysinit.target |
7 | 7 | ||
8 | [Service] | 8 | [Service] |
9 | ExecStart=/etc/rcS.d/S98run-postinsts | 9 | ExecStart=/etc/rcS.d/S99run-postinsts |
10 | RemainAfterExit=No | 10 | RemainAfterExit=No |
11 | Type=oneshot | 11 | Type=oneshot |
12 | StandardOutput=syslog | 12 | StandardOutput=syslog |