aboutsummaryrefslogtreecommitdiff
path: root/src/cpu/intel/microcode/Makefile.inc
diff options
context:
space:
mode:
authorMartin Roth <martinroth@chromium.org>2016-08-30 16:21:53 -0600
committerMartin Roth <martinroth@google.com>2016-09-08 00:29:08 +0200
commit3eb65eca69e3be6af54342e5581f6761f63e39d1 (patch)
treece868bd40046bf196c5a1086a36786bc9b1cbc24 /src/cpu/intel/microcode/Makefile.inc
parente0d7e2690fd3aff73283a885cb9d077ea3830aba (diff)
Kconfig: Add option for microcode filenames
Hardcoding the microcode filenames into the makefiles is great when the microcode is in the blobs directory. When the microcode isn't posted to the blobs directory, we need some method of supplying the microcode binary into the build. This can of course be done manually after the build has completed, as can be done with everything that we're including in the ROM image. Instead of making life hard for everyone though, let's just add a way to specify where the microcode rom comes from. BUG=chrome-os-partner:53013 Change-Id: I7c5127234809e8515906efa56c04af6005eecf0b Signed-off-by: Martin Roth <martinroth@chromium.org> Reviewed-on: https://review.coreboot.org/16386 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Omar Pakker Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/cpu/intel/microcode/Makefile.inc')
-rw-r--r--src/cpu/intel/microcode/Makefile.inc2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cpu/intel/microcode/Makefile.inc b/src/cpu/intel/microcode/Makefile.inc
index f589430771..b56e6a7e79 100644
--- a/src/cpu/intel/microcode/Makefile.inc
+++ b/src/cpu/intel/microcode/Makefile.inc
@@ -4,3 +4,5 @@
################################################################################
ramstage-$(CONFIG_SUPPORT_CPU_UCODE_IN_CBFS) += microcode.c
romstage-$(CONFIG_SUPPORT_CPU_UCODE_IN_CBFS) += microcode.c
+
+cpu_microcode_bins += $(call strip_quotes,$(CONFIG_CPU_UCODE_BINARIES))