summaryrefslogtreecommitdiff
path: root/src/mainboard/avalue/eax-785e/Makefile.inc
diff options
context:
space:
mode:
authorKerry She <shekairui@gmail.com>2011-09-08 21:16:19 +0800
committerMarc Jones <marcj303@gmail.com>2011-09-14 19:49:48 +0200
commit7b7b2c9ef97c79ed5f6d12b4fc386db08e0691c9 (patch)
treef1bb5524e296aefc40c1addce1f22b5ef3774d01 /src/mainboard/avalue/eax-785e/Makefile.inc
parent8c69b1d13b12a23d22de19b9de2e161e6064021c (diff)
downloadcoreboot-7b7b2c9ef97c79ed5f6d12b4fc386db08e0691c9.tar.xz
mainboard: add avalue/eax-785 ITX mainboard
It's AM3 Socket, 880M + SB850 chipset, similar with advansus/a785e-i. Onboard device UART, VGA, SATA, PCI Slot, 2 X16 PCIe slot, 4 X1 Pcie slot, Lan, audio, PS2 keyboard/mouse and USB are verified. Change-Id: I483363f5ff9fbfc5cda2f0521660751212f3e326 Signed-off-by: Kerry She <kerry.she@amd.com> Signed-off-by: Kerry She <shekairui@gmail.com> Reviewed-on: http://review.coreboot.org/208 Tested-by: build bot (Jenkins) Reviewed-by: Marc Jones <marcj303@gmail.com>
Diffstat (limited to 'src/mainboard/avalue/eax-785e/Makefile.inc')
-rw-r--r--src/mainboard/avalue/eax-785e/Makefile.inc18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/mainboard/avalue/eax-785e/Makefile.inc b/src/mainboard/avalue/eax-785e/Makefile.inc
new file mode 100644
index 0000000000..737bb1c1eb
--- /dev/null
+++ b/src/mainboard/avalue/eax-785e/Makefile.inc
@@ -0,0 +1,18 @@
+#romstage-y += reset.c #FIXME romstage have include test_rest.c
+
+ramstage-y += reset.c
+
+#SB800 CIMx share AGESA V5 lib code
+ifneq ($(CONFIG_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