Bump buildroot to 2019.02

This commit is contained in:
2019-03-28 22:49:48 +01:00
parent 5598b1b762
commit 920d307141
5121 changed files with 78550 additions and 46132 deletions

9
bsp/buildroot/package/at/S99at Executable file → Normal file
View File

@@ -6,6 +6,15 @@
umask 077
start() {
# Since /var/spool can be linked to /tmp (tmpfs)
# /var/spool/cron/atjobs/.SEQ created could be not available
# Check if not exists otherwise create it
if [ ! -f /var/spool/cron/atjobs/.SEQ ]; then
mkdir -p /var/spool/cron/atjobs/
touch /var/spool/cron/atjobs/.SEQ
printf "atd: created missing .SEQ file (atjobs will be lost on reboot)\n"
fi
printf "Starting atd: "
start-stop-daemon --start --quiet --make-pidfile --pidfile /var/run/atd.pid --background --exec /usr/sbin/atd -- -f
echo "OK"