12 lines
596 B
Plaintext
12 lines
596 B
Plaintext
do_install:append:stm32mpcommon() {
|
|
# enable watchdog on systemd configuration
|
|
if ${@bb.utils.contains('MACHINE_FEATURES','watchdog','true','false',d)}; then
|
|
install -d ${D}${systemd_unitdir}/system.conf.d/
|
|
echo "[Manager]" > ${D}${systemd_unitdir}/system.conf.d/01-watchdog.conf
|
|
echo "RuntimeWatchdogSec=32" >> ${D}${systemd_unitdir}/system.conf.d/01-watchdog.conf
|
|
echo "ShutdownWatchdogSec=32" >> ${D}${systemd_unitdir}/system.conf.d/01-watchdog.conf
|
|
echo "RebootWatchdogSec=32" >> ${D}${systemd_unitdir}/system.conf.d/01-watchdog.conf
|
|
|
|
fi
|
|
}
|