diff options
author | Simon Glass | 2024-06-23 11:55:07 -0600 |
---|---|---|
committer | Simon Glass | 2024-07-03 07:36:33 +0100 |
commit | 0f851e234172cf3d874ae16d61a641cb9d793c73 (patch) | |
tree | a400acf2617fef239d484dccdbfa0fe365227ddf /tools | |
parent | 404936e5731ee366a513b0452e2306e799de59cb (diff) |
binman: Make Intel ME default to position 0x1000
This cannot ever go at offset 0 since the descriptor is there. Use a
better offset for the ME, as used by link and coral, for example.
This matters when we start using assumed sizes for missing blobs.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/binman/etype/intel_descriptor.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/binman/etype/intel_descriptor.py b/tools/binman/etype/intel_descriptor.py index 7fe88a9ec1a..3ce967fe81a 100644 --- a/tools/binman/etype/intel_descriptor.py +++ b/tools/binman/etype/intel_descriptor.py @@ -59,7 +59,7 @@ class Entry_intel_descriptor(Entry_blob_ext): if self.missing: # Return zero offsets so that these entries get placed somewhere if self.HasSibling('intel-me'): - info['intel-me'] = [0, None] + info['intel-me'] = [0x1000, None] return info offset = self.data.find(FD_SIGNATURE) if offset == -1: |