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

View File

@@ -8,3 +8,5 @@ config BR2_PACKAGE_AT
at - run the job at a specified time
batch - run the job when system load levels permit
https://salsa.debian.org/debian/at

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"

View File

@@ -1,2 +1,5 @@
# From: http://snapshot.debian.org/archive/debian/20141023T043132Z/pool/main/a/at/at_3.1.16-1.dsc
sha256 cb9af59c6a54edce9536ba629841055409d1f89d8ae26494727a97141fb4d5c1 at_3.1.16.orig.tar.gz
# Locally calculated
sha256 f5c7c8226fab0bc4e2d16a55e04d4026f3452db51fc5cbcc4bb5a3c79a79f7ef at-release_3.1.23.tar.gz
sha256 01dccc0975aa9ba1a9f83e7c5e04f16077353d3c72a0a759b8846ee7a5b2b616 Copyright
sha256 c38aee9e3c8c4d5d594ff548a1be05453023016d6286931f6512db215ec1fd42 COPYING

View File

@@ -4,10 +4,11 @@
#
################################################################################
AT_VERSION = 3.1.16
AT_SOURCE = at_$(AT_VERSION).orig.tar.gz
AT_SITE = http://snapshot.debian.org/archive/debian/20141023T043132Z/pool/main/a/at
# missing deps for parsetime.l
AT_VERSION = release/3.1.23
AT_SITE = https://salsa.debian.org/debian/at.git
AT_SITE_METHOD = git
# Tried to add missing deps for parsetime.l but still parallel build fails
# in some case, so at the moment let's keep MAKE1
AT_MAKE = $(MAKE1)
AT_AUTORECONF = YES
AT_DEPENDENCIES = $(if $(BR2_PACKAGE_FLEX),flex) host-bison host-flex