This goes a surprisingly long way to building the epia-n. It also has
important corrections to the Kconfig and Makefile.inc that were there. I would like to go ahead and get this in, because I don't want anyone to continue using what is in the upstream tree as it now exists. I also tested old-style build with this and it did not break anything. Signed-off-by: Ronald G. Minnich <rminnich@gmail.com> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4559 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
b203c2f95e
commit
d82e12858f
11 changed files with 265 additions and 44 deletions
|
|
@ -1,2 +1,3 @@
|
|||
#subdirs-y += model_c7
|
||||
subdirs-y += model_c7
|
||||
subdirs-$(CONFIG_CPU_VIA_C7) += model_c7
|
||||
subdirs-$(CONFIG_CPU_VIA_C3) += model_c3
|
||||
|
||||
|
|
|
|||
3
src/cpu/via/model_c3/Kconfig
Normal file
3
src/cpu/via/model_c3/Kconfig
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
config CPU_VIA_C3
|
||||
bool
|
||||
default n
|
||||
11
src/cpu/via/model_c3/Makefile.inc
Normal file
11
src/cpu/via/model_c3/Makefile.inc
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
subdirs-y += ../../x86/tsc
|
||||
subdirs-y += ../../x86/mtrr
|
||||
subdirs-y += ../../x86/fpu
|
||||
subdirs-y += ../../x86/mmx
|
||||
subdirs-y += ../../x86/sse
|
||||
subdirs-y += ../../x86/lapic
|
||||
subdirs-y += ../../x86/cache
|
||||
subdirs-y += ../../x86/smm
|
||||
subdirs-y += ../../intel/microcode
|
||||
|
||||
obj-y += model_c3_init.o
|
||||
|
|
@ -1,13 +1,11 @@
|
|||
ifeq ($(CONFIG_CPU_VIA_C7),y)
|
||||
subdirs-y += ../../x86/tsc
|
||||
subdirs-y += ../../x86/mtrr
|
||||
subdirs-y += ../../x86/fpu
|
||||
subdirs-y += ../../x86/mmx
|
||||
subdirs-y += ../../x86/sse
|
||||
subdirs-y += ../../x86/lapic
|
||||
subdirs-y += ../../x86/cache
|
||||
subdirs-y += ../../x86/smm
|
||||
subdirs-y += ../../intel/microcode
|
||||
endif
|
||||
subdirs-y += ../../x86/tsc
|
||||
subdirs-y += ../../x86/mtrr
|
||||
subdirs-y += ../../x86/fpu
|
||||
subdirs-y += ../../x86/mmx
|
||||
subdirs-y += ../../x86/sse
|
||||
subdirs-y += ../../x86/lapic
|
||||
subdirs-y += ../../x86/cache
|
||||
subdirs-y += ../../x86/smm
|
||||
subdirs-y += ../../intel/microcode
|
||||
|
||||
obj-y += model_c7_init.o
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue