diff options
author | Timothy Pearson <tpearson@raptorengineeringinc.com> | 2015-10-08 16:58:58 -0500 |
---|---|---|
committer | Aaron Durbin <adurbin@chromium.org> | 2015-10-16 02:41:37 +0000 |
commit | 24e6d0445c7ca209436a6c15c0b955df18052bdf (patch) | |
tree | 4dc34032a1d731d52b65524a37d3d25c18d955e8 /src/cpu/Makefile.inc | |
parent | 6a70dbc3973ff445af05f7d74f2efafd2317e6c9 (diff) | |
download | coreboot-24e6d0445c7ca209436a6c15c0b955df18052bdf.tar.xz |
cpu/amd/model_10xxx: Install AMD-provided microcode files in CBFS
Change-Id: I208b012c6b612a94b3bbc8235d5a005028be8bcc
Signed-off-by: Timothy Pearson <tpearson@raptorengineeringinc.com>
Reviewed-on: http://review.coreboot.org/11832
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/cpu/Makefile.inc')
-rw-r--r-- | src/cpu/Makefile.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cpu/Makefile.inc b/src/cpu/Makefile.inc index 9220a8aa44..d9390610c6 100644 --- a/src/cpu/Makefile.inc +++ b/src/cpu/Makefile.inc @@ -24,9 +24,11 @@ cbfs_include_ucode = y endif ifeq ($(CONFIG_CPU_MICROCODE_CBFS_GENERATE), y) +ifneq ($(CONFIG_CPU_MICROCODE_MULTIPLE_FILES), y) cpu_ucode_cbfs_file = $(obj)/cpu_microcode_blob.bin cbfs_include_ucode = y endif +endif # We just mash all microcode binaries together into one binary to rule them all. # This approach assumes that the microcode binaries are properly padded, and |