mirror of
https://git.yoctoproject.org/poky
synced 2026-04-27 21:32:13 +02:00
Commit cc8695 changed the way timestamps were handled and added some extra munging to be able to compare them reliably. This change makes the timestamp value the same everywhere and simplifies how the check to set the system clock based on the timestamp is done. Also, if the value stored in /etc/timestamp is newer [at all] than the current system time, set the system clock from the stored value, down to the minute, not just the day. (From OE-Core rev: 5aab6653c9afa05e7c1b3ccd6bd34aec05c2a6f8) Signed-off-by: Gary Thomas <gary@mlbassoc.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
79 lines
1.6 KiB
Bash
Executable File
79 lines
1.6 KiB
Bash
Executable File
#!/bin/sh
|
|
### BEGIN INIT INFO
|
|
# Provides: bootmisc
|
|
# Required-Start: $local_fs mountvirtfs
|
|
# Required-Stop: $local_fs
|
|
# Default-Start: S
|
|
# Default-Stop: 0 6
|
|
# Short-Description: Misc and other.
|
|
### END INIT INFO
|
|
|
|
. /etc/default/rcS
|
|
#
|
|
# Put a nologin file in /etc to prevent people from logging in before
|
|
# system startup is complete.
|
|
#
|
|
if test "$DELAYLOGIN" = yes
|
|
then
|
|
echo "System bootup in progress - please wait" > /etc/nologin
|
|
cp /etc/nologin /etc/nologin.boot
|
|
fi
|
|
|
|
#
|
|
# Set pseudo-terminal access permissions.
|
|
#
|
|
if test -c /dev/ttyp0
|
|
then
|
|
chmod 666 /dev/tty[p-za-e][0-9a-f]
|
|
chown root:tty /dev/tty[p-za-e][0-9a-f]
|
|
fi
|
|
|
|
#
|
|
# Apply /proc settings if defined
|
|
#
|
|
SYSCTL_CONF="/etc/sysctl.conf"
|
|
if [ -f "${SYSCTL_CONF}" ]
|
|
then
|
|
if [ -x "/sbin/sysctl" ]
|
|
then
|
|
/sbin/sysctl -p "${SYSCTL_CONF}"
|
|
else
|
|
echo "To have ${SYSCTL_CONF} applied during boot, install package <procps>."
|
|
fi
|
|
fi
|
|
|
|
#
|
|
# Update /etc/motd.
|
|
#
|
|
if test "$EDITMOTD" != no
|
|
then
|
|
uname -a > /etc/motd.tmp
|
|
sed 1d /etc/motd >> /etc/motd.tmp
|
|
mv /etc/motd.tmp /etc/motd
|
|
fi
|
|
|
|
#
|
|
# This is as good a place as any for a sanity check
|
|
# /tmp should be a symlink to /var/tmp to cut down on the number
|
|
# of mounted ramdisks.
|
|
if test ! -L /tmp && test -d /var/tmp
|
|
then
|
|
rm -rf /tmp
|
|
ln -sf /var/tmp /tmp
|
|
fi
|
|
|
|
# Set the system clock from hardware clock
|
|
# If the timestamp is more recent than the current time,
|
|
# use the timestamp instead.
|
|
/etc/init.d/hwclock.sh start
|
|
if test -e /etc/timestamp
|
|
then
|
|
SYSTEMDATE=`date -u +%4Y%2m%2d%2H%2M`
|
|
read TIMESTAMP < /etc/timestamp
|
|
if [ ${TIMESTAMP} -gt $SYSTEMDATE ]; then
|
|
date -u $TIMESTAMP
|
|
/etc/init.d/hwclock.sh stop
|
|
fi
|
|
fi
|
|
: exit 0
|