Tongtong Pan has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/85315?usp=email )
Change subject: mb/google/fatcat: Modify the kconfig file in felino variant ......................................................................
mb/google/fatcat: Modify the kconfig file in felino variant
kconfig incorrectly builds fatcat instead of feilino. Modify the kconfig file to successfully compile felino.
BUG=b:379797598 TEST=1. util/abuild/abuild -p none -t google/fatcat -x -a make sure the build includes GOOGLE_FELINO 2. Run part_id_gen tool without any errors
Change-Id: Icd76fa97b9879d8f90ae9ee13998b6667f10b39c Signed-off-by: Tongtong Pan pantongtong@huaqin.corp-partner.google.com --- M src/mainboard/google/fatcat/Kconfig A src/mainboard/google/fatcat/variants/felino/Makefile.mk 2 files changed, 7 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/15/85315/1
diff --git a/src/mainboard/google/fatcat/Kconfig b/src/mainboard/google/fatcat/Kconfig index c693bd2..4202c34 100644 --- a/src/mainboard/google/fatcat/Kconfig +++ b/src/mainboard/google/fatcat/Kconfig @@ -68,7 +68,7 @@ select BOARD_GOOGLE_MODEL_FATCAT
config BOARD_GOOGLE_FELINO - select BOARD_GOOGLE_MODEL_FATCAT + select BOARD_GOOGLE_BASEBOARD_FATCAT
config BOARD_GOOGLE_FRANCKA select BOARD_GOOGLE_BASEBOARD_FATCAT diff --git a/src/mainboard/google/fatcat/variants/felino/Makefile.mk b/src/mainboard/google/fatcat/variants/felino/Makefile.mk new file mode 100644 index 0000000..4c33dad --- /dev/null +++ b/src/mainboard/google/fatcat/variants/felino/Makefile.mk @@ -0,0 +1,6 @@ +## SPDX-License-Identifier: GPL-2.0-only + +bootblock-y += gpio.c +romstage-y += gpio.c +romstage-y += memory.c +ramstage-y += gpio.c