summaryrefslogtreecommitdiffstats
path: root/meta/classes/image.bbclass
diff options
context:
space:
mode:
authorBlair Elliott <blair.elliott@ni.com>2014-07-17 16:56:53 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-07-19 00:08:59 +0100
commit00017b4dd895afff9ff613d511cea373f13a96ea (patch)
tree9f13e26c9f184e88e8bf988a30c1f0b4d5e59b7b /meta/classes/image.bbclass
parentb573ae80110bccb5af0857fb3c91ab3812c37f50 (diff)
downloadpoky-00017b4dd895afff9ff613d511cea373f13a96ea.tar.gz
initscripts: save /etc/timestamp with seconds accuracy
Currently, /etc/timestamp is saved with minutes accuracy. To increase the accuracy, modify the save-rtc.sh and bootmisc.sh scripts to save and read /etc/timestamp respectively with seconds accuracy. (From OE-Core rev: 8fed53e4e72230c61f23cb36eda36c228aede1e0) Signed-off-by: Richard Tollerton <rich.tollerton@ni.com> Signed-off-by: Ben Shelton <ben.shelton@ni.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/image.bbclass')
-rw-r--r--meta/classes/image.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass
index a03b880402..772c3ed993 100644
--- a/meta/classes/image.bbclass
+++ b/meta/classes/image.bbclass
@@ -359,7 +359,7 @@ set_image_autologin () {
359# Can be use to create /etc/timestamp during image construction to give a reasonably 359# Can be use to create /etc/timestamp during image construction to give a reasonably
360# sane default time setting 360# sane default time setting
361rootfs_update_timestamp () { 361rootfs_update_timestamp () {
362 date -u +%4Y%2m%2d%2H%2M >${IMAGE_ROOTFS}/etc/timestamp 362 date -u +%4Y%2m%2d%2H%2M%2S >${IMAGE_ROOTFS}/etc/timestamp
363} 363}
364 364
365# Prevent X from being started 365# Prevent X from being started