Add support for the Intel mFCPGA 478 socket. (trivial)

Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>



git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2888 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Stefan Reinauer 2007-10-23 18:59:21 +00:00 committed by Stefan Reinauer
parent 862ccfd84f
commit 8b83836115
3 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,4 @@
config chip.h
object socket_mFCPGA478.o
dir /cpu/intel/model_69x
dir /cpu/intel/model_6dx

View File

@ -0,0 +1,4 @@
extern struct chip_operations cpu_intel_socket_mFCPGA478_ops;
struct cpu_intel_socket_mFCPGA478_config {
};

View File

@ -0,0 +1,7 @@
#include <device/device.h>
#include "chip.h"
struct chip_operations cpu_intel_socket_mFCPGA478_ops = {
CHIP_NAME("Socket mFCPGA478 CPU")
};