diff options
author | Nico Huber <nico.huber@secunet.com> | 2019-02-27 15:01:19 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-02-28 13:49:17 +0000 |
commit | 08087a3e8af00e423fe8df02ac658fb6a1f31f45 (patch) | |
tree | 1e628f558c6d29ea5de615dea709d6d4879967c0 /src | |
parent | c570a0e713abbe03280b2da461106806c9366e48 (diff) |
cpu/intel: Remove socket_BGA1284
Unused since the removal of `fsp_sandybridge`.
Change-Id: Iea31e341c3df680ed48db4f8734d9d0bde120be3
Signed-off-by: Nico Huber <nico.huber@secunet.com>
Reviewed-on: https://review.coreboot.org/c/31646
Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/cpu/intel/Kconfig | 1 | ||||
-rw-r--r-- | src/cpu/intel/Makefile.inc | 1 | ||||
-rw-r--r-- | src/cpu/intel/socket_BGA1284/Kconfig | 11 | ||||
-rw-r--r-- | src/cpu/intel/socket_BGA1284/Makefile.inc | 7 |
4 files changed, 0 insertions, 20 deletions
diff --git a/src/cpu/intel/Kconfig b/src/cpu/intel/Kconfig index 10f7ad4192..10fa7019fa 100644 --- a/src/cpu/intel/Kconfig +++ b/src/cpu/intel/Kconfig @@ -18,7 +18,6 @@ source src/cpu/intel/haswell/Kconfig # Sockets/Slots 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_m/Kconfig source src/cpu/intel/socket_p/Kconfig diff --git a/src/cpu/intel/Makefile.inc b/src/cpu/intel/Makefile.inc index 95352629fe..73a8bf8474 100644 --- a/src/cpu/intel/Makefile.inc +++ b/src/cpu/intel/Makefile.inc @@ -6,7 +6,6 @@ subdirs-$(CONFIG_CPU_INTEL_FIRMWARE_INTERFACE_TABLE) += fit 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_M) += socket_m subdirs-$(CONFIG_CPU_INTEL_SOCKET_P) += socket_p diff --git a/src/cpu/intel/socket_BGA1284/Kconfig b/src/cpu/intel/socket_BGA1284/Kconfig deleted file mode 100644 index 402dc5c60c..0000000000 --- a/src/cpu/intel/socket_BGA1284/Kconfig +++ /dev/null @@ -1,11 +0,0 @@ -config CPU_INTEL_SOCKET_BGA1284 - bool - -if CPU_INTEL_SOCKET_BGA1284 - -config SOCKET_SPECIFIC_OPTIONS # dummy - def_bool y - select MMX - select SSE - -endif diff --git a/src/cpu/intel/socket_BGA1284/Makefile.inc b/src/cpu/intel/socket_BGA1284/Makefile.inc deleted file mode 100644 index 539f285d92..0000000000 --- a/src/cpu/intel/socket_BGA1284/Makefile.inc +++ /dev/null @@ -1,7 +0,0 @@ -subdirs-y += ../../x86/tsc -subdirs-y += ../../x86/mtrr -subdirs-y += ../../x86/lapic -subdirs-y += ../../x86/cache -subdirs-y += ../../x86/smm -subdirs-y += ../microcode -subdirs-y += ../turbo |