diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2023-07-21 07:38:54 +0200 |
---|---|---|
committer | Elyes Haouas <ehaouas@noos.fr> | 2023-08-04 03:00:25 +0000 |
commit | 86f4f2fb34aa4a25f79ebca59b3cd6eea3e89c72 (patch) | |
tree | 110a54d6ecfc9ffc83fa18eb207ed239f9dcafa1 /src/cpu/intel/model_206ax | |
parent | 33201ab49f8a37d8a7a06d7c1c88b4bc243545d6 (diff) |
cpu: Get rid of CPU_SPECIFIC_OPTIONS
Remove dummy CPU_SPECIFIC_OPTIONS.
Change-Id: I267b2a7c6dfc887b572e1b63b0f59fbfa4d20f0e
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/76681
Reviewed-by: Martin L Roth <gaumless@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/cpu/intel/model_206ax')
-rw-r--r-- | src/cpu/intel/model_206ax/Kconfig | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/cpu/intel/model_206ax/Kconfig b/src/cpu/intel/model_206ax/Kconfig index 479dbbb223..10c0ae3d3e 100644 --- a/src/cpu/intel/model_206ax/Kconfig +++ b/src/cpu/intel/model_206ax/Kconfig @@ -1,10 +1,5 @@ config CPU_INTEL_MODEL_206AX bool - -if CPU_INTEL_MODEL_206AX - -config CPU_SPECIFIC_OPTIONS - def_bool y select ARCH_X86 select HAVE_EXP_X86_64_SUPPORT if USE_NATIVE_RAMINIT select SSE2 @@ -16,6 +11,8 @@ config CPU_SPECIFIC_OPTIONS select CPU_INTEL_COMMON select CPU_INTEL_COMMON_TIMEBASE +if CPU_INTEL_MODEL_206AX + config SMM_TSEG_SIZE hex default 0x800000 |