diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2011-12-07 15:59:02 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-12-08 15:24:29 +0000 |
commit | 31ac06a3a00221c9ba8074c9b18998761b68be07 (patch) | |
tree | a937b8763f943bc189456f266fe352ea881d5376 /meta/recipes-extended/sysstat/sysstat.inc | |
parent | 567ed2892b48c725883d7b04d451847ff5a7b3f3 (diff) | |
download | poky-31ac06a3a00221c9ba8074c9b18998761b68be07.tar.gz |
sysstat: don't run populate-volatile.sh update in do_rootfs, first boot or without populate-volatile.sh
(From OE-Core rev: 6bf82c26f95359c08611bc9a44accf1593b2a850)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/sysstat/sysstat.inc')
-rw-r--r-- | meta/recipes-extended/sysstat/sysstat.inc | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/meta/recipes-extended/sysstat/sysstat.inc b/meta/recipes-extended/sysstat/sysstat.inc index 2936f96174..9da40a7067 100644 --- a/meta/recipes-extended/sysstat/sysstat.inc +++ b/meta/recipes-extended/sysstat/sysstat.inc | |||
@@ -22,7 +22,12 @@ do_install() { | |||
22 | } | 22 | } |
23 | 23 | ||
24 | pkg_postinst_${PN} () { | 24 | pkg_postinst_${PN} () { |
25 | /etc/init.d/populate-volatile.sh update | 25 | if [ -n "$D" ]; then |
26 | exit 0 | ||
27 | fi | ||
28 | if [ -e /etc/init.d/populate-volatile.sh ]; then | ||
29 | /etc/init.d/populate-volatile.sh update | ||
30 | fi | ||
26 | } | 31 | } |
27 | 32 | ||
28 | 33 | ||