diff options
author | Samuel Dionne-Riel <samuel@dionne-riel.com> | 2022-08-18 15:44:04 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-09-02 13:40:42 -0400 |
commit | dc0d17c26a3a03634994c59adb0b657807827183 (patch) | |
tree | 991b387d3fcb0fd43082033fc0fc040ea756ef4d /cmd/Makefile | |
parent | d88260710b212815ae1f461aec24ad926c668d36 (diff) | |
download | u-boot-dc0d17c26a3a03634994c59adb0b657807827183.zip u-boot-dc0d17c26a3a03634994c59adb0b657807827183.tar.gz u-boot-dc0d17c26a3a03634994c59adb0b657807827183.tar.bz2 |
cmd: Add pause command
This command is being introduced with the goal of allowing user-friendly
"generic use case" U-Boot builds to pause until user input under some
situations.
The main use case would be when a boot failure happens, to pause until
the user has had time to acknowledge the current state.
Tested using:
make && ./u-boot -v -T -c 'ut lib lib_test_hush_pause'
Signed-off-by: Samuel Dionne-Riel <samuel@dionne-riel.com>
Cc: Simon Glass <sjg@chromium.org>
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 6e87522..7abe1d3 100644 --- a/cmd/Makefile +++ b/cmd/Makefile @@ -102,6 +102,7 @@ obj-$(CONFIG_CMD_MFSL) += mfsl.o obj-$(CONFIG_CMD_MII) += mii.o obj-$(CONFIG_CMD_MISC) += misc.o obj-$(CONFIG_CMD_MDIO) += mdio.o +obj-$(CONFIG_CMD_PAUSE) += pause.o obj-$(CONFIG_CMD_SLEEP) += sleep.o obj-$(CONFIG_CMD_MMC) += mmc.o obj-$(CONFIG_CMD_OPTEE_RPMB) += optee_rpmb.o |