]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
binman: Make Intel ME default to position 0x1000
authorSimon Glass <sjg@chromium.org>
Sun, 23 Jun 2024 17:55:07 +0000 (11:55 -0600)
committerSimon Glass <sjg@chromium.org>
Wed, 3 Jul 2024 06:36:33 +0000 (07:36 +0100)
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>
tools/binman/etype/intel_descriptor.py

index 7fe88a9ec1a6dab5593f9a32484f50ba5a50a39f..3ce967fe81abfe1f56b6ee765e1b71ea8181162f 100644 (file)
@@ -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: