diff options
author | Lee Leahy <leroy.p.leahy@intel.com> | 2015-07-09 16:49:35 -0700 |
---|---|---|
committer | Leroy P Leahy <leroy.p.leahy@intel.com> | 2015-07-14 20:28:13 +0200 |
commit | b0630bfcbe5b284c6984074ef4c7add3ec11c80f (patch) | |
tree | c938ca583e185e69315996f6bed14497638590db /src/soc/intel | |
parent | 89f73dccdbdccff494e9729e94defecd64b92964 (diff) | |
download | coreboot-b0630bfcbe5b284c6984074ef4c7add3ec11c80f.tar.xz |
Braswell: Use CBFS image type name
Use the simplified CBFS image type name in Makefile.inc.
BRANCH=none
BUG=None
TEST=Build and run on cyan
Change-Id: Idb62de7fce36fde38a6fbeeefdfc2dd0d75bd493
Signed-off-by: Lee Leahy <leroy.p.leahy@intel.com>
Reviewed-on: http://review.coreboot.org/10872
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Tested-by: build bot (Jenkins)
Diffstat (limited to 'src/soc/intel')
-rw-r--r-- | src/soc/intel/braswell/microcode/Makefile.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/braswell/microcode/Makefile.inc b/src/soc/intel/braswell/microcode/Makefile.inc index 936dd85330..da25b8bf06 100644 --- a/src/soc/intel/braswell/microcode/Makefile.inc +++ b/src/soc/intel/braswell/microcode/Makefile.inc @@ -9,5 +9,5 @@ fsp_ucode_cbfs_base = $(CONFIG_CPU_MICROCODE_CBFS_LOC) # Override the location that was supplied by the core code. add-cpu-microcode-to-cbfs = \ - $(CBFSTOOL) $(1) add -n $(cpu_ucode_cbfs_name) -f $(cpu_ucode_cbfs_file) -t 0x53 -b $(fsp_ucode_cbfs_base) + $(CBFSTOOL) $(1) add -n $(cpu_ucode_cbfs_name) -f $(cpu_ucode_cbfs_file) -t microcode -b $(fsp_ucode_cbfs_base) |