summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorPatrick Georgi <pgeorgi@chromium.org>2015-07-17 21:35:46 +0200
committerPatrick Georgi <pgeorgi@google.com>2015-07-18 09:39:33 +0200
commit2062473492501e2a7a6f26aab3eb333cb35b2429 (patch)
tree7003d841ae05e54725d328b066fc8667bfdb0f36 /util
parentef21e77bbcbc32ba0722ba961dfe2d6672bf05d2 (diff)
downloadcoreboot-2062473492501e2a7a6f26aab3eb333cb35b2429.tar.gz
coreboot-2062473492501e2a7a6f26aab3eb333cb35b2429.tar.bz2
coreboot-2062473492501e2a7a6f26aab3eb333cb35b2429.zip
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>
Diffstat (limited to 'util')
-rw-r--r--util/cbfstool/cbfs.h3
-rw-r--r--util/cbfstool/cbfs_image.c3
2 files changed, 3 insertions, 3 deletions
diff --git a/util/cbfstool/cbfs.h b/util/cbfstool/cbfs.h
index 1996b1c658b4..85d95f6498ae 100644
--- a/util/cbfstool/cbfs.h
+++ b/util/cbfstool/cbfs.h
@@ -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
diff --git a/util/cbfstool/cbfs_image.c b/util/cbfstool/cbfs_image.c
index 828d367e0f8b..793a9aa9abbb 100644
--- a/util/cbfstool/cbfs_image.c
+++ b/util/cbfstool/cbfs_image.c
@@ -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 {