d11ca1d08d
Also any CPU_AMD_AGESA_FAMILYxx selects CPU_AMD_AGESA, so remove the explicit selects from the mainboards. Change-Id: I4d71726bccd446b0f4db4e26448b5c91e406a641 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: http://review.coreboot.org/792 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
18 lines
517 B
Makefile
Executable file
18 lines
517 B
Makefile
Executable file
#romstage-y += reset.c #FIXME romstage have include test_rest.c
|
|
|
|
ramstage-y += reset.c
|
|
|
|
#SB800 CIMx share AGESA V5 lib code
|
|
ifneq ($(CONFIG_CPU_AMD_AGESA),y)
|
|
AGESA_ROOT ?= src/vendorcode/amd/agesa/f14
|
|
romstage-y += ../../../../$(AGESA_ROOT)/Lib/amdlib.c
|
|
ramstage-y += ../../../../$(AGESA_ROOT)/Lib/amdlib.c
|
|
|
|
AGESA_INC := -I$(AGESA_ROOT)/ \
|
|
-I$(AGESA_ROOT)/Include \
|
|
-I$(AGESA_ROOT)/Proc/IDS/ \
|
|
-I$(AGESA_ROOT)/Proc/CPU/ \
|
|
-I$(AGESA_ROOT)/Proc/CPU/Family
|
|
|
|
CFLAGS += $(AGESA_INC)
|
|
endif
|