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:
parent
862ccfd84f
commit
8b83836115
|
@ -0,0 +1,4 @@
|
||||||
|
config chip.h
|
||||||
|
object socket_mFCPGA478.o
|
||||||
|
dir /cpu/intel/model_69x
|
||||||
|
dir /cpu/intel/model_6dx
|
|
@ -0,0 +1,4 @@
|
||||||
|
extern struct chip_operations cpu_intel_socket_mFCPGA478_ops;
|
||||||
|
|
||||||
|
struct cpu_intel_socket_mFCPGA478_config {
|
||||||
|
};
|
|
@ -0,0 +1,7 @@
|
||||||
|
#include <device/device.h>
|
||||||
|
#include "chip.h"
|
||||||
|
|
||||||
|
|
||||||
|
struct chip_operations cpu_intel_socket_mFCPGA478_ops = {
|
||||||
|
CHIP_NAME("Socket mFCPGA478 CPU")
|
||||||
|
};
|
Loading…
Reference in New Issue