diff options
author | Marek Vasut <marex@denx.de> | 2014-03-05 19:58:39 +0100 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-03-21 16:43:58 -0400 |
commit | b401b73d02bb4f97197830e565f19a65577fecc6 (patch) | |
tree | 4382f7da81b2d4c594d5a5c8d60f23b2e5c25f2f /common/Makefile | |
parent | dc24bb6ddb416db52a60165931c0864fdba1f60b (diff) |
aes: Add 'aes' command to access AES-128-CBC
Add simple 'aes' command, which allows using the AES-128-CBC encryption
and decryption functions from U-Boot command line.
Signed-off-by: Marek Vasut <marex@denx.de>
Diffstat (limited to 'common/Makefile')
-rw-r--r-- | common/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/Makefile b/common/Makefile index e2ff0cb57d6..c49a0af28d5 100644 --- a/common/Makefile +++ b/common/Makefile @@ -48,6 +48,7 @@ obj-$(CONFIG_ENV_IS_IN_UBI) += env_ubi.o obj-$(CONFIG_ENV_IS_NOWHERE) += env_nowhere.o # command +obj-$(CONFIG_CMD_AES) += cmd_aes.o obj-$(CONFIG_CMD_AMBAPP) += cmd_ambapp.o obj-$(CONFIG_SOURCE) += cmd_source.o obj-$(CONFIG_CMD_SOURCE) += cmd_source.o |