6401fdb025
Signed-off-by: Kerry She <kerry.she@amd.com> Acked-by: Stefan Reinauer <stefan.reinauer@coreboot.org> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6561 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
19 lines
574 B
Makefile
19 lines
574 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/Lib/amdlib.c
|
|
ramstage-y += ../../../vendorcode/amd/agesa/Lib/amdlib.c
|
|
|
|
AGESA_INC := -Isrc/vendorcode/amd/agesa/ \
|
|
-Isrc/vendorcode/amd/agesa/Include \
|
|
-Isrc/vendorcode/amd/agesa/Proc/IDS/ \
|
|
-Isrc/vendorcode/amd/agesa/Proc/CPU/ \
|
|
-Isrc/vendorcode/amd/agesa/Proc/CPU/Family
|
|
|
|
CFLAGS += $(AGESA_INC)
|
|
endif
|