diff options
author | Simon Glass <sjg@chromium.org> | 2019-07-08 14:25:28 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2019-07-24 12:53:46 -0700 |
commit | cf2289435c7e1134c75d9217ef32238aec0ecdbf (patch) | |
tree | 9c58722f695d50ffae4968f0b89a30b1af201908 /tools/binman/entry.py | |
parent | 086cec9f980efd6f25e184b84f626d4a667e6645 (diff) | |
download | u-boot-cf2289435c7e1134c75d9217ef32238aec0ecdbf.zip u-boot-cf2289435c7e1134c75d9217ef32238aec0ecdbf.tar.gz u-boot-cf2289435c7e1134c75d9217ef32238aec0ecdbf.tar.bz2 |
binman: Add an image header
It is useful to be able to quickly locate the FDT map in the image. An
easy way to do this is with a pointer at the start or end of the image.
Add an 'image header' entry, which places a magic number followed by a
pointer to the FDT map. This can be located at the start or end of the
image, or at a chosen location.
As part of this, update GetSiblingImagePos() to detect missing siblings.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/binman/entry.py')
-rw-r--r-- | tools/binman/entry.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tools/binman/entry.py b/tools/binman/entry.py index 7356c49..e1cd0d3 100644 --- a/tools/binman/entry.py +++ b/tools/binman/entry.py @@ -561,3 +561,14 @@ features to produce new behaviours. else False """ return name in self.section.GetEntries() + + def GetSiblingImagePos(self, name): + """Return the image position of the given sibling + + Returns: + Image position of sibling, or None if the sibling has no position, + or False if there is no such sibling + """ + if not self.HasSibling(name): + return False + return self.section.GetEntries()[name].image_pos |