diff options
author | Alex Kiernan <alex.kiernan@gmail.com> | 2018-05-12 05:49:47 +0000 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-05-23 17:30:05 -0400 |
commit | b11ed7d602a48021d8ab96518ad80996d2b86077 (patch) | |
tree | 978f584d35a10d31c0776e6d9cbb080557242c31 /cmd/Makefile | |
parent | c4d7b7a6b8571030c5109e8cb75a85756156711e (diff) | |
download | u-boot-b11ed7d602a48021d8ab96518ad80996d2b86077.zip u-boot-b11ed7d602a48021d8ab96518ad80996d2b86077.tar.gz u-boot-b11ed7d602a48021d8ab96518ad80996d2b86077.tar.bz2 |
bootcount: Add bootcount command
Add a command to manipulate the bootcounter. This is useful if you can
run device recovery from inside U-Boot and need to reset the bootcounter
after executing that process as part of altbootcmd.
Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com>
Reviewed-by: Lukasz Majewski <lukma@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 0d7322e..c05dc2b 100644 --- a/cmd/Makefile +++ b/cmd/Makefile @@ -22,6 +22,7 @@ obj-$(CONFIG_CMD_BEDBUG) += bedbug.o obj-$(CONFIG_CMD_BINOP) += binop.o obj-$(CONFIG_CMD_BLOCK_CACHE) += blkcache.o obj-$(CONFIG_CMD_BMP) += bmp.o +obj-$(CONFIG_CMD_BOOTCOUNT) += bootcount.o obj-$(CONFIG_CMD_BOOTEFI) += bootefi.o obj-$(CONFIG_CMD_BOOTMENU) += bootmenu.o obj-$(CONFIG_CMD_BOOTSTAGE) += bootstage.o |