aboutsummaryrefslogtreecommitdiff
path: root/util/cbfstool/cbfstool.c
diff options
context:
space:
mode:
authorPatrick Georgi <pgeorgi@chromium.org>2015-07-14 22:18:23 +0200
committerPatrick Georgi <pgeorgi@google.com>2015-07-15 16:34:30 +0200
commit45acb34ffce5ffef1e574305b4e18af6d26df46b (patch)
tree46c12f5ca157bd0d9053bb9e369bda63f8d206d0 /util/cbfstool/cbfstool.c
parentff9afb3d8ecdfd03933effc583593a7c9b73e48e (diff)
cbfstool: fix alignment to 64 byte
It's not like we _ever_ changed it, so drop the option and make cbfstool use the default. always. Change-Id: Ia1b99fda03d5852137a362422e979f4a4dffc5ed Signed-off-by: Patrick Georgi <pgeorgi@chromium.org> Reviewed-on: http://review.coreboot.org/10918 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'util/cbfstool/cbfstool.c')
-rw-r--r--util/cbfstool/cbfstool.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/util/cbfstool/cbfstool.c b/util/cbfstool/cbfstool.c
index 06d0cef1d4..901fe5c94e 100644
--- a/util/cbfstool/cbfstool.c
+++ b/util/cbfstool/cbfstool.c
@@ -372,9 +372,8 @@ static int cbfs_create(void)
param.baseaddress_assigned ||
param.headeroffset_assigned ||
param.cbfsoffset_assigned ||
- param.alignment ||
param.bootblock) {
- ERROR("Since -M was provided, -m, -s, -b, -o, -H, -a, and -B should be omitted\n");
+ ERROR("Since -M was provided, -m, -s, -b, -o, -H, and -B should be omitted\n");
return 1;
}
@@ -395,7 +394,7 @@ static int cbfs_create(void)
}
if (!param.alignment)
- param.alignment = 64; // default CBFS entry alignment
+ param.alignment = CBFS_ALIGNMENT;
// Set default offsets. x86, as usual, needs to be a special snowflake.
if (!param.baseaddress_assigned) {
@@ -430,7 +429,7 @@ static int cbfs_create(void)
} else {
param.cbfsoffset = align_up(param.headeroffset +
sizeof(struct cbfs_header),
- param.alignment);
+ CBFS_ALIGNMENT);
DEBUG("CBFS entries start beind master header (%#x).\n",
param.cbfsoffset);
}
@@ -438,7 +437,7 @@ static int cbfs_create(void)
int ret = cbfs_legacy_image_create(&image,
param.arch,
- param.alignment,
+ CBFS_ALIGNMENT,
&bootblock,
param.baseaddress,
param.headeroffset,
@@ -743,7 +742,7 @@ static const struct command commands[] = {
{"add-stage", "H:r:f:n:t:c:b:S:vh?", cbfs_add_stage, true, true},
{"add-int", "H:r:i:n:b:vh?", cbfs_add_integer, true, true},
{"copy", "H:D:s:h?", cbfs_copy, true, true},
- {"create", "M:r:s:B:b:H:a:o:m:vh?", cbfs_create, true, true},
+ {"create", "M:r:s:B:b:H:o:m:vh?", cbfs_create, true, true},
{"extract", "H:r:n:f:vh?", cbfs_extract, true, false},
{"locate", "H:r:f:n:P:a:Tvh?", cbfs_locate, true, false},
{"layout", "wvh?", cbfs_layout, false, false},