diff options
author | Patrick Georgi <pgeorgi@google.com> | 2015-12-15 10:09:55 +0100 |
---|---|---|
committer | Aaron Durbin <adurbin@chromium.org> | 2016-01-06 01:11:54 +0100 |
commit | 3e6303ebe20889235418e08706302f7976fdf33a (patch) | |
tree | a85d940ba436a048b32601e693b0f137662fed3b /src | |
parent | ca0a67624b6f38b0a6c86171950b5c2c6507f2ce (diff) |
commonlib/cbfs: Add type ids for empty files
We will soon need to handle empty files.
Change-Id: Ia72a4bff7d9bb36f6a6648c3dd89e86593d80761
Signed-off-by: Patrick Georgi <pgeorgi@google.com>
Reviewed-on: https://review.coreboot.org/12785
Tested-by: build bot (Jenkins)
Diffstat (limited to 'src')
-rw-r--r-- | src/commonlib/include/commonlib/cbfs_serialized.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/commonlib/include/commonlib/cbfs_serialized.h b/src/commonlib/include/commonlib/cbfs_serialized.h index edef551da5..bea5d6bb9d 100644 --- a/src/commonlib/include/commonlib/cbfs_serialized.h +++ b/src/commonlib/include/commonlib/cbfs_serialized.h @@ -62,6 +62,8 @@ Users are welcome to use any other value for their components */ +#define CBFS_TYPE_DELETED 0x00000000 +#define CBFS_TYPE_DELETED2 0xffffffff #define CBFS_TYPE_STAGE 0x10 #define CBFS_TYPE_PAYLOAD 0x20 #define CBFS_TYPE_OPTIONROM 0x30 |