summaryrefslogtreecommitdiff
path: root/firmware/include/bmpblk_header.h
diff options
context:
space:
mode:
authorBill Richardson <wfrichar@chromium.org>2011-02-10 19:13:10 -0800
committerBill Richardson <wfrichar@chromium.org>2011-02-10 19:13:10 -0800
commit794d4d44db984759466b5b6779833e2d5281e527 (patch)
treea2a9b8a4fc19276178dcac8889bbeb386a2b2aad /firmware/include/bmpblk_header.h
parent31b206f218189d2ecb4b12cf05139bb423877a94 (diff)
downloadvboot-794d4d44db984759466b5b6779833e2d5281e527.tar.gz
New commandline args are clearer, and prepare for compression.
BUG=chromium-os:11488 TEST=none Change-Id: I6ee493037da5746d2db6e840ac6590dd12f37cfe Review URL: http://codereview.chromium.org/6482001
Diffstat (limited to 'firmware/include/bmpblk_header.h')
-rw-r--r--firmware/include/bmpblk_header.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/firmware/include/bmpblk_header.h b/firmware/include/bmpblk_header.h
index 6ca67ef5..0d67a496 100644
--- a/firmware/include/bmpblk_header.h
+++ b/firmware/include/bmpblk_header.h
@@ -94,7 +94,7 @@ typedef struct ImageInfo {
uint32_t width; /* Width of the image */
uint32_t height; /* Height of the image */
uint32_t format; /* File format of the image */
- uint32_t compression; /* Compression method to the image file */
+ uint32_t compression; /* Compression method for the image file */
uint32_t original_size; /* Size of the original uncompressed image */
uint32_t compressed_size; /* Size of the compressed image */
uint32_t reserved;
@@ -118,6 +118,7 @@ typedef enum Compression {
COMPRESS_NONE = 0,
COMPRESS_EFIv1, /* The x86 BIOS only supports this */
COMPRESS_TBD, /* Only on ARM? */
+ MAX_COMPRESS,
} Compression;
__pragma(pack(pop)) /* Support packing for MSVC. */