summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArthur Heymans <arthur@aheymans.xyz>2019-10-08 21:18:23 +0200
committerPatrick Georgi <pgeorgi@google.com>2019-10-09 22:24:56 +0000
commit7f9b90f0a68849dc6bf60da7b6074361e701cae1 (patch)
treed0b4b9e114ec61a8fea70d8d952d85a25c9e8d73
parent0e5b196cb6f03eba70756d246d86c25270f7b4f2 (diff)
downloadcoreboot-7f9b90f0a68849dc6bf60da7b6074361e701cae1.tar.gz
coreboot-7f9b90f0a68849dc6bf60da7b6074361e701cae1.tar.bz2
coreboot-7f9b90f0a68849dc6bf60da7b6074361e701cae1.zip
soc/qualcomm: Remove default ops to generate bootblock.bin
This is done by default in the main Makefile.inc. TEST: With BUILD_TIMELESS=1 the resulting binary is identical before and after the change. Change-Id: Ie85e023df1f1c2b0f115e4f92719a511f60019c3 Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/c/coreboot/+/35899 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Julius Werner <jwerner@chromium.org>
-rw-r--r--src/soc/qualcomm/qcs405/Makefile.inc4
-rw-r--r--src/soc/qualcomm/sdm845/Makefile.inc4
2 files changed, 0 insertions, 8 deletions
diff --git a/src/soc/qualcomm/qcs405/Makefile.inc b/src/soc/qualcomm/qcs405/Makefile.inc
index 0ebfcaef789c..f21ea542a989 100644
--- a/src/soc/qualcomm/qcs405/Makefile.inc
+++ b/src/soc/qualcomm/qcs405/Makefile.inc
@@ -52,8 +52,4 @@ ramstage-$(CONFIG_DRIVERS_UART) += uart.c
CPPFLAGS_common += -Isrc/soc/qualcomm/qcs405/include
-$(objcbfs)/bootblock.bin: $(objcbfs)/bootblock.raw.bin
- @printf "Generating: $(subst $(obj)/,,$(@))\n"
- cp $(objcbfs)/bootblock.raw.bin $(objcbfs)/bootblock.bin
-
endif
diff --git a/src/soc/qualcomm/sdm845/Makefile.inc b/src/soc/qualcomm/sdm845/Makefile.inc
index c20be142b652..fd39bd937d0b 100644
--- a/src/soc/qualcomm/sdm845/Makefile.inc
+++ b/src/soc/qualcomm/sdm845/Makefile.inc
@@ -48,8 +48,4 @@ ramstage-y += aop_load_reset.c
CPPFLAGS_common += -Isrc/soc/qualcomm/sdm845/include
CPPFLAGS_common += -Isrc/soc/qualcomm/common/include
-$(objcbfs)/bootblock.bin: $(objcbfs)/bootblock.raw.bin
- @printf "Generating: $(subst $(obj)/,,$(@))\n"
- cp $(objcbfs)/bootblock.raw.bin $(objcbfs)/bootblock.bin
-
endif