add lzma compression format to mkimage (will be used on infineon amazon)

SVN-Revision: 7718
This commit is contained in:
Felix Fietkau 2007-06-24 04:59:27 +00:00
parent 080f7b4b10
commit 07c8a6dab5
2 changed files with 2 additions and 0 deletions

View File

@ -133,6 +133,7 @@
#define IH_COMP_NONE 0 /* No Compression Used */
#define IH_COMP_GZIP 1 /* gzip Compression Used */
#define IH_COMP_BZIP2 2 /* bzip2 Compression Used */
#define IH_COMP_LZMA 3 /* lzma Compression Used */
#define IH_MAGIC 0x27051956 /* Image Magic Number */
#define IH_NMLEN 32 /* Image Name Length */

View File

@ -142,6 +142,7 @@ table_entry_t comp_name[] = {
{ IH_COMP_NONE, "none", "uncompressed", },
{ IH_COMP_BZIP2, "bzip2", "bzip2 compressed", },
{ IH_COMP_GZIP, "gzip", "gzip compressed", },
{ IH_COMP_LZMA, "lzma", "lzma compressed", },
{ -1, "", "", },
};