diff options
author | Wadim Egorov <w.egorov@phytec.de> | 2024-07-22 10:58:40 +0200 |
---|---|---|
committer | Steve Sakoman <steve@sakoman.com> | 2024-08-06 19:11:18 -0700 |
commit | bcbc1ad07a2bd6ce48a9996160a7e05082bd9ad8 (patch) | |
tree | 0e098abfa41bf0909481fdc43fc4db17580fb481 | |
parent | 4aa7d1ea8712f0136a8777d6d384be7d00a4c1a2 (diff) | |
download | poky-bcbc1ad07a2bd6ce48a9996160a7e05082bd9ad8.tar.gz |
watchdog: Set watchdog_module in default config
systemd started to warn about used but unset environment variables.
Let us set watchdog_module=none which is used by the watchdog.service to get
rid of the following warning:
watchdog.service: Referenced but unset environment variable evaluates to an empty string: watchdog_module
(From OE-Core rev: 953ea8fa9e3e6a34cbb42e56743fb7c6cf98ff2a)
Signed-off-by: Wadim Egorov <w.egorov@phytec.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 8f1dc796c7298373e61d806e63bc121128c1c27c)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
-rw-r--r-- | meta/recipes-extended/watchdog/watchdog-config/watchdog.default | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-extended/watchdog/watchdog-config/watchdog.default b/meta/recipes-extended/watchdog/watchdog-config/watchdog.default index 647d5abca5..cee5fdc2b6 100644 --- a/meta/recipes-extended/watchdog/watchdog-config/watchdog.default +++ b/meta/recipes-extended/watchdog/watchdog-config/watchdog.default | |||
@@ -1,2 +1,3 @@ | |||
1 | # Start watchdog at boot time? 0 or 1 | 1 | # Start watchdog at boot time? 0 or 1 |
2 | run_watchdog=1 | 2 | run_watchdog=1 |
3 | watchdog_module=none | ||