diff options
author | Paul Menzel <paulepanter@users.sourceforge.net> | 2015-03-07 09:15:02 +0100 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2015-03-09 03:35:33 +0100 |
commit | bdaeea5396b2455ac093535450686ac12b9a0cfc (patch) | |
tree | d74a0aa1ce69c3c3ce3dcdcf8661daf60da2d744 /src/cpu/Kconfig | |
parent | 9604474d4cdd8577807d86b04892f60598905abf (diff) |
cpu/Kconfig: Make in-tree microcode generation dependent on BLOBs repository
Since commit ee894357 (cpu/intel (non-FSP): Use microcode from
blobs repository), selecting the option to generate the
microcode from tree fails without allowing to use the BLOBs/
3rdparty repository, which is the default setting.
Therefore, only show the option, if the user has selected the
option to allow the use of the BLOBs repository.
Change-Id: Ide20da0f946aae43dc2c8cdce54941c704d3d288
Signed-off-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-on: http://review.coreboot.org/8627
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'src/cpu/Kconfig')
-rw-r--r-- | src/cpu/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/Kconfig b/src/cpu/Kconfig index 9ab0556da3..8a6e9d84e4 100644 --- a/src/cpu/Kconfig +++ b/src/cpu/Kconfig @@ -80,7 +80,7 @@ config CPU_MICROCODE_ADDED_DURING_BUILD choice prompt "Include CPU microcode in CBFS" if ARCH_X86 - default CPU_MICROCODE_CBFS_GENERATE if SUPPORT_CPU_UCODE_IN_CBFS + default CPU_MICROCODE_CBFS_GENERATE if SUPPORT_CPU_UCODE_IN_CBFS && USE_BLOBS default CPU_MICROCODE_CBFS_NONE if !SUPPORT_CPU_UCODE_IN_CBFS config CPU_MICROCODE_CBFS_GENERATE |