Attention is currently required from: Jason Glenesk, Marshall Dawson, Paul Menzel, Zheng Bao, Felix Held. Hello build bot (Jenkins), Jason Glenesk, Marshall Dawson, Zheng Bao, Felix Held,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/59010
to look at the new patch set (#2).
Change subject: mb/amd/majolica:FMAP Increase EC FW space to 148KB for Type-C adaptor ......................................................................
mb/amd/majolica:FMAP Increase EC FW space to 148KB for Type-C adaptor
The next 20kByte after 128k of stock BIOS is optional to enable the type-C DC adaptor. If you use the 148kByte, don't forget to fill the 0x20000-0x21000 which is ROMSIG to all FFs or 0s.
The old EC_majolica.bin can still be used without building error and problems, except the type-C DC adaptor can not be used.
The commands which gets the new 148kByte EC_majolica.bin $> dd if=BIOS.bin of=1.bin bs=4k count=32 $> printf '\xff%.0s' {1..4096} > 2.bin $> dd if=BIOS.bin of=3.bin bs=4k skip=33 count=4 $> cat 1.bin 2.bin 3.bin > EC_majolica.bin
Change-Id: Ib311e46c8765f17a1af5bc0b00c387268f4cfae5 Signed-off-by: Zheng Bao fishbaozi@gmail.com --- M src/mainboard/amd/majolica/Kconfig M src/mainboard/amd/majolica/board.fmd M src/mainboard/amd/majolica/chromeos.fmd 3 files changed, 5 insertions(+), 3 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/10/59010/2