You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Hostboot Boot Loader image is made up of a few things:
The Host Boot Boot Loader itself
The securerom image (the size of the image and then the image itself)
the hash of the hardware keys in the last 64 bytes of the image
This is currently constructed first using the linker script src/bootloader.ld for step 1, and subsequently manipulated in genPnorImages.pl to do 2 and 3.
There's no reason 2 and 3 couldn't be done by the linker script, which would give us the benefit of being able to catch HBBL and/or securerom growing beyond the maximum allowed HBBL size (which is restricted due to the size of the SBE SEEPROM)
The text was updated successfully, but these errors were encountered:
This would let us remove dd and cat invocations in src/build/mkrules/hbfw/img/makefile as well as in genPnorImages.pl and have a flashable hbbl.bin image come directly out of the link operation.
The Hostboot Boot Loader image is made up of a few things:
This is currently constructed first using the linker script
src/bootloader.ld
for step 1, and subsequently manipulated ingenPnorImages.pl
to do 2 and 3.There's no reason 2 and 3 couldn't be done by the linker script, which would give us the benefit of being able to catch HBBL and/or securerom growing beyond the maximum allowed HBBL size (which is restricted due to the size of the SBE SEEPROM)
The text was updated successfully, but these errors were encountered: