SYSTEMD: watchdog: limit time for shutdown watchdog

Change-Id: Ic855a71f1e96932cfccfe352dab98859d12a1471
Signed-off-by: Christophe Priouzeau <christophe.priouzeau@foss.st.com>
This commit is contained in:
Christophe Priouzeau 2023-05-04 14:33:34 +02:00 committed by Romuald Jeanne
parent 85b8afb05a
commit 8c00c5ebf3
1 changed files with 3 additions and 1 deletions

View File

@ -4,6 +4,8 @@ do_install:append:stm32mpcommon() {
install -d ${D}${systemd_unitdir}/system.conf.d/ install -d ${D}${systemd_unitdir}/system.conf.d/
echo "[Manager]" > ${D}${systemd_unitdir}/system.conf.d/01-watchdog.conf echo "[Manager]" > ${D}${systemd_unitdir}/system.conf.d/01-watchdog.conf
echo "RuntimeWatchdogSec=32" >> ${D}${systemd_unitdir}/system.conf.d/01-watchdog.conf echo "RuntimeWatchdogSec=32" >> ${D}${systemd_unitdir}/system.conf.d/01-watchdog.conf
echo "ShutdownWatchdogSec=2min" >> ${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 fi
} }