diff options
author | Nico Huber <nico.huber@secunet.com> | 2019-02-27 14:27:51 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-02-28 13:48:20 +0000 |
commit | ec6d07a3309cf55b806b4306efbddc811648ae90 (patch) | |
tree | 6896db520780cbb7226d43d5b8c7242ae3b05660 | |
parent | 4829af17e3171da803532e9757100cc9f70d70ec (diff) | |
download | coreboot-ec6d07a3309cf55b806b4306efbddc811648ae90.tar.xz |
cpu/intel/socket_m: Remove models 69x and 6dx
These sneaked in and were never supported by this socket (nor expected
in the notebooks that have it).
Change-Id: Iaeaf1d3bba213da56c7841cf6182e013626b8ca2
Signed-off-by: Nico Huber <nico.huber@secunet.com>
Reviewed-on: https://review.coreboot.org/c/31643
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
-rw-r--r-- | src/cpu/intel/socket_m/Kconfig | 2 | ||||
-rw-r--r-- | src/cpu/intel/socket_m/Makefile.inc | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/src/cpu/intel/socket_m/Kconfig b/src/cpu/intel/socket_m/Kconfig index aadc9a47b0..02330f9cb8 100644 --- a/src/cpu/intel/socket_m/Kconfig +++ b/src/cpu/intel/socket_m/Kconfig @@ -5,8 +5,6 @@ if CPU_INTEL_SOCKET_M config SOCKET_SPECIFIC_OPTIONS # dummy def_bool y - select CPU_INTEL_MODEL_69X - select CPU_INTEL_MODEL_6DX select CPU_INTEL_MODEL_6EX select CPU_INTEL_MODEL_6FX select MMX diff --git a/src/cpu/intel/socket_m/Makefile.inc b/src/cpu/intel/socket_m/Makefile.inc index 139b1bb624..96f16dc6b3 100644 --- a/src/cpu/intel/socket_m/Makefile.inc +++ b/src/cpu/intel/socket_m/Makefile.inc @@ -1,5 +1,3 @@ -subdirs-y += ../model_69x -subdirs-y += ../model_6dx subdirs-y += ../model_6ex subdirs-y += ../model_6fx subdirs-y += ../../x86/tsc |