aboutsummaryrefslogtreecommitdiff
path: root/src/cpu/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'src/cpu/Kconfig')
-rw-r--r--src/cpu/Kconfig25
1 files changed, 2 insertions, 23 deletions
diff --git a/src/cpu/Kconfig b/src/cpu/Kconfig
index 46b6f1c765..7317bccbfd 100644
--- a/src/cpu/Kconfig
+++ b/src/cpu/Kconfig
@@ -77,31 +77,10 @@ config CPU_MICROCODE_IN_CBFS
bool
default n
-# The following options (BOARD_MICROCODE_CBFS_*) make it possible for the
-# microcode configuration to be selected in the board-level Kconfig. If
-# you want your platform's microcode to be generated during the build,
-# add "select BOARD_MICROCODE_CBFS_GENERATE" to your mainboard's Kconfig.
-# If you want to use an external microcode file, add "select
-# BOARD_MICROCODE_CBFS_EXTERNAL" instead. If neither of these statements
-# exists in your mainboard's configuration file (or if you include a
-# "select BOARD_MICROCODE_CBFS_NONE" statement), then the ROM image will
-# be built without any microcode.
-config BOARD_MICROCODE_CBFS_NONE
- bool
- default y
-
-config BOARD_MICROCODE_CBFS_GENERATE
- bool
- default n
-
-config BOARD_MICROCODE_CBFS_EXTERNAL
- bool
- default n
-
choice
prompt "Include CPU microcode in CBFS" if ARCH_X86
- default CPU_MICROCODE_CBFS_GENERATE if CPU_MICROCODE_IN_CBFS && BOARD_MICROCODE_CBFS_GENERATE
- default CPU_MICROCODE_CBFS_EXTERNAL if CPU_MICROCODE_IN_CBFS && BOARD_MICROCODE_CBFS_EXTERNAL
+ default CPU_MICROCODE_CBFS_GENERATE if CPU_MICROCODE_IN_CBFS
+ default CPU_MICROCODE_CBFS_EXTERNAL if CPU_MICROCODE_IN_CBFS
default CPU_MICROCODE_CBFS_NONE
config CPU_MICROCODE_CBFS_GENERATE