From 72a8e5e751a7fa97c9d198f68cad49f9d9851669 Mon Sep 17 00:00:00 2001 From: Martin Roth Date: Tue, 24 Mar 2015 16:02:27 -0600 Subject: Update hex values to CBFS binary name types in Makefiles These binaries were being added to CBFS using hexadecimal values instead of the CBFS binary type names. The same value was being used in different places for different things. For example, the value 0xAB is used for SPDs, MRC & FSP binaries. This patch uses CBFS type names instead of hex values everywhere a hex value was previously used. Change-Id: Id5ac74c3095eb02a2b39d25104a25933304a8389 Signed-off-by: Martin Roth Reviewed-on: http://review.coreboot.org/8978 Tested-by: build bot (Jenkins) Reviewed-by: Marc Jones Reviewed-by: Paul Menzel Reviewed-by: Aaron Durbin --- src/mainboard/siemens/mc_tcu3/Makefile.inc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/mainboard/siemens/mc_tcu3') diff --git a/src/mainboard/siemens/mc_tcu3/Makefile.inc b/src/mainboard/siemens/mc_tcu3/Makefile.inc index 91d4bd21ff..e6ec0ad1e1 100644 --- a/src/mainboard/siemens/mc_tcu3/Makefile.inc +++ b/src/mainboard/siemens/mc_tcu3/Makefile.inc @@ -27,25 +27,25 @@ ramstage-y += ptn3460.c cbfs-files-y += hwinfo.hex hwinfo.hex-file := hwinfo.hex -hwinfo.hex-type := 0x50 +hwinfo.hex-type := raw hwinfo.hex-align := 0x1000 cbfs-files-y += version.hex version.hex-file := version.hex -version.hex-type := 0x50 +version.hex-type := raw cbfs-files-y += hwinfo10.hex hwinfo10.hex-file := hwinfo10.hex -hwinfo10.hex-type := 0x50 +hwinfo10.hex-type := raw cbfs-files-y += hwinfo12.hex hwinfo12.hex-file := hwinfo12.hex -hwinfo12.hex-type := 0x50 +hwinfo12.hex-type := raw cbfs-files-y += hwinfo15.hex hwinfo15.hex-file := hwinfo15.hex -hwinfo15.hex-type := 0x50 +hwinfo15.hex-type := raw cbfs-files-y += hwinfo19.hex hwinfo19.hex-file := hwinfo19.hex -hwinfo19.hex-type := 0x50 +hwinfo19.hex-type := raw -- cgit v1.2.3