- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
28 lines
880 B
BlitzBasic
28 lines
880 B
BlitzBasic
SUMMARY = "Software watchdog"
|
|
DESCRIPTION = "Watchdog is a daemon that checks if your system is still \
|
|
working. If programs in user space are not longer executed it will reboot \
|
|
the system."
|
|
HOMEPAGE = "http://watchdog.sourceforge.net/"
|
|
BUGTRACKER = "http://sourceforge.net/tracker/?group_id=172030&atid=860194"
|
|
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
|
|
|
|
SRC_URI = " \
|
|
file://watchdog.default \
|
|
file://watchdog.conf \
|
|
"
|
|
|
|
# The default value is 60 seconds when null.
|
|
WATCHDOG_TIMEOUT ??= ""
|
|
|
|
do_install() {
|
|
install -Dm 0644 ${WORKDIR}/watchdog.default ${D}${sysconfdir}/default/watchdog
|
|
install -Dm 0644 ${WORKDIR}/watchdog.conf ${D}${sysconfdir}/watchdog.conf
|
|
|
|
if [ -n "${WATCHDOG_TIMEOUT}" ]; then
|
|
echo "watchdog-timeout = ${WATCHDOG_TIMEOUT}" >> ${D}/etc/watchdog.conf
|
|
fi
|
|
}
|
|
|