aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Glass2018-06-01 09:38:22 -0600
committerSimon Glass2018-06-07 11:25:08 -0800
commit844e5b20f2691eccce9ac8f7e3732bbb5d0ac757 (patch)
treece934edb01f118ec1038a98cb41e90964f3b686b
parentc8d48efb2b373dc6893e7e9f2f6aaefe5d194719 (diff)
binman: Mark 'align-end' as implemented
The documentation says this is not implemented, but it is. Update the documentation, and clarify its operation. Signed-off-by: Simon Glass <sjg@chromium.org>
-rw-r--r--tools/binman/README7
1 files changed, 3 insertions, 4 deletions
diff --git a/tools/binman/README b/tools/binman/README
index 42ed4448bc2..22f21bc5b44 100644
--- a/tools/binman/README
+++ b/tools/binman/README
@@ -302,9 +302,9 @@ align-size:
align-end:
This sets the alignment of the end of an entry. Some entries require
that they end on an alignment boundary, regardless of where they
- start. If 'align-end' is not provided, no alignment is performed.
-
- Note: This is not yet implemented in binman.
+ start. This does not move the start of the entry, so the contents of
+ the entry will still start at the beginning. But there may be padding
+ at the end. If 'align-end' is not provided, no alignment is performed.
filename:
For 'blob' types this provides the filename containing the binary to
@@ -662,7 +662,6 @@ Some ideas:
configurable build directory
- Consider making binman work with buildman, although if it is used in the
Makefile, this will be automatic
-- Implement align-end
--
Simon Glass <sjg@chromium.org>