From: Simon Glass Date: Sun, 23 Jun 2024 17:55:07 +0000 (-0600) Subject: binman: Make Intel ME default to position 0x1000 X-Git-Url: http://git.dujemihanovic.xyz/?a=commitdiff_plain;h=0f851e234172cf3d874ae16d61a641cb9d793c73;p=u-boot.git 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 --- diff --git a/tools/binman/etype/intel_descriptor.py b/tools/binman/etype/intel_descriptor.py index 7fe88a9ec1..3ce967fe81 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: