Add kconfig support for ASUS P2B-F.
Only build-tested so far, not tested on hardware. Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4572 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
@ -1,4 +1,5 @@
|
||||
source src/cpu/intel/model_6ex/Kconfig
|
||||
source src/cpu/intel/model_6fx/Kconfig
|
||||
source src/cpu/intel/socket_mFCPGA478/Kconfig
|
||||
source src/cpu/intel/socket_PGA370/Kconfig
|
||||
source src/cpu/intel/socket_PGA370/Kconfig
|
||||
source src/cpu/intel/slot_2/Kconfig
|
||||
|
@ -5,6 +5,7 @@
|
||||
|
||||
subdirs-$(CONFIG_CPU_INTEL_SOCKET_MFCPGA478) += socket_mFCPGA478
|
||||
subdirs-$(CONFIG_CPU_INTEL_SOCKET_PGA370) += socket_PGA370
|
||||
subdirs-$(CONFIG_CPU_INTEL_SLOT_2) += slot_2
|
||||
|
||||
#socket_mPGA478
|
||||
#socket_mPGA479M
|
||||
|
24
src/cpu/intel/slot_2/Kconfig
Normal file
24
src/cpu/intel/slot_2/Kconfig
Normal file
@ -0,0 +1,24 @@
|
||||
##
|
||||
## This file is part of the coreboot project.
|
||||
##
|
||||
## Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
|
||||
##
|
||||
## This program is free software; you can redistribute it and/or modify
|
||||
## it under the terms of the GNU General Public License as published by
|
||||
## the Free Software Foundation; either version 2 of the License, or
|
||||
## (at your option) any later version.
|
||||
##
|
||||
## This program is distributed in the hope that it will be useful,
|
||||
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
## GNU General Public License for more details.
|
||||
##
|
||||
## You should have received a copy of the GNU General Public License
|
||||
## along with this program; if not, write to the Free Software
|
||||
## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
##
|
||||
|
||||
config CPU_INTEL_SLOT_2
|
||||
bool
|
||||
default n
|
||||
|
32
src/cpu/intel/slot_2/Makefile.inc
Normal file
32
src/cpu/intel/slot_2/Makefile.inc
Normal file
@ -0,0 +1,32 @@
|
||||
##
|
||||
## This file is part of the coreboot project.
|
||||
##
|
||||
## Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
|
||||
##
|
||||
## This program is free software; you can redistribute it and/or modify
|
||||
## it under the terms of the GNU General Public License as published by
|
||||
## the Free Software Foundation; either version 2 of the License, or
|
||||
## (at your option) any later version.
|
||||
##
|
||||
## This program is distributed in the hope that it will be useful,
|
||||
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
## GNU General Public License for more details.
|
||||
##
|
||||
## You should have received a copy of the GNU General Public License
|
||||
## along with this program; if not, write to the Free Software
|
||||
## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
##
|
||||
|
||||
obj-y += slot_2.o
|
||||
subdirs-y += ../model_6xx
|
||||
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 += ../microcode
|
||||
|
Reference in New Issue
Block a user