This change moves the AMD Family14 cpu Agesa code to the vendorcode/amd/agesa/f14 folder to complete the transition to the family oriented folder structure. Change-Id: I211e80ee04574cc713f38b4cc1b767dbb2bfaa59 Signed-off-by: Frank Vibrans <frank.vibrans@amd.com> Signed-off-by: efdesign98 <efdesign98@gmail.com> Reviewed-on: http://review.coreboot.org/52 Tested-by: build bot (Jenkins) Reviewed-by: Marc Jones <marcj303@gmail.com>
20 lines
602 B
Makefile
20 lines
602 B
Makefile
#romstage-y += reset.c #FIXME romstage have include test_rest.c
|
|
romstage-y += pmio.c
|
|
|
|
ramstage-y += reset.c
|
|
ramstage-y += pmio.c
|
|
|
|
#SB800 CIMx share AGESA V5 lib code
|
|
ifneq ($(CONFIG_AMD_AGESA),y)
|
|
romstage-y += ../../../vendorcode/amd/agesa/f14/Lib/amdlib.c
|
|
ramstage-y += ../../../vendorcode/amd/agesa/f14/Lib/amdlib.c
|
|
|
|
AGESA_INC := -Isrc/vendorcode/amd/agesa/f14/ \
|
|
-Isrc/vendorcode/amd/agesa/f14/Include \
|
|
-Isrc/vendorcode/amd/agesa/f14/Proc/IDS/ \
|
|
-Isrc/vendorcode/amd/agesa/f14/Proc/CPU/ \
|
|
-Isrc/vendorcode/amd/agesa/f14/Proc/CPU/Family
|
|
|
|
CFLAGS += $(AGESA_INC)
|
|
endif
|