diff options
author | Simon Glass <sjg@chromium.org> | 2018-07-17 13:25:47 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2018-08-01 16:30:48 -0600 |
commit | 24d0d3c30db0bba6579ae55e1d6202e229c23a0e (patch) | |
tree | 7b93e2bc56584edd1b7c043e144fbc0aa2ca54a4 /tools/binman/entry.py | |
parent | 94a7c603b45b9abdd9e6960ed2b096dd4553c91c (diff) | |
download | u-boot-24d0d3c30db0bba6579ae55e1d6202e229c23a0e.tar.gz |
binman: Add an entry for a Chromium vblock
This adds support for a Chromium verified boot block, used to sign a
read-write section of the image.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/binman/entry.py')
-rw-r--r-- | tools/binman/entry.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/binman/entry.py b/tools/binman/entry.py index 8b910feff6..996f03e3a6 100644 --- a/tools/binman/entry.py +++ b/tools/binman/entry.py @@ -65,7 +65,7 @@ class Entry(object): self.name = node and (name_prefix + node.name) or 'none' self.offset = None self.size = None - self.data = '' + self.data = None self.contents_size = 0 self.align = None self.align_size = None |