mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-16 09:54:35 +00:00
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>
This commit is contained in:
parent
404936e573
commit
0f851e2341
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue