Attention is currently required from: Jason Glenesk, Fred Reitberger, Felix Held.
Nikolai Vyssotski has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/68802 )
Change subject: mainboard/amd/chausie: Don't use APCB_FT6_Updatable ......................................................................
mainboard/amd/chausie: Don't use APCB_FT6_Updatable
This APCB binary is not used for coreboot builds. Coreboot does not support RW APCB.
Change-Id: I4d317ae31cf226b5481619f1539abb6237033f7c --- M src/mainboard/amd/chausie/Makefile.inc 1 file changed, 14 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/02/68802/1
diff --git a/src/mainboard/amd/chausie/Makefile.inc b/src/mainboard/amd/chausie/Makefile.inc index 2560886..739de29 100644 --- a/src/mainboard/amd/chausie/Makefile.inc +++ b/src/mainboard/amd/chausie/Makefile.inc @@ -9,8 +9,8 @@ ramstage-y += chromeos.c ramstage-y += gpio.c
-ifneq ($(wildcard $(MAINBOARD_BLOBS_DIR)/APCB_FT6_Updatable.bin),) -APCB_SOURCES = $(MAINBOARD_BLOBS_DIR)/APCB_FT6_Updatable.bin +ifneq ($(wildcard $(MAINBOARD_BLOBS_DIR)/APCB_FT6.bin),) +APCB_SOURCES = $(MAINBOARD_BLOBS_DIR)/APCB_FT6.bin APCB_SOURCES_RECOVERY = $(MAINBOARD_BLOBS_DIR)/APCB_FT6_DefaultRecovery.bin else $(info APCB sources not found. Skipping APCB. The resulting image won't boot.)