This now builds.

Signed-off-by: Ronald G. Minnich <rminnich@gmail.com>
Acked-by: Ronald G. Minnich <rminnich@gmail.com>


git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4537 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Ronald G. Minnich
2009-08-12 15:56:17 +00:00
parent 5f6572ec8b
commit fd4519b5ef
19 changed files with 122 additions and 30 deletions

View File

@ -1,4 +1,4 @@
#input amd
subdirs-y += amd
subdirs-y += intel
subdirs-y += via
subdirs-y += emulation

1
src/cpu/amd/Makefile.inc Normal file
View File

@ -0,0 +1 @@
subdirs-$(CONFIG_CPU_AMD_SOCKET_F) += socket_F

View File

@ -0,0 +1,3 @@
# This is a leaf makefile, no conditionals. If it is included it will
# be used.
obj-y += amd_sibling.o

View File

@ -0,0 +1,6 @@
# no conditionals here. If you include this file from a socket, then you get all the binaries.
driver-y += model_fxx_init.o
obj-y += apic_timer.o
obj-y += model_fxx_update_microcode.o
obj-y += processor_name.o
obj-y += powernow_acpi.o

View File

@ -0,0 +1 @@
obj-y += amd_mtrr.o

View File

@ -0,0 +1,14 @@
obj-$(CONFIG_CPU_AMD_SOCKET_F) += socket_F.o
subdirs-$(CONFIG_CPU_AMD_SOCKET_F) += ../model_fxx
subdirs-$(CONFIG_CPU_AMD_SOCKET_F) += ../dualcore
subdirs-$(CONFIG_CPU_AMD_SOCKET_F) += ../mtrr
subdirs-$(CONFIG_CPU_AMD_SOCKET_F) += ../../x86/tsc
subdirs-$(CONFIG_CPU_AMD_SOCKET_F) += ../../x86/mtrr
subdirs-$(CONFIG_CPU_AMD_SOCKET_F) += ../../x86/fpu
subdirs-$(CONFIG_CPU_AMD_SOCKET_F) += ../../x86/mmx
subdirs-$(CONFIG_CPU_AMD_SOCKET_F) += ../../x86/sse
subdirs-$(CONFIG_CPU_AMD_SOCKET_F) += ../../x86/lapic
subdirs-$(CONFIG_CPU_AMD_SOCKET_F) += ../../x86/cache
subdirs-$(CONFIG_CPU_AMD_SOCKET_F) += ../../x86/mtrr
subdirs-$(CONFIG_CPU_AMD_SOCKET_F) += ../../x86/pae
subdirs-$(CONFIG_CPU_AMD_SOCKET_F) += ../../x86/smm

View File

@ -0,0 +1 @@
obj-y += pgtbl.o