diff options
author | Patrice Bouchand <pbfwdlist@gmail.com> | 2014-02-15 22:19:57 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2014-03-22 14:47:22 -0600 |
commit | 5527f832c0c607d61abc58ab006a91aebb4b64f3 (patch) | |
tree | 3a6b1d4e453ab31dae9d58ed8d057707666c9c8a /common/Makefile | |
parent | 2c072c958bb544c72f0e848375803dbd6971f022 (diff) |
Add lzmadec command
I needed to be able to uncompress lzma files. I did this command
based on unzip command and propose it if it could help.
Signed-off-by: Patrice Bouchand <pbfwdlist@gmail.com>
Changed to work with sandbox
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common/Makefile')
-rw-r--r-- | common/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/common/Makefile b/common/Makefile index e2ff0cb57d6..cecd81a9a08 100644 --- a/common/Makefile +++ b/common/Makefile @@ -159,6 +159,9 @@ obj-$(CONFIG_CMD_UBI) += cmd_ubi.o obj-$(CONFIG_CMD_UBIFS) += cmd_ubifs.o obj-$(CONFIG_CMD_UNIVERSE) += cmd_universe.o obj-$(CONFIG_CMD_UNZIP) += cmd_unzip.o +ifdef CONFIG_LZMA +obj-$(CONFIG_CMD_LZMADEC) += cmd_lzmadec.o +endif ifdef CONFIG_CMD_USB obj-y += cmd_usb.o obj-y += usb.o usb_hub.o |