diff options
author | efdesign98 <efdesign98@gmail.com> | 2011-06-20 18:12:43 -0700 |
---|---|---|
committer | Marc Jones <marcj303@gmail.com> | 2011-06-22 01:35:45 +0200 |
commit | 621ca384a7a5efb2cc7597504dc17b741cd2df10 (patch) | |
tree | 01871adc6d39f48916b5625b3aa1a4b6d5ab9c92 /src/mainboard/advansus/a785e-i | |
parent | 05a89ab922473f375820a3bd68691bb085c62448 (diff) |
Move existing AMD Ffamily14 code to f14 folder
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>
Diffstat (limited to 'src/mainboard/advansus/a785e-i')
-rw-r--r-- | src/mainboard/advansus/a785e-i/Makefile.inc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mainboard/advansus/a785e-i/Makefile.inc b/src/mainboard/advansus/a785e-i/Makefile.inc index 94433b7f3a..a81d135363 100644 --- a/src/mainboard/advansus/a785e-i/Makefile.inc +++ b/src/mainboard/advansus/a785e-i/Makefile.inc @@ -6,14 +6,14 @@ 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 + romstage-y += ../../../vendorcode/amd/agesa/f14/Lib/amdlib.c + ramstage-y += ../../../vendorcode/amd/agesa/f14/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 + 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 |