diff options
author | Simon Glass | 2023-10-14 14:40:29 -0600 |
---|---|---|
committer | Tom Rini | 2023-11-02 22:38:01 -0400 |
commit | fe35c2f011006b6753df53946ec6a206213f3a34 (patch) | |
tree | a0323dfe41241064a240a41cfe9a45c3ee1d945d /include/cbfs.h | |
parent | ab326010a975e08c00ceb5968cdbcdec5eb8a966 (diff) |
binman: Rename TYPE_STAGE to TYPE_LEGACY_STAGE
In preparation for changing how stages are stored, rename the existing
stage tag.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/cbfs.h')
-rw-r--r-- | include/cbfs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/cbfs.h b/include/cbfs.h index 38efb1d2b02..2bc5de2297e 100644 --- a/include/cbfs.h +++ b/include/cbfs.h @@ -22,7 +22,7 @@ enum cbfs_result { enum cbfs_filetype { CBFS_TYPE_BOOTBLOCK = 0x01, CBFS_TYPE_CBFSHEADER = 0x02, - CBFS_TYPE_STAGE = 0x10, + CBFS_TYPE_LEGACY_STAGE = 0x10, CBFS_TYPE_PAYLOAD = 0x20, CBFS_TYPE_SELF = CBFS_TYPE_PAYLOAD, |