cbfstool: move fill value to cbfs.h
Change-Id: Ie05db6d43219c65d08e2221009875f81eb29b630 Signed-off-by: Patrick Georgi <patrick@georgi-clan.de> Reviewed-on: http://review.coreboot.org/10968 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
parent
ef21e77bbc
commit
2062473492
|
@ -38,6 +38,9 @@
|
|||
#define __PACKED __attribute__((packed))
|
||||
#endif
|
||||
|
||||
/* To make CBFS more friendly to ROM, fill -1 (0xFF) instead of zero. */
|
||||
#define CBFS_CONTENT_DEFAULT_VALUE (-1)
|
||||
|
||||
// Alignment (in bytes) to be used when no master header is present
|
||||
#define CBFS_ENTRY_ALIGNMENT 64
|
||||
|
||||
|
|
|
@ -50,9 +50,6 @@
|
|||
* (old) cbfstool. */
|
||||
#define CBFS_FILENAME_ALIGN (16)
|
||||
|
||||
/* To make CBFS more friendly to ROM, fill -1 (0xFF) instead of zero. */
|
||||
#define CBFS_CONTENT_DEFAULT_VALUE (-1)
|
||||
|
||||
/* Type and format */
|
||||
|
||||
struct typedesc_t {
|
||||
|
|
Loading…
Reference in New Issue