Marshall Dawson has uploaded this change for review. ( https://review.coreboot.org/21738
Change subject: soc/amd/common: Add included directory ......................................................................
soc/amd/common: Add included directory
If the symbol SOC_AMD_COMMON is selected, include the soc/amd/common directory. Until now this has been working due to the directory being included as part of AGESA_INC in vendorcode. That one is still necessary in order to build the AGESA code so it is left in place for now.
Change-Id: Ia8191897d2030c475c9268ae86faaf01952c6ace Signed-off-by: Marshall Dawson marshalldawson3rd@gmail.com --- M src/soc/amd/common/Makefile.inc 1 file changed, 2 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/38/21738/1
diff --git a/src/soc/amd/common/Makefile.inc b/src/soc/amd/common/Makefile.inc index e11695b..aa27512 100644 --- a/src/soc/amd/common/Makefile.inc +++ b/src/soc/amd/common/Makefile.inc @@ -1,5 +1,7 @@ ifeq ($(CONFIG_SOC_AMD_COMMON),y)
+CPPFLAGS_common += -I$(src)/soc/amd/common + bootblock-y += agesawrapper.c bootblock-y += def_callouts.c bootblock-y += heapmanager.c