diff options
author | Nico Huber <nico.huber@secunet.com> | 2019-02-27 14:23:18 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-02-28 13:47:54 +0000 |
commit | 4829af17e3171da803532e9757100cc9f70d70ec (patch) | |
tree | 1d27d26c975a9e5670c6270e482a343d4c42d112 /src/cpu/intel | |
parent | 620e0f3f22059eae2c7ce0d272a3eca47a6c1de5 (diff) |
cpu/intel: Rename socket_mFCPGA478 to socket_m
The name was wrong. mFCPGA478 is actually a pseudonym for mPGA478MN,
the successor of the socket that was meant.
The official name of this socket is mPGA478MT. But "Socket M" is much
easier to distinguish.
Change-Id: I4efeaca69acddfcdc5e957b0b521544314d46eeb
Signed-off-by: Nico Huber <nico.huber@secunet.com>
Reviewed-on: https://review.coreboot.org/c/31642
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'src/cpu/intel')
-rw-r--r-- | src/cpu/intel/Kconfig | 2 | ||||
-rw-r--r-- | src/cpu/intel/Makefile.inc | 2 | ||||
-rw-r--r-- | src/cpu/intel/socket_m/Kconfig (renamed from src/cpu/intel/socket_mFCPGA478/Kconfig) | 4 | ||||
-rw-r--r-- | src/cpu/intel/socket_m/Makefile.inc (renamed from src/cpu/intel/socket_mFCPGA478/Makefile.inc) | 0 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/cpu/intel/Kconfig b/src/cpu/intel/Kconfig index 4fd8efbbcf..bdf5b5469d 100644 --- a/src/cpu/intel/Kconfig +++ b/src/cpu/intel/Kconfig @@ -22,7 +22,7 @@ source src/cpu/intel/slot_1/Kconfig source src/cpu/intel/socket_BGA956/Kconfig source src/cpu/intel/socket_BGA1284/Kconfig source src/cpu/intel/socket_FCBGA559/Kconfig -source src/cpu/intel/socket_mFCPGA478/Kconfig +source src/cpu/intel/socket_m/Kconfig source src/cpu/intel/socket_mPGA478MN/Kconfig source src/cpu/intel/socket_mPGA604/Kconfig source src/cpu/intel/socket_441/Kconfig diff --git a/src/cpu/intel/Makefile.inc b/src/cpu/intel/Makefile.inc index 3ed32971f6..e4d3f846bc 100644 --- a/src/cpu/intel/Makefile.inc +++ b/src/cpu/intel/Makefile.inc @@ -8,7 +8,7 @@ subdirs-$(CONFIG_CPU_INTEL_SOCKET_441) += socket_441 subdirs-$(CONFIG_CPU_INTEL_SOCKET_BGA956) += socket_BGA956 subdirs-$(CONFIG_CPU_INTEL_SOCKET_BGA1284) += socket_BGA1284 subdirs-$(CONFIG_CPU_INTEL_SOCKET_FCBGA559) += socket_FCBGA559 -subdirs-$(CONFIG_CPU_INTEL_SOCKET_MFCPGA478) += socket_mFCPGA478 +subdirs-$(CONFIG_CPU_INTEL_SOCKET_M) += socket_m subdirs-$(CONFIG_CPU_INTEL_SOCKET_MPGA478MN) += socket_mPGA478MN subdirs-$(CONFIG_CPU_INTEL_SOCKET_MPGA604) += socket_mPGA604 subdirs-$(CONFIG_NORTHBRIDGE_INTEL_NEHALEM) += model_2065x diff --git a/src/cpu/intel/socket_mFCPGA478/Kconfig b/src/cpu/intel/socket_m/Kconfig index 503ad64172..aadc9a47b0 100644 --- a/src/cpu/intel/socket_mFCPGA478/Kconfig +++ b/src/cpu/intel/socket_m/Kconfig @@ -1,7 +1,7 @@ -config CPU_INTEL_SOCKET_MFCPGA478 +config CPU_INTEL_SOCKET_M bool -if CPU_INTEL_SOCKET_MFCPGA478 +if CPU_INTEL_SOCKET_M config SOCKET_SPECIFIC_OPTIONS # dummy def_bool y diff --git a/src/cpu/intel/socket_mFCPGA478/Makefile.inc b/src/cpu/intel/socket_m/Makefile.inc index 139b1bb624..139b1bb624 100644 --- a/src/cpu/intel/socket_mFCPGA478/Makefile.inc +++ b/src/cpu/intel/socket_m/Makefile.inc |