summaryrefslogtreecommitdiffstats
path: root/meta/classes/report-error.bbclass
AgeCommit message (Expand)Author
2017-08-18report-error: provide distro identifier string in case of uninative buildLeonardo Sandoval
2016-12-16meta: remove True option to getVar callsJoshua Lock
2016-08-17report-error: Fix tracebacksRichard Purdie
2016-07-20report-error: replace build paths with markers not whitespaceRoss Burton
2016-06-02classes/lib: Complete transition to python3Richard Purdie
2016-05-14report-error: Replace the build directory path in the error textMichael Wood
2015-10-03report-error.bbclass: Support Unicode reportsMariano Lopez
2015-09-06report-error: send only last 5242000 characters in error logsMartin Jansa
2015-07-08report-error: expand all variablesRoss Burton
2015-07-07report-error.bbclass: Added file syncronization.Mariano Lopez
2015-06-23meta: Add explict getVar param for (non) expansionRichard Purdie
2015-03-09report-error: Update information on the submission processMichael Wood
2015-02-03report-error: Catch un-readable log dataMichael Wood
2014-12-20report-error: Handle the case no logfile existsRichard Purdie
2014-06-29classes/report-error: tweak summary messagePaul Eggleton
2014-04-24report-error: Add posting in the public noteSaul Wold
2014-02-14report-error.bbclass: new class to save build information when errors occurAndreea Proca
: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */ }
#!/bin/sh
#
# SPDX-License-Identifier: GPL-2.0-only
#

### BEGIN INIT INFO
# Provides:          save-rtc
# Required-Start:
# Required-Stop:     $local_fs hwclock
# Default-Start:     S
# Default-Stop:      0 6
# Short-Description: Store system clock into file
# Description:       
### END INIT INFO

TIMESTAMP_FILE=/etc/timestamp

[ -f /etc/default/timestamp ] && . /etc/default/timestamp

# Update the timestamp
date -u +%4Y%2m%2d%2H%2M%2S 2>/dev/null > "$TIMESTAMP_FILE"