diff options
author | Michael Walle <michael@walle.cc> | 2019-04-06 02:24:02 +0200 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2019-04-12 07:04:18 +0200 |
commit | 82a00be35382b537cbe1338ade00252242383a90 (patch) | |
tree | 1fb7b42f1c901df651c99af32fbd8fe1f88b88c3 /cmd/Makefile | |
parent | f94b5223fbe942ac9299972e1ece0ba4ba29edfd (diff) | |
download | u-boot-82a00be35382b537cbe1338ade00252242383a90.tar.gz u-boot-82a00be35382b537cbe1338ade00252242383a90.tar.bz2 u-boot-82a00be35382b537cbe1338ade00252242383a90.zip |
cmd: add wdt command
Add a command to control the watchdog devices. This is useful if the
watchdog is rather long running (eg. seconds) and it should be
controlled by scripts. It is also handy during debugging.
Signed-off-by: Michael Walle <michael@walle.cc>
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'cmd/Makefile')
-rw-r--r-- | cmd/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/Makefile b/cmd/Makefile index acb85f49fb..6b1c6b094e 100644 --- a/cmd/Makefile +++ b/cmd/Makefile @@ -142,6 +142,7 @@ obj-$(CONFIG_CMD_UBIFS) += ubifs.o obj-$(CONFIG_CMD_UNIVERSE) += universe.o obj-$(CONFIG_CMD_UNZIP) += unzip.o obj-$(CONFIG_CMD_VIRTIO) += virtio.o +obj-$(CONFIG_CMD_WDT) += wdt.o obj-$(CONFIG_CMD_LZMADEC) += lzmadec.o obj-$(CONFIG_CMD_USB) += usb.o disk.o |